|
|
|
@ -167,11 +167,11 @@
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<dict-tag :options="dict.type.workorder_type" :value="scope.row.status"/>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="备注" align="center" prop="remark" />
|
|
|
|
|
<el-table-column label="产品类型" align="center" prop="prodType" />
|
|
|
|
|
</el-table>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<pagination
|
|
|
|
|
v-show="total>0"
|
|
|
|
|
:total="total"
|
|
|
|
@ -181,100 +181,184 @@
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
<!-- 添加或修改生产工单对话框 -->
|
|
|
|
|
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
|
|
|
|
|
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
|
|
|
|
<el-form-item label="工单编码" prop="workorderCode">
|
|
|
|
|
<el-input v-model="form.workorderCode" placeholder="请输入工单编码" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="工单名称" prop="workorderName">
|
|
|
|
|
<el-input v-model="form.workorderName" placeholder="请输入工单名称" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="订单id" prop="orderId">
|
|
|
|
|
<el-input v-model="form.orderId" placeholder="请输入订单id" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="订单编码" prop="orderCode">
|
|
|
|
|
<el-input v-model="form.orderCode" placeholder="请输入订单编码" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="产品ID" prop="productId">
|
|
|
|
|
<el-input v-model="form.productId" placeholder="请输入产品ID" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="产品编号" prop="productCode">
|
|
|
|
|
<el-input v-model="form.productCode" placeholder="请输入产品编号" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="产品名称" prop="productName">
|
|
|
|
|
<el-input v-model="form.productName" placeholder="请输入产品名称" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="规格型号" prop="productSpc">
|
|
|
|
|
<el-input v-model="form.productSpc" placeholder="请输入规格型号" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="单位" prop="unit">
|
|
|
|
|
<el-input v-model="form.unit" placeholder="请输入单位" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="已生产数量" prop="quantityProduced">
|
|
|
|
|
<el-input v-model="form.quantityProduced" placeholder="请输入已生产数量" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="已拆分数量" prop="quantitySplit">
|
|
|
|
|
<el-input v-model="form.quantitySplit" placeholder="请输入已拆分数量" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="工艺id" prop="routeCode">
|
|
|
|
|
<el-input v-model="form.routeCode" placeholder="请输入工艺id" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="产线设备" prop="prodLineCode">
|
|
|
|
|
<el-input v-model="form.prodLineCode" placeholder="请输入产线设备" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="工单生产日期" prop="productDate">
|
|
|
|
|
<el-date-picker
|
|
|
|
|
v-model="form.productDate"
|
|
|
|
|
type="daterange"
|
|
|
|
|
range-separator="至"
|
|
|
|
|
start-placeholder="开始日期"
|
|
|
|
|
end-placeholder="结束日期">
|
|
|
|
|
</el-date-picker>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="班次" prop="shiftId">
|
|
|
|
|
<el-input v-model="form.shiftId" placeholder="请输入班次" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="父工单" prop="parentOrder">
|
|
|
|
|
<el-input v-model="form.parentOrder" placeholder="请输入父工单" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="备注" prop="remark">
|
|
|
|
|
<el-input v-model="form.remark" placeholder="请输入备注" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="预留字段1" prop="attr1">
|
|
|
|
|
<el-input v-model="form.attr1" placeholder="请输入预留字段1" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="预留字段2" prop="attr2">
|
|
|
|
|
<el-input v-model="form.attr2" placeholder="请输入预留字段2" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="预留字段3" prop="attr3">
|
|
|
|
|
<el-input v-model="form.attr3" placeholder="请输入预留字段3" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="预留字段4" prop="attr4">
|
|
|
|
|
<el-input v-model="form.attr4" placeholder="请输入预留字段4" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="${comment}" prop="factoryCode">
|
|
|
|
|
<el-input v-model="form.factoryCode" placeholder="请输入${comment}" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="是否为底层节点(1是0不是)" prop="isEnd">
|
|
|
|
|
<el-input v-model="form.isEnd" placeholder="请输入是否为底层节点(1是0不是)" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-form>
|
|
|
|
|
<!-- 工单修改模块 -->
|
|
|
|
|
<el-dialog :title="title" :visible.sync="open" width="1000px" append-to-body>
|
|
|
|
|
<!-- 拆分头pro -->
|
|
|
|
|
<el-table
|
|
|
|
|
border
|
|
|
|
|
v-if="refreshProTable"
|
|
|
|
|
v-loading="proLoading"
|
|
|
|
|
:data="productData"
|
|
|
|
|
row-key="orderCode"
|
|
|
|
|
:tree-props="{children: 'children', hasChildren: 'hasChildren'}"
|
|
|
|
|
>
|
|
|
|
|
<el-table-column width="60" align="center" label="序号" type="index" :index="indexMethod"></el-table-column>
|
|
|
|
|
<el-table-column width="150" label="订单编号" prop="orderCode"/>
|
|
|
|
|
<el-table-column width="380" label="产品名称" align="center" prop="prodDesc"/>
|
|
|
|
|
<el-table-column width="60" label="单位" align="center" prop="unit"/>
|
|
|
|
|
<el-table-column width="130" label="产品数量" align="center" prop="quantity"/>
|
|
|
|
|
<el-table-column label="已拆分数量" align="center" prop="quantitySplit"/>
|
|
|
|
|
<el-table-column label="拆分数量" align="center" prop="atrr1"/>
|
|
|
|
|
</el-table>
|
|
|
|
|
<el-form class="my-margin" :model="splitForm" ref="dynamicForm" label-width="80px">
|
|
|
|
|
<!-- 编辑框 -->
|
|
|
|
|
<!-- 第一行 -->
|
|
|
|
|
<el-row>
|
|
|
|
|
<!-- 选择产线 -->
|
|
|
|
|
<el-col :span="6">
|
|
|
|
|
<el-form-item label="选择机型:">
|
|
|
|
|
<el-select @change="machineType" size="small" v-model="splitForm.prodLineCode" placeholder="请选择成型机">
|
|
|
|
|
<el-option v-for="item in proline" :key="item.key" :label="item.label" :value="item.key"></el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<!-- 拆分数量 -->
|
|
|
|
|
<el-col :offset="2" :span="7">
|
|
|
|
|
<el-form-item size="small" label="拆分数量:">
|
|
|
|
|
<el-input required type="number" @input="splitNumChange" v-model="splitForm.splitNum"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<!-- 工单日期 -->
|
|
|
|
|
<el-col :offset="1" :span="5">
|
|
|
|
|
<el-form-item size="small" label="工单日期: ">
|
|
|
|
|
<el-date-picker value-format="yyyy-MM-dd" @change="checkDate" v-model="splitForm.productDate" type="date" placeholder="选择日期"
|
|
|
|
|
></el-date-picker>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
<!-- 第二行 -->
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col :span="6">
|
|
|
|
|
<!-- 选择班次 -->
|
|
|
|
|
<el-form-item size="small" label="选择班次:" class="my-select my-first">
|
|
|
|
|
<el-select @change="shiftChange" v-model="splitForm.shiftId" placeholder="请选择班次">
|
|
|
|
|
<el-option v-for="item in workShift" :key="item.shiftId" :label="item.shiftDesc"
|
|
|
|
|
:value="item.shiftId"
|
|
|
|
|
></el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :offset="2" :span="6">
|
|
|
|
|
<!-- 选择工艺 -->
|
|
|
|
|
<el-form-item size="small" label="选择工艺:" class="my-select my-first">
|
|
|
|
|
<el-select @change="routeChange" v-model="splitForm.routeCode" placeholder="请选择工艺">
|
|
|
|
|
<el-option v-for="item in routes" :key="item.routeCode" :label="item.routeName"
|
|
|
|
|
:value="item.routeCode"
|
|
|
|
|
></el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
<!-- 第三行 -->
|
|
|
|
|
<el-row v-for="(item, index) in formFields" :key="index">
|
|
|
|
|
<!-- 批次编号 -->
|
|
|
|
|
<el-col :span="7">
|
|
|
|
|
<el-form-item size="small" label="批次编号">
|
|
|
|
|
<el-input @blur="batchCodeChange" v-model="item.batchCode"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<!-- 批次数量 -->
|
|
|
|
|
<el-col :offset="1" :span="4">
|
|
|
|
|
<el-form-item size="small" label="批次数量">
|
|
|
|
|
<el-input required @input="inBatch" type="number" v-model="item.batchQuantity"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<!-- 操作 -->
|
|
|
|
|
<el-col :offset="1" :span="4">
|
|
|
|
|
<el-button size="small" v-if="formFields.length > 1" @click="removeField(index)" type="danger">删除
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button size="small" v-if="index === formFields.length - 1" @click="addField" type="primary">添加
|
|
|
|
|
</el-button>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
</el-form>
|
|
|
|
|
<!-- 拆分尾 -->
|
|
|
|
|
<el-table
|
|
|
|
|
border
|
|
|
|
|
:data="splitData"
|
|
|
|
|
v-if="refreshWorkerTable"
|
|
|
|
|
v-loading="workerLoading"
|
|
|
|
|
row-key="workorderCode"
|
|
|
|
|
style="width: 100%"
|
|
|
|
|
max-height="240"
|
|
|
|
|
:tree-props="{children: 'children', hasChildren: 'hasChildren'}"
|
|
|
|
|
>
|
|
|
|
|
<el-table-column width="60" align="center" label="序号" type="index" :index="indexMethod"></el-table-column>
|
|
|
|
|
<el-table-column width="200" align="center" prop="workorderCode" label="工单号"></el-table-column>
|
|
|
|
|
<el-table-column width="100" align="center" prop="productDate" label="工单日期"></el-table-column>
|
|
|
|
|
<el-table-column width="100" align="center" prop="prodLineCode" label="成型机"></el-table-column>
|
|
|
|
|
<el-table-column width="80" align="center" prop="quantitySplit" label="数量"></el-table-column>
|
|
|
|
|
<el-table-column width="60" label="单位" align="center" prop="unit"/>
|
|
|
|
|
<el-table-column width="90" label="工艺编码" align="center" prop="routeCode"/>
|
|
|
|
|
<el-table-column width="90" label="班次" align="center" prop="shiftDesc"/>
|
|
|
|
|
<el-table-column align="center" prop="batchCodeList" label="批次号"></el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
|
<!-- 测试 -->
|
|
|
|
|
<!-- 操作按钮 -->
|
|
|
|
|
<div slot="footer" class="dialog-footer">
|
|
|
|
|
<el-button type="primary" @click="submitForm">确 定</el-button>
|
|
|
|
|
<el-button @click="cancel">取 消</el-button>
|
|
|
|
|
</div>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import { listWorkorder, getWorkorder, delWorkorder,downWorkorder, addWorkorder, updateWorkorder } from "@/api/plan/workorder";
|
|
|
|
|
import {
|
|
|
|
|
listWorkorder,
|
|
|
|
|
getWorkorder,
|
|
|
|
|
delWorkorder,
|
|
|
|
|
downWorkorder,
|
|
|
|
|
addWorkorder,
|
|
|
|
|
updateWorkorder,
|
|
|
|
|
getOrderAndWork,
|
|
|
|
|
getWorkBatchList,
|
|
|
|
|
subChangeWorkOrder,
|
|
|
|
|
checkWorkOrder
|
|
|
|
|
} from '@/api/plan/workorder'
|
|
|
|
|
import moment from 'moment';
|
|
|
|
|
import { getprodLineShift } from '@/api/plan/order'
|
|
|
|
|
export default {
|
|
|
|
|
name: "Workorder",
|
|
|
|
|
dicts: ['workorder_type'],
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
// 工单修改form
|
|
|
|
|
workForm: {},
|
|
|
|
|
// 首页-多选选中-用于工单变更
|
|
|
|
|
selectWork: null,
|
|
|
|
|
//工单遮罩层
|
|
|
|
|
workerLoading: false,
|
|
|
|
|
//工单重新渲染表格
|
|
|
|
|
refreshWorkerTable: true,
|
|
|
|
|
// 拆分后工单list
|
|
|
|
|
splitData: [],
|
|
|
|
|
// 批次
|
|
|
|
|
formFields: [{
|
|
|
|
|
batchCode: '',
|
|
|
|
|
batchQuantity: ''
|
|
|
|
|
}],
|
|
|
|
|
// 工艺list
|
|
|
|
|
routes: [],
|
|
|
|
|
// 班次list
|
|
|
|
|
workShift: [],
|
|
|
|
|
// 成型机list
|
|
|
|
|
proline: [],
|
|
|
|
|
// 订单
|
|
|
|
|
productData: [],
|
|
|
|
|
// 订单遮罩层
|
|
|
|
|
proLoading: false,
|
|
|
|
|
// 订单重新渲染表格
|
|
|
|
|
refreshProTable: true,
|
|
|
|
|
// 拆分form
|
|
|
|
|
splitForm:{
|
|
|
|
|
prodLineCode: null,
|
|
|
|
|
splitNum: null,
|
|
|
|
|
productDate: null,
|
|
|
|
|
shiftId: null,
|
|
|
|
|
routeCode: null,
|
|
|
|
|
},
|
|
|
|
|
// 遮罩层
|
|
|
|
|
loading: true,
|
|
|
|
|
// 选中数组
|
|
|
|
@ -356,6 +440,151 @@ export default {
|
|
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
/** 动态添加表单 */
|
|
|
|
|
addField() {
|
|
|
|
|
//如果批次数量大于等于拆分数量则不允许拆分
|
|
|
|
|
let sum = 0
|
|
|
|
|
for (let i = 0; i < this.formFields.length; i++) {
|
|
|
|
|
sum += Number(this.formFields[i].batchQuantity)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (sum >= this.productData[0].atrr1) {
|
|
|
|
|
this.$message({
|
|
|
|
|
message: '无法添加!您的批次数量已满!',
|
|
|
|
|
type: 'warning'
|
|
|
|
|
})
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.formFields.push({ batchCode: '', batchQuantity: '' })
|
|
|
|
|
//自动填充
|
|
|
|
|
this.formFields[this.formFields.length - 1].batchQuantity = Number(this.productData[0].atrr1) - Number(sum)
|
|
|
|
|
},
|
|
|
|
|
/** 动态删除表单 */
|
|
|
|
|
removeField(index) {
|
|
|
|
|
this.formFields.splice(index, 1)
|
|
|
|
|
},
|
|
|
|
|
/** 填写批次数量 */
|
|
|
|
|
inBatch(e) {
|
|
|
|
|
//不能为负数
|
|
|
|
|
if (e <= 0) {
|
|
|
|
|
this.formFields[this.formFields.length - 1].batchQuantity = 1
|
|
|
|
|
}
|
|
|
|
|
//逻辑判断
|
|
|
|
|
let sum = 0
|
|
|
|
|
for (let i = 0; i < this.formFields.length; i++) {
|
|
|
|
|
sum += Number(this.formFields[i].batchQuantity)
|
|
|
|
|
}
|
|
|
|
|
//如果超过拆分数量,提示并清空当前输入
|
|
|
|
|
if (sum > this.productData[0].atrr1) {
|
|
|
|
|
this.$message({
|
|
|
|
|
message: '你的批次数量总和不能超过拆分数量!',
|
|
|
|
|
type: 'warning'
|
|
|
|
|
})
|
|
|
|
|
this.formFields[this.formFields.length - 1].batchQuantity = Number(this.productData[0].atrr1) - Number(Number(sum) - Number(e))
|
|
|
|
|
}
|
|
|
|
|
//如果拆分数量为空
|
|
|
|
|
if (this.productData[0].atrr1 == '' || this.productData[0].atrr1 == null) {
|
|
|
|
|
this.formFields[this.formFields.length - 1].batchQuantity = ''
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
/** 检验批次编码是否重复 */
|
|
|
|
|
batchCodeChange(e) {
|
|
|
|
|
if (this.formFields.length > 1) {
|
|
|
|
|
for (let i = 0; i < this.formFields.length - 1; i++) {
|
|
|
|
|
if (this.formFields[this.formFields.length - 1].batchCode == this.formFields[i].batchCode) {
|
|
|
|
|
this.$message({
|
|
|
|
|
message: '批次号不能重复!',
|
|
|
|
|
type: 'warning'
|
|
|
|
|
})
|
|
|
|
|
this.formFields = [{
|
|
|
|
|
batchCode: '',
|
|
|
|
|
batchQuantity: ''
|
|
|
|
|
}]
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
/** 更改工艺 */
|
|
|
|
|
routeChange(e){
|
|
|
|
|
console.log("您更改了工艺")
|
|
|
|
|
console.log(e)
|
|
|
|
|
this.workForm.routeCode = e
|
|
|
|
|
console.log("这里是全部数据")
|
|
|
|
|
console.log(this.workForm)
|
|
|
|
|
console.log("这里是订单数据")
|
|
|
|
|
console.log(this.productData)
|
|
|
|
|
},
|
|
|
|
|
/** 更改班次 */
|
|
|
|
|
shiftChange(e){
|
|
|
|
|
console.log("您更改了班次")
|
|
|
|
|
console.log(e)
|
|
|
|
|
this.workForm.shiftId = e
|
|
|
|
|
},
|
|
|
|
|
/** 拆分数量 */
|
|
|
|
|
splitNumChange(e){
|
|
|
|
|
console.log("拆分数量改变")
|
|
|
|
|
console.log(e)
|
|
|
|
|
//不能为负数
|
|
|
|
|
if (e <= 0) {
|
|
|
|
|
e = 1
|
|
|
|
|
this.splitForm.splitNum = 1
|
|
|
|
|
} else {
|
|
|
|
|
// 获取最大值,拆分数量不得超过最大值
|
|
|
|
|
let max = Number(this.productData[0].quantity) - Number(this.productData[0].quantitySplit)
|
|
|
|
|
// 超过最大值,给用户提醒
|
|
|
|
|
if (e > max) {
|
|
|
|
|
this.$message({
|
|
|
|
|
message: '最大值不能超过' + max + '!',
|
|
|
|
|
type: 'warning'
|
|
|
|
|
})
|
|
|
|
|
this.splitForm.splitNum = max
|
|
|
|
|
}
|
|
|
|
|
//前端数据同步
|
|
|
|
|
// 在获取到新的数据后执行以下代码
|
|
|
|
|
this.proLoading = true // 设置加载状态为true,表示正在加载
|
|
|
|
|
|
|
|
|
|
var num = this.productData[0].quantity;
|
|
|
|
|
// 递归操作动态显示拆分数量
|
|
|
|
|
function setAtrr1(data, splitNum) {
|
|
|
|
|
if (data.children !== undefined) {
|
|
|
|
|
for (let i = 0; i < data.children.length; i++) {
|
|
|
|
|
data.children[i].atrr1 = splitNum * (data.children[i].quantity / num)
|
|
|
|
|
setAtrr1(data.children[i], splitNum)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.productData[0].atrr1 = this.splitForm.splitNum
|
|
|
|
|
setAtrr1(this.productData[0], this.splitForm.splitNum)
|
|
|
|
|
|
|
|
|
|
this.refreshProTable = false // 先将refreshProTable设置为false,隐藏表格
|
|
|
|
|
this.$nextTick(() => {
|
|
|
|
|
// 使用$nextTick来等待DOM更新完成
|
|
|
|
|
this.refreshProTable = true // 立即将refreshProTable设置为true,显示表格
|
|
|
|
|
this.proLoading = false // 设置加载状态为false,表示加载完成
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
this.workForm.splitNum = this.splitForm.splitNum
|
|
|
|
|
}
|
|
|
|
|
this.product = this.productData[0]
|
|
|
|
|
},
|
|
|
|
|
/** 工单日期选择 */
|
|
|
|
|
checkDate(e){
|
|
|
|
|
console.log("工单日期改变")
|
|
|
|
|
console.log(e)
|
|
|
|
|
|
|
|
|
|
this.workForm.productDate = e
|
|
|
|
|
},
|
|
|
|
|
/** 成型机选择 */
|
|
|
|
|
machineType(e) {
|
|
|
|
|
console.log("成型机选择改变")
|
|
|
|
|
console.log(e)
|
|
|
|
|
console.log(this.proline)
|
|
|
|
|
|
|
|
|
|
this.workForm.prodLineCode = e
|
|
|
|
|
},
|
|
|
|
|
/** 查询生产工单列表 */
|
|
|
|
|
getList() {
|
|
|
|
|
this.loading = true;
|
|
|
|
@ -425,6 +654,9 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
// 多选框选中数据
|
|
|
|
|
handleSelectionChange(selection) {
|
|
|
|
|
// 这里设置选中的工单信息--用于工单变更
|
|
|
|
|
this.selectWork = selection[0]
|
|
|
|
|
|
|
|
|
|
this.ids = selection.map(item => item.workorderId)
|
|
|
|
|
this.codes = selection.map(item => item.workorderCode)
|
|
|
|
|
this.single = selection.length!==1
|
|
|
|
@ -440,16 +672,111 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
/** 修改按钮操作 */
|
|
|
|
|
handleUpdate(row) {
|
|
|
|
|
this.reset();
|
|
|
|
|
const workorderId = row.workorderId || this.ids
|
|
|
|
|
getWorkorder(workorderId).then(response => {
|
|
|
|
|
this.form = response.data;
|
|
|
|
|
this.open = true;
|
|
|
|
|
this.title = "修改生产工单";
|
|
|
|
|
});
|
|
|
|
|
// 校验是否可以修改
|
|
|
|
|
let check = 0;
|
|
|
|
|
checkWorkOrder(this.selectWork.workorderId).then(response => {
|
|
|
|
|
if (response.code == 500){
|
|
|
|
|
check = 1;
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
if (check == 1){
|
|
|
|
|
this.$message({
|
|
|
|
|
message:'该工单已有湿料计划,不可修改!',
|
|
|
|
|
type:'warning'
|
|
|
|
|
})
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
console.log("这里是你要的数据")
|
|
|
|
|
console.log(this.selectWork)
|
|
|
|
|
// 数据初始化
|
|
|
|
|
this.reset();
|
|
|
|
|
this.splitData = [];
|
|
|
|
|
this.productData =[];
|
|
|
|
|
this.splitForm={
|
|
|
|
|
prodLineCode: null,
|
|
|
|
|
splitNum: null,
|
|
|
|
|
productDate: null,
|
|
|
|
|
shiftId: null,
|
|
|
|
|
routeCode: null,
|
|
|
|
|
}
|
|
|
|
|
this.formFields=[]
|
|
|
|
|
|
|
|
|
|
//初始化日期为默认今天
|
|
|
|
|
this.splitForm.productDate = new Date()
|
|
|
|
|
//获取成型机和班次
|
|
|
|
|
getprodLineShift(row.orderType).then(response => {
|
|
|
|
|
this.proline = response.data.lines
|
|
|
|
|
this.workShift = response.data.shifts
|
|
|
|
|
this.routes = response.data.routes
|
|
|
|
|
})
|
|
|
|
|
// 获取批次信息list
|
|
|
|
|
getWorkBatchList(this.selectWork).then(response => {
|
|
|
|
|
this.formFields = response.data
|
|
|
|
|
console.log("这里是批次数据")
|
|
|
|
|
console.log(response.data)
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
// 获取工单和订单信息
|
|
|
|
|
// 在获取到新的数据后执行以下代码
|
|
|
|
|
this.proLoading = true // 设置加载状态为true,表示正在加载
|
|
|
|
|
this.workerLoading = true // 设置加载状态为true,表示正在加载
|
|
|
|
|
getOrderAndWork(this.selectWork).then(response =>{
|
|
|
|
|
console.log("这里是返回数据")
|
|
|
|
|
console.log(response)
|
|
|
|
|
this.splitData.push(response.data.workOrder)
|
|
|
|
|
this.productData.push(response.data.order)
|
|
|
|
|
|
|
|
|
|
this.refreshProTable = false // 先将refreshProTable设置为false,隐藏表格
|
|
|
|
|
this.refreshWorkerTable = false // 先将refreshProTable设置为false,隐藏表格
|
|
|
|
|
this.$nextTick(() => {
|
|
|
|
|
// 使用$nextTick来等待DOM更新完成
|
|
|
|
|
this.refreshProTable = true // 立即将refreshProTable设置为true,显示表格
|
|
|
|
|
this.proLoading = false // 设置加载状态为false,表示加载完成
|
|
|
|
|
})
|
|
|
|
|
this.$nextTick(() => {
|
|
|
|
|
// 使用$nextTick来等待DOM更新完成
|
|
|
|
|
this.refreshWorkerTable = true // 立即将refreshProTable设置为true,显示表格
|
|
|
|
|
this.workerLoading = false // 设置加载状态为false,表示加载完成
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
// 设置拆分数量
|
|
|
|
|
this.splitForm.splitNum = this.splitData[0].quantitySplit
|
|
|
|
|
// 设置选择机型
|
|
|
|
|
this.splitForm.prodLineCode = this.splitData[0].prodLineCode
|
|
|
|
|
// 设置班次
|
|
|
|
|
this.splitForm.shiftId = this.splitData[0].shiftDesc
|
|
|
|
|
// 设置工艺
|
|
|
|
|
this.splitForm.routeCode = this.splitData[0].routeCode
|
|
|
|
|
|
|
|
|
|
// 递归将拆分数量还原
|
|
|
|
|
function setAtrr1(order, work) {
|
|
|
|
|
order.quantitySplit = Number(order.quantitySplit) - Number(work.quantitySplit);
|
|
|
|
|
order.atrr1 = work.quantitySplit;
|
|
|
|
|
|
|
|
|
|
if (order.children !== undefined && work.children !== undefined) {
|
|
|
|
|
setAtrr1(order.children[0], work.children[0]);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
setAtrr1(this.productData[0], this.splitData[0]);
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
// function setAtrr1(order,work) {
|
|
|
|
|
// order.quantitySplit = Number(order.quantitySplit) - Number(work.quantitySplit)
|
|
|
|
|
// order.atrr1 = work.quantitySplit
|
|
|
|
|
// if (order.children !== undefined) {
|
|
|
|
|
// setAtrr1(order.children[0],work.children[0])
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
//
|
|
|
|
|
// setAtrr1(this.productData[0],this.splitData[0])
|
|
|
|
|
|
|
|
|
|
this.open = true;
|
|
|
|
|
this.title = "修改生产工单";
|
|
|
|
|
},
|
|
|
|
|
/**下达工单**/
|
|
|
|
|
handleUpdateDown(row) {
|
|
|
|
|
handleUpdateDown(row) {
|
|
|
|
|
var statusesArray = this.statuses;
|
|
|
|
|
for(var i=0; i<statusesArray.length; i++) {
|
|
|
|
|
if(statusesArray[i]=='w1'){//已经下达的不允许操作
|
|
|
|
@ -466,25 +793,81 @@ export default {
|
|
|
|
|
this.$modal.msgSuccess("下发成功");
|
|
|
|
|
}).catch(() => {});
|
|
|
|
|
},
|
|
|
|
|
/** 提交按钮 */
|
|
|
|
|
/** 拆分-提交按钮 */
|
|
|
|
|
submitForm() {
|
|
|
|
|
this.$refs["form"].validate(valid => {
|
|
|
|
|
if (valid) {
|
|
|
|
|
if (this.form.workorderId != null) {
|
|
|
|
|
updateWorkorder(this.form).then(response => {
|
|
|
|
|
this.$modal.msgSuccess("修改成功");
|
|
|
|
|
this.open = false;
|
|
|
|
|
this.getList();
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
addWorkorder(this.form).then(response => {
|
|
|
|
|
this.$modal.msgSuccess("新增成功");
|
|
|
|
|
this.open = false;
|
|
|
|
|
this.getList();
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
// 判断数据不能为空
|
|
|
|
|
if (this.splitForm.splitNum == null || this.splitForm.shiftId == null || this.splitForm.prodLineCode == null || this.splitForm.routeCode == null) {
|
|
|
|
|
this.$message({
|
|
|
|
|
message: '数据不能为空!',
|
|
|
|
|
type: 'warning'
|
|
|
|
|
})
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
if (this.splitForm.routeCode == null) {
|
|
|
|
|
this.$message({
|
|
|
|
|
message: '数据不能为空!',
|
|
|
|
|
type: 'warning'
|
|
|
|
|
})
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
// 判断如果拆分数量不等于拆分批次数量之和
|
|
|
|
|
let sum = 0
|
|
|
|
|
for (let i = 0; i < this.formFields.length; i++) {
|
|
|
|
|
sum = Number(sum) + Number(this.formFields[i].batchQuantity)
|
|
|
|
|
if (this.formFields[i].batchQuantity == '' || this.formFields[i].batchQuantity == null || this.formFields[i].batchCode == null || this.formFields[i].batchCode == '') {
|
|
|
|
|
this.$message({
|
|
|
|
|
message: '批次数据不能为空',
|
|
|
|
|
type: 'warning'
|
|
|
|
|
})
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (sum != this.productData[0].atrr1) {
|
|
|
|
|
this.$message({
|
|
|
|
|
message: '批次数量之和不等于拆分数量',
|
|
|
|
|
type: 'warning'
|
|
|
|
|
})
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//下面是请求处理
|
|
|
|
|
const data = {
|
|
|
|
|
formFields: this.formFields,
|
|
|
|
|
prodLineCode: this.workForm.prodLineCode,
|
|
|
|
|
productDate: this.splitForm.productDate,
|
|
|
|
|
shiftId: this.workForm.shiftId,
|
|
|
|
|
splitNum: this.workForm.splitNum,
|
|
|
|
|
product: this.productData[0],
|
|
|
|
|
routeCode: this.workForm.routeCode,
|
|
|
|
|
proOrderWorkorder: this.selectWork
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
subChangeWorkOrder(data).then(response => {
|
|
|
|
|
if (response.code == 500) {
|
|
|
|
|
this.$modal.msgError(response.msg)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
this.$modal.msgSuccess('提交成功')
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
let id = this.productData[0].id
|
|
|
|
|
// 清除缓存
|
|
|
|
|
this.splitForm = {
|
|
|
|
|
id: null,
|
|
|
|
|
prodLineCode: null,
|
|
|
|
|
splitNum: null,
|
|
|
|
|
productDate: null,
|
|
|
|
|
shiftId: null,
|
|
|
|
|
formFields: []
|
|
|
|
|
}
|
|
|
|
|
this.formFields = [{
|
|
|
|
|
batchCode: '',
|
|
|
|
|
batchQuantity: ''
|
|
|
|
|
}]
|
|
|
|
|
|
|
|
|
|
this.getList()
|
|
|
|
|
// 等待1秒后执行的代码
|
|
|
|
|
this.open = false
|
|
|
|
|
},
|
|
|
|
|
/** 删除按钮操作 */
|
|
|
|
|
handleDelete(row) {
|
|
|
|
@ -516,4 +899,41 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|
</script>
|
|
|
|
|
<style>
|
|
|
|
|
.el-row {
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.el-col {
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.bg-purple-dark {
|
|
|
|
|
background: #99a9bf;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.bg-purple {
|
|
|
|
|
background: #d3dce6;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.bg-purple-light {
|
|
|
|
|
background: #e5e9f2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.grid-content {
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
min-height: 36px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.row-bg {
|
|
|
|
|
padding: 10px 0;
|
|
|
|
|
background-color: #f9fafc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.my-margin {
|
|
|
|
|
margin-top: 40px;
|
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|