新-成品出库查询 添加箱内子卷个数字段

This commit is contained in:
yangyufu
2025-09-10 09:58:03 +08:00
parent 80da52c026
commit b7cd1b54b3
2 changed files with 3 additions and 0 deletions

View File

@@ -274,6 +274,7 @@
c.pcsn, c.pcsn,
sub.sap_pcsn, sub.sap_pcsn,
sub.net_weight, sub.net_weight,
sub.boxin_num,
sub.customer_name, sub.customer_name,
sub.customer_description, sub.customer_description,
sub.sale_order_name, sub.sale_order_name,
@@ -334,6 +335,7 @@
max(record.customer_name) as customer_name, max(record.customer_name) as customer_name,
max(record.customer_description) as customer_description, max(record.customer_description) as customer_description,
max(record.width) as width, max(record.width) as width,
max(record.quanlity_in_box) boxin_num,
max(record.thickness) as thickness, max(record.thickness) as thickness,
max(record.mass_per_unit_area) as mass_per_unit_area, max(record.mass_per_unit_area) as mass_per_unit_area,
max(record.net_weight) as net_weight, max(record.net_weight) as net_weight,

View File

@@ -118,6 +118,7 @@
<el-table-column show-overflow-tooltip prop="cust_name" label="物流公司" :min-width="flexWidth('cust_name',crud.data,'物流公司')" /> <el-table-column show-overflow-tooltip prop="cust_name" label="物流公司" :min-width="flexWidth('cust_name',crud.data,'物流公司')" />
<el-table-column show-overflow-tooltip prop="estimatedd_freight" label="运费" :formatter="crud.formatNum2" :min-width="flexWidth('estimated_freight',crud.data,'运费')" /> <el-table-column show-overflow-tooltip prop="estimatedd_freight" label="运费" :formatter="crud.formatNum2" :min-width="flexWidth('estimated_freight',crud.data,'运费')" />
<el-table-column show-overflow-tooltip prop="box_no" label="木箱号" :min-width="flexWidth('box_no',crud.data,'木箱号')" /> <el-table-column show-overflow-tooltip prop="box_no" label="木箱号" :min-width="flexWidth('box_no',crud.data,'木箱号')" />
<el-table-column show-overflow-tooltip prop="boxin_num" label="箱内子卷个数" :min-width="flexWidth('boxin_num',crud.data,'箱内子卷个数')" />
<el-table-column show-overflow-tooltip prop="box_material_code" label="木箱编码" :min-width="flexWidth('box_material_code',crud.data,'木箱编码')" /> <el-table-column show-overflow-tooltip prop="box_material_code" label="木箱编码" :min-width="flexWidth('box_material_code',crud.data,'木箱编码')" />
<el-table-column show-overflow-tooltip prop="box_material_name" label="木箱描述" :min-width="flexWidth('box_material_name',crud.data,'木箱描述')" /> <el-table-column show-overflow-tooltip prop="box_material_name" label="木箱描述" :min-width="flexWidth('box_material_name',crud.data,'木箱描述')" />
<el-table-column show-overflow-tooltip prop="material_code" label="物料编码" :min-width="flexWidth('material_code',crud.data,'物料编码')" /> <el-table-column show-overflow-tooltip prop="material_code" label="物料编码" :min-width="flexWidth('material_code',crud.data,'物料编码')" />