Commit b3271f05 by 王昆

gsb

parent 8e1d3ac7
...@@ -205,8 +205,11 @@ class BpoSDPJApi { ...@@ -205,8 +205,11 @@ class BpoSDPJApi {
if (!cashInfo) { if (!cashInfo) {
return this.getErrResult("二维码不存在"); return this.getErrResult("二维码不存在");
} }
cashInfo.qrcode_status = 2;
await cashInfo.save(); if (cashInfo.qrcode_status != 2) {
cashInfo.qrcode_status = 2;
await cashInfo.save();
}
} catch (e) { } catch (e) {
console.log(e); console.log(e);
return this.getErrResult("接口异常"); return this.getErrResult("接口异常");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment