|
@@ -12,6 +12,7 @@ const ifdetail = {
|
|
|
mainItemStatus:false, //主营业务明细
|
|
|
settleStatus:false,//结算明细
|
|
|
domSaleStatus: false, // 内贸销售
|
|
|
+ domStockDetail: false, // 国内库存账
|
|
|
},
|
|
|
actions: {},
|
|
|
mutations: {
|
|
@@ -112,12 +113,18 @@ const ifdetail = {
|
|
|
},
|
|
|
// 打开国内销售订单
|
|
|
DOMXS_IN_DETAIL(state) {
|
|
|
- state.domSaleStatus = false;
|
|
|
+ state.domSaleStatus = true;
|
|
|
},
|
|
|
//关闭国内销售订单
|
|
|
DOMXS_OUT_DETAIL(state) {
|
|
|
state.domSaleStatus = false;
|
|
|
},
|
|
|
+ DOMKC_IN_DETAIL(state) {
|
|
|
+ state.domStockDetail = true;
|
|
|
+ },
|
|
|
+ DOMKC_OUT_DETAIL(state) {
|
|
|
+ state.domStockDetail = false;
|
|
|
+ },
|
|
|
//关闭所有
|
|
|
DEL_ALL_DETAIL(state) {
|
|
|
for (let item in state) {
|
|
@@ -165,6 +172,9 @@ const ifdetail = {
|
|
|
if (tag.label == '销售订单(N)') {
|
|
|
state.domSaleStatus = true
|
|
|
}
|
|
|
+ if (tag.label == '锁定订单明细') {
|
|
|
+ state.domStockDetail = true
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|