|
@@ -70,16 +70,16 @@
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="产品描述" align="center" prop="productDescription" />
|
|
|
- <el-table-column label="箱号" align="center" prop="carrierName" width="120" />
|
|
|
+ <el-table-column label="箱号" align="center" prop="carrierName" width="110" />
|
|
|
<el-table-column label="生产状态" prop="isProductStatus" width="90" align="center">
|
|
|
<template #default="scope">
|
|
|
<dict-tag :options="inventory_production_status" :value="scope.row.isProductStatus" />
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="工段" align="center" prop="deptName" width="100" />
|
|
|
+ <el-table-column label="工段" align="center" prop="deptName" width="90" />
|
|
|
<el-table-column label="工序" align="center" prop="processAlias" width="110" />
|
|
|
- <el-table-column label="投入数" align="center" prop="prodNum" width="96" />
|
|
|
- <el-table-column label="盘点数量" align="center" prop="taksStockNum" width="96">
|
|
|
+ <el-table-column label="投入数" align="center" prop="prodNum" width="80" />
|
|
|
+ <el-table-column label="盘点数量" align="center" prop="taksStockNum" width="90">
|
|
|
<template #default="scope">
|
|
|
<el-input-number v-if="scope.row.editStatus" v-model="scope.row.taksStockNum" controls-position="right"
|
|
|
style="width: 100px" :min="0" :precision="0" :max="99999"
|
|
@@ -88,6 +88,17 @@
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="外协单号" align="center" prop="outsourceFormNo" width="110" />
|
|
|
+ <el-table-column label="报工状态" align="center" prop="statusLabel" width="110" >
|
|
|
+ <template #default="scope">
|
|
|
+ <span v-if="scope.row.statusLabel == 0">未开始</span>
|
|
|
+ <span v-if="scope.row.statusLabel == 1">进行中</span>
|
|
|
+ <span v-if="scope.row.statusLabel == 2">结束报工</span>
|
|
|
+ <span v-if="scope.row.statusLabel == 3">工序已完成</span>
|
|
|
+ <span v-if="scope.row.statusLabel == 4">待接收</span>
|
|
|
+ <span v-if="scope.row.statusLabel == 6">已周转</span>
|
|
|
+ <span v-if="scope.row.statusLabel == 7">已接收</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="标识" width="300" align="center">
|
|
|
<template #default="scope">
|
|
|
<el-tag v-if="scope.row.isWaste == 1" class="spacing" type="danger">{{ "批废" }}</el-tag>
|