From 1ae0722c4a8022961c48c34588823fdd23698e44 Mon Sep 17 00:00:00 2001 From: haoxuan <haoxuan> Date: 星期三, 20 九月 2023 19:17:26 +0800 Subject: [PATCH] 仓库管理 仓库+业务类型 接口列表 添加编辑 删除 联调 业务类型缺少字段 --- src/api/data.js | 138 +++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 137 insertions(+), 1 deletions(-) diff --git a/src/api/data.js b/src/api/data.js index baf311a..f98678f 100644 --- a/src/api/data.js +++ b/src/api/data.js @@ -17,9 +17,145 @@ id: 4 } ] - +// 浠撳簱 +// 鍏ュ悜杩愯緭 +const inboundTransportation=[ + { + name:'鐩存帴鎺ユ敹浜у搧锛�1姝ユ敹璐э級', + id:1, + disabled:false, + }, + { + name:'鎺ュ埌浜у搧鍒版敹鏂欏尯锛屽啀鍏ュ簱锛�2姝ユ敹璐э級', + id:2, + disabled:true, + }, + { + name:'鎺ユ敹浜у搧鍒版敹鏂欏尯锛屾楠岋紝鐒跺悗鍏ュ簱锛�3姝ユ敹璐э級', + id:3, + disabled:true, + } +] +// 鍑哄簱杩愯緭 +const outboundTransportation=[ + { + name:'鐩存帴鍑哄簱锛�1姝ワ級', + id:1, + disabled:false, + }, + { + name:'閫佸埌寰呭嚭搴撳尯锛屽啀閫佽揣锛�2姝ュ彂璐э級', + id:2, + disabled:true, + }, + { + name:'鍖呰浜у搧锛屽彂閫佸埌寰呭嚭搴撳尯锛屽啀閫佽揣锛�3姝ュ彂璐э級', + id:3, + disabled:true, + } +] +// 涓氬姟绫诲瀷 +// 浣滀笟绫诲瀷 +const baseOperationType=[ + { + name: "鏀惰揣", + id: 1 + }, + { + name: "鍙戣揣", + id: 2 + }, + { + name: "鍐呴儴璋冩嫧", + id: 3 + }, +] +//鍒涘缓娆犲崟 +const createBackorder=[ + { + name: "鎻愰棶", + id: 1 + }, + { + name: "鎬绘槸", + id: 2 + }, + { + name: "浠庝笉", + id: 3 + }, +] +//淇濈暀鏂瑰紡 鍦ㄩ瀹氭棩鏈熶箣鍓�=3 +const reservationMethod=[ + { + name: "纭鏃�", + id: 1 + }, + { + name: "鎵嬪伐", + id: 2 + } +] +// 浜у搧绫诲埆 +// 寮哄埗涓嬫灦绛栫暐 +const forceRemovalStrategy=[ + { + name: "First In First Out (FIFO)", + id: 1 + }, + { + name: "Last In First Out (LIFO)", + id: 2 + }, + { + name: "Closest Location", + id: 3 + }, +] +//鎴愭湰鏂规硶 +const costingMethod=[ + { + name: "鏍囧噯浠锋牸", + id: 1 + }, + { + name: "鍏堣繘鍏堝嚭 (FIFO)", + id: 2 + }, + { + name: "骞冲潎鎴愭湰锛圓VCO锛�", + id: 3 + }, +] +// 搴撳瓨璁′环 +const inventoryValuation=[ + { + name: "鎵嬪姩", + id: 1 + }, + { + name: "鑷姩", + id: 2 + } +] export const getDataByType = (type) => { if (type == "purchaseStatus") { return purchaseStatus + }else if(type=='inboundTransportation'){ + return inboundTransportation + }else if(type=='outboundTransportation'){ + return outboundTransportation + }else if(type=='baseOperationType'){ + return baseOperationType; + }else if(type=='createBackorder'){ + return createBackorder; + }else if(type=='reservationMethod'){ + return reservationMethod; + }else if(type=='forceRemovalStrategy'){ + return forceRemovalStrategy + }else if(type=='costingMethod'){ + return costingMethod + }else if(type=='inventoryValuation'){ + return inventoryValuation } } -- Gitblit v1.8.0