|
@@ -205,6 +205,11 @@
|
|
|
<el-table-column align="left" label="仓库" prop="correspondName" min-width="100" show-overflow-tooltip>
|
|
|
</el-table-column>
|
|
|
|
|
|
+ <el-table-column align="right" label="未出库数量" prop="compute_wckNum" min-width="100" show-overflow-tooltip>
|
|
|
+ <template slot-scope="scope">
|
|
|
+ {{ comRefundableQty(scope.row.type, scope.row.salesExamineStatus, scope.row) }}
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column align="right" label="发货数量" prop="refundableQty" min-width="100" show-overflow-tooltip>
|
|
|
</el-table-column>
|
|
|
<el-table-column align="right" label="发货金额" prop="payAmount" min-width="100" show-overflow-tooltip>
|
|
@@ -238,11 +243,6 @@
|
|
|
{{ scope.row.payAmount | numToFixed }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column align="right" label="未出库数量" prop="" min-width="100" show-overflow-tooltip>
|
|
|
- <template slot-scope="scope">
|
|
|
- {{ comRefundableQty(scope.row.type, scope.row.salesExamineStatus, scope.row) }}
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
<el-table-column align="left" label="表头业务员" prop="k3ServiceName" min-width="100" show-overflow-tooltip>
|
|
|
</el-table-column>
|
|
|
|
|
@@ -270,13 +270,13 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column align="left" label="表体备注" prop="invoiceRemark" min-width="200" show-overflow-tooltip>
|
|
|
</el-table-column>
|
|
|
- <el-table-column align="left" label="打印次数" prop="printNum" min-width="200" show-overflow-tooltip>
|
|
|
+ <el-table-column align="left" label="打印次数" prop="printNum" min-width="100" show-overflow-tooltip>
|
|
|
</el-table-column>
|
|
|
- <el-table-column align="left" label="经销商现金钱包" prop="customerWalletName" min-width="200"
|
|
|
+ <el-table-column align="left" label="经销商现金钱包" prop="customerWalletName" min-width="120"
|
|
|
show-overflow-tooltip></el-table-column>
|
|
|
- <el-table-column align="left" label="经销商返利钱包" prop="customerWalletName2" min-width="200"
|
|
|
+ <el-table-column align="left" label="经销商返利钱包" prop="customerWalletName2" min-width="120"
|
|
|
show-overflow-tooltip></el-table-column>
|
|
|
- <el-table-column align="left" label="文件编号" prop="itemFileNo" min-width="200" show-overflow-tooltip>
|
|
|
+ <el-table-column align="left" label="文件编号" prop="itemFileNo" min-width="100" show-overflow-tooltip>
|
|
|
</el-table-column>
|
|
|
|
|
|
|
|
@@ -499,6 +499,7 @@ export default {
|
|
|
if(newValue && newValue.length) {
|
|
|
newValue.forEach((item, index) => {
|
|
|
this.dataList[index].compute_zkeAmount = item.totalDiscAmount + item.payRebateAmount;
|
|
|
+ this.dataList[index].compute_wckNum = this.comRefundableQty(item.type, item.salesExamineStatus, item);
|
|
|
})
|
|
|
}
|
|
|
},
|
|
@@ -605,7 +606,7 @@ export default {
|
|
|
getSumList(params).then((res) => {
|
|
|
res.data.records.forEach(item => {
|
|
|
item.notOutNumber = item.salesStatus ? 0 : item.refundableQty;
|
|
|
- item.sums1 = ['refundableQty'];
|
|
|
+ item.sums1 = ['refundableQty', 'compute_wckNum'];
|
|
|
item.sums2 = ['payAmount', 'payRebateAmount', 'discAmount', 'totalDiscAmount', 'singlePayPrice', 'compute_zkeAmount'];
|
|
|
})
|
|
|
this.dataList = res.data.records;
|