From 7e40be9e47fc07045e5e434f6d894782e99cdb0a Mon Sep 17 00:00:00 2001 From: haoxuan <haoxuan> Date: 星期一, 13 十一月 2023 17:20:00 +0800 Subject: [PATCH] 重订货规则的产品下拉增加搜索功能+出入库明细报表的编辑报类型错误的修改 --- src/api/data.js | 25 +++++++++++++++++++++++++ 1 files changed, 25 insertions(+), 0 deletions(-) diff --git a/src/api/data.js b/src/api/data.js index afa04cb..d748f82 100644 --- a/src/api/data.js +++ b/src/api/data.js @@ -178,6 +178,29 @@ id: 9 } ] +// 鍑哄叆搴撴槑缁� 涓氬姟绫诲瀷 +const baseOperationTypeTwo=[ + { + name: "鏀惰揣", + id: 1 + }, + { + name: "浜よ揣", + id: 2 + }, + { + name: "鍐呴儴璋冩嫧", + id: 3 + }, + { + name: "鎶ュ簾", + id: 4 + }, + { + name: "搴撳瓨鐩樼偣", + id: 5 + }, +] export const getDataByType = (type) => { if (type == "purchaseStatus") { return purchaseStatus @@ -199,5 +222,7 @@ return inventoryValuation } else if (type == "positionType") { return positionType + }else if(type=='baseOperationTypeTwo'){ + return baseOperationTypeTwo } } -- Gitblit v1.8.0