feat(wms/coil): 新增发货单状态筛选视图

1. 在ship.vue页面新增isShipView参数并默认开启
2. 在base面板新增货单状态筛选 radio 组
3. 根据isShipView切换查询逻辑和表格列展示
4. 新增对应统计计数逻辑
This commit is contained in:
2026-06-18 17:00:03 +08:00
parent 7374b810c1
commit d0afe5eaaf
3 changed files with 77 additions and 7 deletions

View File

@@ -299,6 +299,10 @@ export default {
// 添加产品行
addProduct() {
const newItem = { taxDivisor: 1.13 };
const material = this.productMaterialMap[this.productName];
if (material) {
newItem.material = material;
}
this.initProduct(newItem);
this.products.push(newItem);
},