...
|
...
|
@@ -262,7 +262,7 @@ function search(opt) { |
|
|
op: 'YB_NEW_GOODS_LIST_L',
|
|
|
param: JSON.stringify(Object.assign(yasparm, {
|
|
|
RES_QTY: $container.find('.total').data('id'),
|
|
|
PRD_LIST: goodIds
|
|
|
PRD_LIST: JSON.stringify(goodIds).replace(/\[|\]/g, '')
|
|
|
}))
|
|
|
}, true);
|
|
|
}
|
...
|
...
|
@@ -290,7 +290,7 @@ function search(opt) { |
|
|
op: 'YB_NEW_GOODS_LIST_L',
|
|
|
param: JSON.stringify(Object.assign(yasparm, {
|
|
|
RES_QTY: $container.find('.total').data('id'),
|
|
|
PRD_LIST: goodIds
|
|
|
PRD_LIST: JSON.stringify(goodIds).replace(/\[|\]/g, '')
|
|
|
}))
|
|
|
}, true);
|
|
|
}
|
...
|
...
|
|