This commit is contained in:
zds
2022-12-22 10:15:02 +08:00
parent f4ea6660e0
commit 17bf4dbfeb
5 changed files with 21 additions and 12 deletions

View File

@@ -153,6 +153,9 @@
<el-table-column prop="pcsn" min-width="80" label="批次"/>
<el-table-column prop="workorder_qty" min-width="70" label="重量" :formatter="crud.formatNum0"/>
<el-table-column prop="bill_qty" min-width="90" label="开单总重量" :formatter="crud.formatNum3" />
<el-table-column prop="planstart_time" label="计划开始日期" min-width="100" :formatter="workorder_dateFormat" />
<el-table-column prop="planend_time" label="计划结束日期" min-width="100" :formatter="workorder_dateFormat3" />
<el-table-column prop="formula_time" min-width="135" label="开单时间"/>
<el-table-column :formatter="create_modeFormat" min-width="160" prop="create_mode" label="生成方式" />
<el-table-column prop="qty_unit_name" min-width="80" label="单位"/>
<el-table-column prop="workorder_type" :formatter="bill_typeFormat" min-width="75" label="工令类型" />
@@ -271,6 +274,9 @@ export default {
workorder_dateFormat(row) {
return row.planstart_time.substring(0, 10)
},
workorder_dateFormat3(row) {
return row.planend_time.substring(0, 10)
},
handleCurrentChange() {
this.checkrows = []
this.mstrow = {}