From 03cfba0f636b42417070fc8caef44bcdd792a085 Mon Sep 17 00:00:00 2001 From: haoxuan <haoxuan> Date: 星期二, 07 五月 2024 17:34:37 +0800 Subject: [PATCH] 概述 出库模块 编辑的时候循环处理对应产品调用接口获取在库数量的逻辑处理 --- src/views/overview/OverviewListView.vue | 70 ++++++++++++++++++++++++----------- 1 files changed, 48 insertions(+), 22 deletions(-) diff --git a/src/views/overview/OverviewListView.vue b/src/views/overview/OverviewListView.vue index 49354f5..48dc227 100644 --- a/src/views/overview/OverviewListView.vue +++ b/src/views/overview/OverviewListView.vue @@ -1,8 +1,8 @@ <template> <div class="rightContent"> - <!-- <div class="label-fixed-element"> + <div class="label-fixed-element"> <span>{{ params.name }}</span> - </div> --> + </div> <div class="top"> <SearchCommonView :add-title="'鏂板缓'" @@ -120,7 +120,7 @@ numberLabel: "鍗曞彿", TabsIndex: "0", productTableList: {}, - showBottomCol: ["浜у搧缂栧彿", "浜у搧鍚嶇О", "浜у搧瑙勬牸", "浜у搧鍨嬪彿", "璁¢噺鍗曚綅", "璋冨嚭浣嶇疆", "璋冨叆浣嶇疆", "鏁伴噺","涓荤","浼氳","淇濈鍛�",'杈呭姪鏁伴噺','杈呭姪鍗曚綅'], + showBottomCol: ["浜у搧缂栧彿", "浜у搧鍚嶇О", "浜у搧瑙勬牸", "浜у搧鍨嬪彿", "璁¢噺鍗曚綅", "璋冨嚭浣嶇疆", "璋冨叆浣嶇疆", "鏁伴噺","涓荤","浼氳","淇濈鍛�",'杈呭姪鏁伴噺','杈呭姪鍗曚綅','姣涢噸','鎬绘瘺閲�','鍑�閲�','鎬诲噣閲�'], tableBottomColumn: [], selectRow: {}, productColumn: [ @@ -131,7 +131,11 @@ { label: "鏁伴噺", prop: "amount" }, { label: "璁¢噺鍗曚綅", prop: "unit" }, { label: "杈呭姪鏁伴噺", prop: "adjunctAmount" }, - { label: "杈呭姪鍗曚綅", prop: "adjunctUnit" } + { label: "杈呭姪鍗曚綅", prop: "adjunctUnit" }, + { label: "姣涢噸", prop: "grossWeight" }, + { label: "鎬绘瘺閲�", prop: "totalGrossWeight" }, + { label: "鍑�閲�", prop: "netWeight" }, + { label: "鎬诲噣閲�", prop: "totalNetWeight" } ], allotProductColumn: [ { label: "浜у搧缂栧彿", prop: "id", default: true }, @@ -143,7 +147,11 @@ { label: "璋冨叆浣嶇疆", prop: "toLocation" }, { label: "鏁伴噺", prop: "amount" }, { label: "杈呭姪鏁伴噺", prop: "adjunctAmount" }, - { label: "杈呭姪鍗曚綅", prop: "adjunctUnit" } + { label: "杈呭姪鍗曚綅", prop: "adjunctUnit" }, + { label: "姣涢噸", prop: "grossWeight" }, + { label: "鎬绘瘺閲�", prop: "totalGrossWeight" }, + { label: "鍑�閲�", prop: "netWeight" }, + { label: "鎬诲噣閲�", prop: "totalNetWeight" } ] } }, @@ -350,27 +358,45 @@ // bottom浜у搧淇℃伅鏁版嵁澶勭悊 bottomProductData(arr) { const list = arr.details.map((item) => { - let adjunctUnit='' - let adjunctAmount='' - if(item.product.moreUnit&&item.product.moreUnitList){ - let moreUnitList=item.product.moreUnitList - if(moreUnitList.length>0){ - for(let j in moreUnitList){ - if(moreUnitList[j].floating){ - adjunctUnit=moreUnitList[j].unit - adjunctAmount=moreUnitList[j].amount - } - } - } - } + // let adjunctUnit='' + // let adjunctAmount='' + // if(item.product.moreUnit&&item.product.moreUnitList){ + // let moreUnitList=item.product.moreUnitList + // if(moreUnitList.length>0){ + // let isValue=false + // for(let j in moreUnitList){ + // if(moreUnitList[j].floating){ + // isValue=true; + // adjunctUnit=moreUnitList[j].unit + // adjunctAmount=moreUnitList[j].amount + // break; + // } + // } + // if(!isValue){ + // for(let j in moreUnitList){ + // if(moreUnitList[j].unit){ + // adjunctUnit=moreUnitList[j].unit + // adjunctAmount=moreUnitList[j].amount + // break; + // } + // } + // } + // } + // } return { ...item, productName: item.product.name, unit: item.product.unit, + model:item.product.model, + specs:item.product.specs, location: arr.location.name, toLocation: arr.toLocation.name, - adjunctUnit:adjunctUnit, - adjunctAmount:adjunctAmount + adjunctUnit:item.auxiliaryUnit, + adjunctAmount:item.auxiliaryAmount, + grossWeight:item.product.grossWeight==0?'':item.product.grossWeight, + totalGrossWeight:item.totalGrossWeight==0?'':item.totalGrossWeight, + netWeight:item.product.netWeight==0?'':item.product.netWeight, + totalNetWeight:item.totalNetWeight==0?'':item.totalNetWeight, } }) this.productTableList.tableInfomation = list @@ -498,7 +524,7 @@ overflow: hidden; .body { box-sizing: border-box; - padding: 10px 20px; + padding: 10px 0px; border-radius: 12px; height: calc(100% - 70px); .content-top { @@ -557,8 +583,8 @@ } } .label-fixed-element { - background: #e6ecf2; position: fixed; + background:#f8f8f9; font-size: 14px; width: calc(100% - 530px); height: 45px; -- Gitblit v1.8.0