Browse Source

0412 新看板

master
ruanqi 11 months ago
parent
commit
677259cd25
  1. 3
      src/assets/scss/rq.scss
  2. 6
      src/views/modules/print/print_liuhua_card.js
  3. 22
      src/views/modules/production/dailyPlan.vue
  4. 11
      src/views/modules/production/scheduleForSOTask.vue
  5. 10
      src/views/modules/production/scheduleForShopOrder.vue
  6. 11
      src/views/modules/production/scheduleForVPShopOrder.vue

3
src/assets/scss/rq.scss

@ -62,3 +62,6 @@
.redModel .el-form-item__label {
font-weight:bold;color:#bd0b06
}
.el-table .yellow-row {
background: #e7e756;
}

6
src/views/modules/print/print_liuhua_card.js

@ -87,7 +87,7 @@ export function printCardLabel(printList) {
LODOP.SET_PRINT_STYLEA(0,"FontSize",10);
LODOP.ADD_PRINT_TEXT(64,379,80,25,"产品颜色:");
LODOP.SET_PRINT_STYLEA(0,"FontSize",10);
LODOP.ADD_PRINT_TEXT(64,539,90,25,"外购件批号:");
LODOP.ADD_PRINT_TEXT(64,539,90,25,"催化剂类型:");
LODOP.SET_PRINT_STYLEA(0,"FontSize",10);
LODOP.ADD_PRINT_TEXT(86,4,85,25,"原材料型号:");
LODOP.SET_PRINT_STYLEA(0,"FontSize",10);
@ -235,8 +235,8 @@ export function printCardLabel(printList) {
LODOP.SET_PRINT_STYLEA(0,"FontSize",10);
LODOP.ADD_PRINT_TEXT(63,462,85,20,printData.cpys);//产品颜色
LODOP.SET_PRINT_STYLEA(0,"FontSize",10);
// LODOP.ADD_PRINT_TEXT(63,615,105,25,"外购件批号");//外购件批号
// LODOP.SET_PRINT_STYLEA(0,"FontSize",10);
LODOP.ADD_PRINT_TEXT(63,615,105,25,printData.chjlt);//催化剂类型
LODOP.SET_PRINT_STYLEA(0,"FontSize",10);
LODOP.ADD_PRINT_TEXT(86,82,120,20,printData.yclxh);//原材料型号
LODOP.SET_PRINT_STYLEA(0,"FontSize",10);
LODOP.ADD_PRINT_TEXT(87,283,105,25,printData.hljyd);//混炼胶硬度

22
src/views/modules/production/dailyPlan.vue

@ -102,6 +102,7 @@
<el-table
:height="height"
:data="tableData"
:row-class-name="tableRowClassName"
border
style="width: 100%">
<el-table-column
@ -118,14 +119,14 @@
prop="site"
header-align="center"
align="left"
min-width="60"
min-width="40"
label="工厂编码">
</el-table-column>
<el-table-column
prop="orderNo"
header-align="center"
align="left"
min-width="60"
min-width="70"
label="订单号">
</el-table-column>
<el-table-column
@ -146,7 +147,7 @@
prop="partDescription"
header-align="center"
align="left"
min-width="200"
min-width="140"
label="物料名称">
</el-table-column>
<el-table-column
@ -177,6 +178,13 @@
min-width="40"
label="订单数量">
</el-table-column>
<el-table-column
prop="weightFactor"
header-align="center"
align="right"
min-width="40"
label="产品净重">
</el-table-column>
<el-table-column
prop="weight"
header-align="center"
@ -860,6 +868,14 @@
this.scheduledingsData.qty=''
}
},
tableRowClassName ({row, rowIndex}) {
if (row.orderTypeDesc==='加急订单'||row.orderTypeDesc==='变更订单') {
return 'yellow-row'
}
return ''
},
},
created () {

11
src/views/modules/production/scheduleForSOTask.vue

@ -285,6 +285,13 @@
min-width="80"
label="订单数量">
</el-table-column>
<el-table-column
prop="weightFactor"
header-align="center"
align="right"
min-width="80"
label="产品净重">
</el-table-column>
<el-table-column
prop="weight"
header-align="center"
@ -989,7 +996,9 @@
}
},
tableRowClassName ({row, rowIndex}) {
if (row.orderTypeDesc==='加急订单'||row.orderTypeDesc==='变更订单') {
return 'yellow-row'
}
if (row.lastStartDate == this.dayjs().format('YYYY-MM-DD')) {
return 'success-row'
}

10
src/views/modules/production/scheduleForShopOrder.vue

@ -251,6 +251,13 @@
width="80"
label="订单数量">
</el-table-column>
<el-table-column
prop="weightFactor"
header-align="center"
align="right"
min-width="80"
label="产品净重">
</el-table-column>
<el-table-column
prop="weight"
header-align="center"
@ -1017,6 +1024,9 @@
},
tableRowClassName ({row, rowIndex}) {
if (row.orderTypeDesc==='加急订单'||row.orderTypeDesc==='变更订单') {
return 'yellow-row'
}
if (row.lastStartDate == this.dayjs().format('YYYY-MM-DD')) {
return 'success-row'
}

11
src/views/modules/production/scheduleForVPShopOrder.vue

@ -162,6 +162,13 @@
min-width="100"
label="组合件需求数量">
</el-table-column>
<el-table-column
prop="weightFactor"
header-align="center"
align="right"
min-width="80"
label="组合件净重">
</el-table-column>
<el-table-column
prop="weight"
header-align="center"
@ -813,7 +820,9 @@
},
tableRowClassName ({row, rowIndex}) {
if (row.orderTypeDesc==='加急订单'||row.orderTypeDesc==='变更订单') {
return 'yellow-row'
}
if (row.lastStartDate == this.dayjs().format('YYYY-MM-DD')) {
return 'success-row'
}

Loading…
Cancel
Save