Browse Source

修复开单bug

pre-production
qb 1 month ago
parent
commit
da71f6115e
  1. 8
      src/views/waybill/CreateZeroOrder.vue

8
src/views/waybill/CreateZeroOrder.vue

@ -2043,7 +2043,7 @@ const handleAdd = () => {
} }
} }
details.goodsList.push({ const _obj = {
/** 货物名称 */ /** 货物名称 */
goodsName: '', goodsName: '',
/** 品类Id */ /** 品类Id */
@ -2077,7 +2077,11 @@ const handleAdd = () => {
/** 运费小计 */ /** 运费小计 */
subtotalFreight: 0, subtotalFreight: 0,
goodsListOptions: [], goodsListOptions: [],
}); };
handleAssignmentItemPrice(_obj);
details.goodsList.push(_obj);
}; };
/** 移除 */ /** 移除 */

Loading…
Cancel
Save