apply-clients 5.0.35-ezhou-23 → 5.0.35-ezhou-24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -345,7 +345,7 @@
|
|
|
345
345
|
selfSearch (args) {
|
|
346
346
|
args.condition = args.condition + ` and a.f_filialeids like '%${this.filialeCodeStr}%'`
|
|
347
347
|
if (args.model.f_payment_method.length > 0) {
|
|
348
|
-
args.condition += ' and f_payment_method in (' + args.model.f_payment_method.join() + ')'
|
|
348
|
+
args.condition += ' and f_payment_method in ("' + args.model.f_payment_method.join('","') + '")'
|
|
349
349
|
}
|
|
350
350
|
console.log('condition:', args.condition)
|
|
351
351
|
this.model.search(args.condition, args.model)
|