Commit f808846b by 孙亚楠

dd

parent adaa994e
...@@ -228,7 +228,7 @@ class OorderService extends ServiceBase { ...@@ -228,7 +228,7 @@ class OorderService extends ServiceBase {
let productIds = []; let productIds = [];
for (let product of productList) { for (let product of productList) {
// 过滤未选择产品 // 过滤未选择产品
if (product.is_choose && chooseProductIds && chooseProductIds.indexOf(product.id) == -1) { if (product.is_choose && chooseProductIds && chooseProductIds.length > 0 && chooseProductIds.indexOf(product.id) == -1) {
continue; continue;
} }
productIds.push(product.id); productIds.push(product.id);
......
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