外协页面修改

This commit is contained in:
zhangzhiqiang
2022-12-29 10:29:02 +08:00
parent 5194d45e71
commit 8cb1e55dce
2 changed files with 4 additions and 4 deletions

View File

@@ -138,7 +138,7 @@
<el-table-column prop="org_id" label="所属组织" width="120px" :formatter="orgFormat" />
<el-table-column prop="material_code" label="物料编码" width="120px" />
<el-table-column prop="pcsn" label="批次" min-width="100" />
<el-table-column prop="workorder_qty" label="重量" width="150px" />
<el-table-column :formatter="crud.formatNum3" prop="workorder_qty" label="重量" width="150px" />
<el-table-column prop="workorder_status" label="工令状态" width="150px" :formatter="stateFormat" />
<el-table-column prop="storagevehicle_code" label="托盘号" />
<el-table-column prop="num_bucket" label="桶数" />
@@ -175,7 +175,7 @@ export default {
return CRUD({
title: '外协发货查询',
url: 'api/statistical/sendOutQuery',
idField: 'inspection_id',
idField: 'diskrecord_id',
sort: '',
props: {
// 每页数据条数
@@ -267,7 +267,7 @@ export default {
return '已出库'
} else if (row.is_send === '0') {
return '未出库'
} else{
} else {
return ''
}
},