|
|
|
|
<template>
|
|
|
|
|
<el-dialog title="详情" append-to-body :modelValue="addDialog" width="90%" @close="closeDialog" @open="open">
|
|
|
|
|
<el-descriptions :column="4" border title="物料需求信息" :label-width="150">
|
|
|
|
|
<el-descriptions-item label="作业中心">{{ addForm.bsWorkCenter?.wcName }}</el-descriptions-item>
|
|
|
|
|
<el-descriptions-item label="建立人员">{{ addForm.createUser }}</el-descriptions-item>
|
|
|
|
|
<el-descriptions-item label="建立时间">{{ addForm.createTime }}</el-descriptions-item>
|
|
|
|
|
|
|
|
|
|
<el-descriptions-item label="物料编码">{{ addForm.goodsCode }}</el-descriptions-item>
|
|
|
|
|
<el-descriptions-item label="班组实际消耗(克)">{{ addForm.teamActualConsumption }}</el-descriptions-item>
|
|
|
|
|
<el-descriptions-item label="班组预添加(克)">{{ addForm.teamPreAddGram }}</el-descriptions-item>
|
|
|
|
|
<el-descriptions-item label="物料名称">{{ addForm.goodsName }}</el-descriptions-item>
|
|
|
|
|
<el-descriptions-item label="可使用定额(克)">{{ addForm.usableQuotaGram }}</el-descriptions-item>
|
|
|
|
|
<el-descriptions-item label="累计结余(克)">{{ addForm.accumulatedBalanceGram }}</el-descriptions-item>
|
|
|
|
|
<el-descriptions-item label="本次添加涉及单号">{{ addForm.currentAddRelatedOrderNo }}</el-descriptions-item>
|
|
|
|
|
<el-descriptions-item label="本次剩余单号余量">{{ addForm.currentRemainingOrderQuota }}</el-descriptions-item>
|
|
|
|
|
|
|
|
|
|
</el-descriptions>
|
|
|
|
|
<el-descriptions class="margin-top" :column="4" border title="审批信息" v-if="addForm.bsWorkCenter">
|
|
|
|
|
<el-descriptions-item label="审批人">{{ addForm.bsWorkCenter.approverFirst }}</el-descriptions-item>
|
|
|
|
|
<el-descriptions-item label="审批时间">{{ addForm.bsWorkCenter.approvalTimeFirst }}</el-descriptions-item>
|
|
|
|
|
<el-descriptions-item label="审批结果">{{ addForm.bsWorkCenter.approvalResultFirst }}</el-descriptions-item>
|
|
|
|
|
<el-descriptions-item label="审批意见">{{ addForm.bsWorkCenter.approvalOpinionFirst }}</el-descriptions-item>
|
|
|
|
|
<!-- <el-descriptions-item label="审批人">{{ addForm.bsWorkCenter.wcName }}</el-descriptions-item>
|
|
|
|
|
<el-descriptions-item label="审批时间">{{ addForm.bsWorkCenter.wcName }}</el-descriptions-item>
|
|
|
|
|
<el-descriptions-item label="审批结果">{{ addForm.bsWorkCenter.wcName }}</el-descriptions-item>
|
|
|
|
|
<el-descriptions-item label="审批意见">{{ addForm.bsWorkCenter.wcName }}</el-descriptions-item> -->
|
|
|
|
|
<el-descriptions-item label="审批人">{{ addForm.bsWorkCenter.approverFirst }}</el-descriptions-item>
|
|
|
|
|
<el-descriptions-item label="审批时间">{{ addForm.bsWorkCenter.approvalTimeFirst }}</el-descriptions-item>
|
|
|
|
|
<el-descriptions-item label="审批结果">{{ addForm.bsWorkCenter.approvalResultFirst }}</el-descriptions-item>
|
|
|
|
|
<el-descriptions-item label="审批意见">{{ addForm.bsWorkCenter.approvalOpinionFirst }}</el-descriptions-item>
|
|
|
|
|
</el-descriptions>
|
|
|
|
|
<el-descriptions class="margin-top" :column="4" border title="订单信息">
|
|
|
|
|
|
|
|
|
|
</el-descriptions>
|
|
|
|
|
<el-table :data="tableData">
|
|
|
|
|
<el-table-column label="槽号" prop="slot" align="center"></el-table-column>
|
|
|
|
|
<el-table-column label="化验值" prop="testVal" align="center"></el-table-column>
|
|
|
|
|
<el-table-column label="申报添加金钾(克)" prop="saveGoldVal" align="center"></el-table-column>
|
|
|
|
|
<el-table-column label="申报添加银钾(克)" prop="saveSilverVal" align="center"></el-table-column>
|
|
|
|
|
<el-table-column label="理论值" prop="saveBoardVal" align="center"></el-table-column>
|
|
|
|
|
|
|
|
|
|
</el-table>
|
|
|
|
|
|
|
|
|
|
</el-dialog>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
export default {
|
|
|
|
|
props: {
|
|
|
|
|
addDialog: {
|
|
|
|
|
type: Boolean,
|
|
|
|
|
default: false
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
addForm: {},
|
|
|
|
|
sumAvailable: "0.0",
|
|
|
|
|
tableData: []
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
mounted() {
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
open() {
|
|
|
|
|
// this.addForm = {
|
|
|
|
|
// "approvalStatus": -1,
|
|
|
|
|
// "brId": null,
|
|
|
|
|
// "bsWorkCenter": {
|
|
|
|
|
// "area": 0.0,
|
|
|
|
|
// "batchNo": null,
|
|
|
|
|
// "bigBatch": false,
|
|
|
|
|
// "approverFirst": '张三',
|
|
|
|
|
// "approvalTimeFirst": '2024-12-09 11:29:20',
|
|
|
|
|
// "approvalResultFirst": '同意',
|
|
|
|
|
// "approvalOpinionFirst": 'XXx',
|
|
|
|
|
// "bsJfCenter": {
|
|
|
|
|
// "createMan": null,
|
|
|
|
|
// "createTime": null,
|
|
|
|
|
// "deleted": false,
|
|
|
|
|
// "jcCode": "SJZX",
|
|
|
|
|
// "jcId": 2,
|
|
|
|
|
// "jcName": "烧结中心",
|
|
|
|
|
// "keyValue": 2,
|
|
|
|
|
// "updateTime": null
|
|
|
|
|
// },
|
|
|
|
|
// "checkout": false,
|
|
|
|
|
// "craftAbility": "滚镀金或振镀金、超声波清洗",
|
|
|
|
|
// "createMan": {
|
|
|
|
|
// "accountId": 90,
|
|
|
|
|
// "card": null,
|
|
|
|
|
// "createTime": "2023-02-08",
|
|
|
|
|
// "curStatus": 1,
|
|
|
|
|
// "deleted": false,
|
|
|
|
|
// "deptName": null,
|
|
|
|
|
// "dimissionTime": null,
|
|
|
|
|
// "factoryId": 41,
|
|
|
|
|
// "head": 1,
|
|
|
|
|
// "jobName": "生产调度员",
|
|
|
|
|
// "keyValue": 90,
|
|
|
|
|
// "ldapName": "03891",
|
|
|
|
|
// "mail": null,
|
|
|
|
|
// "mobile": null,
|
|
|
|
|
// "pfDepartment": {
|
|
|
|
|
// "appLink": null,
|
|
|
|
|
// "createTime": "2023-02-08",
|
|
|
|
|
// "deleted": false,
|
|
|
|
|
// "deptCode": "06",
|
|
|
|
|
// "deptId": 47,
|
|
|
|
|
// "deptName": "经营管理室",
|
|
|
|
|
// "deptType": 1,
|
|
|
|
|
// "deptTypeTitle": "厂",
|
|
|
|
|
// "keyValue": 47,
|
|
|
|
|
// "memo": null,
|
|
|
|
|
// "orders": "6",
|
|
|
|
|
// "parentDeptId": 41,
|
|
|
|
|
// "parentPath": null,
|
|
|
|
|
// "ucDeptId": null,
|
|
|
|
|
// "updateTime": "2023-02-08 13:23:30"
|
|
|
|
|
// },
|
|
|
|
|
// "pinyinIndex": "03891,03891",
|
|
|
|
|
// "ucUserId": null,
|
|
|
|
|
// "updateTime": "2023-02-08 13:20:39",
|
|
|
|
|
// "userCode": "03891",
|
|
|
|
|
// "userId": 90,
|
|
|
|
|
// "userName": "03891",
|
|
|
|
|
// "userSex": 1,
|
|
|
|
|
// "userSources": "03891",
|
|
|
|
|
// "userString": "90:A:03891",
|
|
|
|
|
// "userType": "A"
|
|
|
|
|
// },
|
|
|
|
|
// "createTime": "2023-04-13 15:23:21",
|
|
|
|
|
// "deleted": false,
|
|
|
|
|
// "describe": null,
|
|
|
|
|
// "endPoint": null,
|
|
|
|
|
// "keyValue": 162,
|
|
|
|
|
// "leaderUser": {
|
|
|
|
|
// "accountId": 541,
|
|
|
|
|
// "card": null,
|
|
|
|
|
// "createTime": "2023-05-04",
|
|
|
|
|
// "curStatus": 1,
|
|
|
|
|
// "deleted": false,
|
|
|
|
|
// "deptName": null,
|
|
|
|
|
// "dimissionTime": null,
|
|
|
|
|
// "factoryId": 102,
|
|
|
|
|
// "head": 0,
|
|
|
|
|
// "jobName": "MES开发",
|
|
|
|
|
// "keyValue": 541,
|
|
|
|
|
// "ldapName": "cdl",
|
|
|
|
|
// "mail": null,
|
|
|
|
|
// "mobile": null,
|
|
|
|
|
// "pfDepartment": {
|
|
|
|
|
// "appLink": null,
|
|
|
|
|
// "createTime": "2022-08-31",
|
|
|
|
|
// "deleted": false,
|
|
|
|
|
// "deptCode": "001",
|
|
|
|
|
// "deptId": 1,
|
|
|
|
|
// "deptName": "MES开发部",
|
|
|
|
|
// "deptType": 1,
|
|
|
|
|
// "deptTypeTitle": "厂",
|
|
|
|
|
// "keyValue": 1,
|
|
|
|
|
// "memo": null,
|
|
|
|
|
// "orders": "00",
|
|
|
|
|
// "parentDeptId": null,
|
|
|
|
|
// "parentPath": null,
|
|
|
|
|
// "ucDeptId": null,
|
|
|
|
|
// "updateTime": "2022-08-31 16:32:46"
|
|
|
|
|
// },
|
|
|
|
|
// "pinyinIndex": "CUIDIANLONG,CDL",
|
|
|
|
|
// "ucUserId": null,
|
|
|
|
|
// "updateTime": "2023-05-04 09:16:54",
|
|
|
|
|
// "userCode": "cdl",
|
|
|
|
|
// "userId": 541,
|
|
|
|
|
// "userName": "崔殿龙",
|
|
|
|
|
// "userSex": 1,
|
|
|
|
|
// "userSources": "崔殿龙",
|
|
|
|
|
// "userString": "541:A:崔殿龙",
|
|
|
|
|
// "userType": "A"
|
|
|
|
|
// },
|
|
|
|
|
// "limitType": 0,
|
|
|
|
|
// "processes": " ",
|
|
|
|
|
// "quantity": 0,
|
|
|
|
|
// "roundCycle": null,
|
|
|
|
|
// "saturation": 0.0,
|
|
|
|
|
// "sign": "4",
|
|
|
|
|
// "startPoint": null,
|
|
|
|
|
// "team": "镀金二班白龙喜、镀金二班杜宁",
|
|
|
|
|
// "updateTime": "2024-12-09 11:29:20",
|
|
|
|
|
// "wcCode": "009",
|
|
|
|
|
// "wcId": 162,
|
|
|
|
|
// "wcName": "镀金小批量作业中心",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// "whetherPlate": false
|
|
|
|
|
// },
|
|
|
|
|
// "businessBeanCreateDate": "2025-10-12 13:37:24",
|
|
|
|
|
// "businessBeanCreateMan": {
|
|
|
|
|
// "accountId": 541,
|
|
|
|
|
// "card": null,
|
|
|
|
|
// "createTime": "2023-05-04",
|
|
|
|
|
// "curStatus": 1,
|
|
|
|
|
// "deleted": false,
|
|
|
|
|
// "deptName": null,
|
|
|
|
|
// "dimissionTime": null,
|
|
|
|
|
// "factoryId": 102,
|
|
|
|
|
// "head": 0,
|
|
|
|
|
// "jobName": "MES开发",
|
|
|
|
|
// "keyValue": 541,
|
|
|
|
|
// "ldapName": "cdl",
|
|
|
|
|
// "mail": null,
|
|
|
|
|
// "mobile": null,
|
|
|
|
|
// "pfDepartment": {
|
|
|
|
|
// "appLink": null,
|
|
|
|
|
// "createTime": "2022-08-31",
|
|
|
|
|
// "deleted": false,
|
|
|
|
|
// "deptCode": "001",
|
|
|
|
|
// "deptId": 1,
|
|
|
|
|
// "deptName": "MES开发部",
|
|
|
|
|
// "deptType": 1,
|
|
|
|
|
// "deptTypeTitle": "厂",
|
|
|
|
|
// "keyValue": 1,
|
|
|
|
|
// "memo": null,
|
|
|
|
|
// "orders": "00",
|
|
|
|
|
// "parentDeptId": null,
|
|
|
|
|
// "parentPath": null,
|
|
|
|
|
// "ucDeptId": null,
|
|
|
|
|
// "updateTime": "2022-08-31 16:32:46"
|
|
|
|
|
// },
|
|
|
|
|
// "pinyinIndex": "CUIDIANLONG,CDL",
|
|
|
|
|
// "ucUserId": null,
|
|
|
|
|
// "updateTime": "2023-05-04 09:16:54",
|
|
|
|
|
// "userCode": "cdl",
|
|
|
|
|
// "userId": 541,
|
|
|
|
|
// "userName": "崔殿龙",
|
|
|
|
|
// "userSex": 1,
|
|
|
|
|
// "userSources": "崔殿龙",
|
|
|
|
|
// "userString": "541:A:崔殿龙",
|
|
|
|
|
// "userType": "A"
|
|
|
|
|
// },
|
|
|
|
|
// "businessBeanCurStatus": -1,
|
|
|
|
|
// "codeNum": "单号:20230830001 余量:100.0、 ",
|
|
|
|
|
// "createMan": {
|
|
|
|
|
// "accountId": 541,
|
|
|
|
|
// "card": null,
|
|
|
|
|
// "createTime": "2023-05-04",
|
|
|
|
|
// "curStatus": 1,
|
|
|
|
|
// "deleted": false,
|
|
|
|
|
// "deptName": null,
|
|
|
|
|
// "dimissionTime": null,
|
|
|
|
|
// "factoryId": 102,
|
|
|
|
|
// "head": 0,
|
|
|
|
|
// "jobName": "MES开发",
|
|
|
|
|
// "keyValue": 541,
|
|
|
|
|
// "ldapName": "cdl",
|
|
|
|
|
// "mail": null,
|
|
|
|
|
// "mobile": null,
|
|
|
|
|
// "pfDepartment": {
|
|
|
|
|
// "appLink": null,
|
|
|
|
|
// "createTime": "2022-08-31",
|
|
|
|
|
// "deleted": false,
|
|
|
|
|
// "deptCode": "001",
|
|
|
|
|
// "deptId": 1,
|
|
|
|
|
// "deptName": "MES开发部",
|
|
|
|
|
// "deptType": 1,
|
|
|
|
|
// "deptTypeTitle": "厂",
|
|
|
|
|
// "keyValue": 1,
|
|
|
|
|
// "memo": null,
|
|
|
|
|
// "orders": "00",
|
|
|
|
|
// "parentDeptId": null,
|
|
|
|
|
// "parentPath": null,
|
|
|
|
|
// "ucDeptId": null,
|
|
|
|
|
// "updateTime": "2022-08-31 16:32:46"
|
|
|
|
|
// },
|
|
|
|
|
// "pinyinIndex": "CUIDIANLONG,CDL",
|
|
|
|
|
// "ucUserId": null,
|
|
|
|
|
// "updateTime": "2023-05-04 09:16:54",
|
|
|
|
|
// "userCode": "cdl",
|
|
|
|
|
// "userId": 541,
|
|
|
|
|
// "userName": "崔殿龙",
|
|
|
|
|
// "userSex": 1,
|
|
|
|
|
// "userSources": "崔殿龙",
|
|
|
|
|
// "userString": "541:A:崔殿龙",
|
|
|
|
|
// "userType": "A"
|
|
|
|
|
// },
|
|
|
|
|
// "createTime": "2025-10-12 13:37:24",
|
|
|
|
|
// "dsAssayContent": {
|
|
|
|
|
// "acId": 41,
|
|
|
|
|
// "applyStatus": 1,
|
|
|
|
|
// "assayMan": {
|
|
|
|
|
// "accountId": 541,
|
|
|
|
|
// "card": null,
|
|
|
|
|
// "createTime": "2023-05-04",
|
|
|
|
|
// "curStatus": 1,
|
|
|
|
|
// "deleted": false,
|
|
|
|
|
// "deptName": null,
|
|
|
|
|
// "dimissionTime": null,
|
|
|
|
|
// "factoryId": 102,
|
|
|
|
|
// "head": 0,
|
|
|
|
|
// "jobName": "MES开发",
|
|
|
|
|
// "keyValue": 541,
|
|
|
|
|
// "ldapName": "cdl",
|
|
|
|
|
// "mail": null,
|
|
|
|
|
// "mobile": null,
|
|
|
|
|
// "pfDepartment": {
|
|
|
|
|
// "appLink": null,
|
|
|
|
|
// "createTime": "2022-08-31",
|
|
|
|
|
// "deleted": false,
|
|
|
|
|
// "deptCode": "001",
|
|
|
|
|
// "deptId": 1,
|
|
|
|
|
// "deptName": "MES开发部",
|
|
|
|
|
// "deptType": 1,
|
|
|
|
|
// "deptTypeTitle": "厂",
|
|
|
|
|
// "keyValue": 1,
|
|
|
|
|
// "memo": null,
|
|
|
|
|
// "orders": "00",
|
|
|
|
|
// "parentDeptId": null,
|
|
|
|
|
// "parentPath": null,
|
|
|
|
|
// "ucDeptId": null,
|
|
|
|
|
// "updateTime": "2022-08-31 16:32:46"
|
|
|
|
|
// },
|
|
|
|
|
// "pinyinIndex": "CUIDIANLONG,CDL",
|
|
|
|
|
// "ucUserId": null,
|
|
|
|
|
// "updateTime": "2023-05-04 09:16:54",
|
|
|
|
|
// "userCode": "cdl",
|
|
|
|
|
// "userId": 541,
|
|
|
|
|
// "userName": "崔殿龙",
|
|
|
|
|
// "userSex": 1,
|
|
|
|
|
// "userSources": "崔殿龙",
|
|
|
|
|
// "userString": "541:A:崔殿龙",
|
|
|
|
|
// "userType": "A"
|
|
|
|
|
// },
|
|
|
|
|
// "assayTime": "2023-10-10 13:33:12",
|
|
|
|
|
// "createMan": {
|
|
|
|
|
// "accountId": 541,
|
|
|
|
|
// "card": null,
|
|
|
|
|
// "createTime": "2023-05-04",
|
|
|
|
|
// "curStatus": 1,
|
|
|
|
|
// "deleted": false,
|
|
|
|
|
// "deptName": null,
|
|
|
|
|
// "dimissionTime": null,
|
|
|
|
|
// "factoryId": 102,
|
|
|
|
|
// "head": 0,
|
|
|
|
|
// "jobName": "MES开发",
|
|
|
|
|
// "keyValue": 541,
|
|
|
|
|
// "ldapName": "cdl",
|
|
|
|
|
// "mail": null,
|
|
|
|
|
// "mobile": null,
|
|
|
|
|
// "pfDepartment": {
|
|
|
|
|
// "appLink": null,
|
|
|
|
|
// "createTime": "2022-08-31",
|
|
|
|
|
// "deleted": false,
|
|
|
|
|
// "deptCode": "001",
|
|
|
|
|
// "deptId": 1,
|
|
|
|
|
// "deptName": "MES开发部",
|
|
|
|
|
// "deptType": 1,
|
|
|
|
|
// "deptTypeTitle": "厂",
|
|
|
|
|
// "keyValue": 1,
|
|
|
|
|
// "memo": null,
|
|
|
|
|
// "orders": "00",
|
|
|
|
|
// "parentDeptId": null,
|
|
|
|
|
// "parentPath": null,
|
|
|
|
|
// "ucDeptId": null,
|
|
|
|
|
// "updateTime": "2022-08-31 16:32:46"
|
|
|
|
|
// },
|
|
|
|
|
// "pinyinIndex": "CUIDIANLONG,CDL",
|
|
|
|
|
// "ucUserId": null,
|
|
|
|
|
// "updateTime": "2023-05-04 09:16:54",
|
|
|
|
|
// "userCode": "cdl",
|
|
|
|
|
// "userId": 541,
|
|
|
|
|
// "userName": "崔殿龙",
|
|
|
|
|
// "userSex": 1,
|
|
|
|
|
// "userSources": "崔殿龙",
|
|
|
|
|
// "userString": "541:A:崔殿龙",
|
|
|
|
|
// "userType": "A"
|
|
|
|
|
// },
|
|
|
|
|
// "goldPotassium": 1.0,
|
|
|
|
|
// "keyValue": 41,
|
|
|
|
|
// "silverPlate": 0.0,
|
|
|
|
|
// "silverPotassium": 0.0,
|
|
|
|
|
// "totalNum": 1.0,
|
|
|
|
|
// "workCenter": {
|
|
|
|
|
// "area": 13000.0,
|
|
|
|
|
// "batchNo": null,
|
|
|
|
|
// "bigBatch": false,
|
|
|
|
|
// "bsJfCenter": {
|
|
|
|
|
// "createMan": {
|
|
|
|
|
// "accountId": null,
|
|
|
|
|
// "card": null,
|
|
|
|
|
// "createTime": "2022-08-31",
|
|
|
|
|
// "curStatus": 1,
|
|
|
|
|
// "deleted": false,
|
|
|
|
|
// "deptName": null,
|
|
|
|
|
// "dimissionTime": null,
|
|
|
|
|
// "factoryId": 41,
|
|
|
|
|
// "head": 0,
|
|
|
|
|
// "jobName": "总工",
|
|
|
|
|
// "keyValue": 1,
|
|
|
|
|
// "ldapName": "admin",
|
|
|
|
|
// "mail": "13699999999@136.com",
|
|
|
|
|
// "mobile": "13699999999",
|
|
|
|
|
// "pfDepartment": {
|
|
|
|
|
// "appLink": null,
|
|
|
|
|
// "createTime": "2022-08-31",
|
|
|
|
|
// "deleted": false,
|
|
|
|
|
// "deptCode": "001",
|
|
|
|
|
// "deptId": 1,
|
|
|
|
|
// "deptName": "MES开发部",
|
|
|
|
|
// "deptType": 1,
|
|
|
|
|
// "deptTypeTitle": "厂",
|
|
|
|
|
// "keyValue": 1,
|
|
|
|
|
// "memo": null,
|
|
|
|
|
// "orders": "00",
|
|
|
|
|
// "parentDeptId": null,
|
|
|
|
|
// "parentPath": null,
|
|
|
|
|
// "ucDeptId": null,
|
|
|
|
|
// "updateTime": "2022-08-31 16:32:46"
|
|
|
|
|
// },
|
|
|
|
|
// "pinyinIndex": "ADMIN,ADMIN",
|
|
|
|
|
// "ucUserId": null,
|
|
|
|
|
// "updateTime": "2022-08-31 16:32:46",
|
|
|
|
|
// "userCode": "00",
|
|
|
|
|
// "userId": 1,
|
|
|
|
|
// "userName": "admin",
|
|
|
|
|
// "userSex": 1,
|
|
|
|
|
// "userSources": "admin",
|
|
|
|
|
// "userString": "1:A:admin",
|
|
|
|
|
// "userType": "A"
|
|
|
|
|
// },
|
|
|
|
|
// "createTime": "2024-12-09 00:00:00",
|
|
|
|
|
// "deleted": false,
|
|
|
|
|
// "jcCode": "RBZX",
|
|
|
|
|
// "jcId": 1,
|
|
|
|
|
// "jcName": "热表中心",
|
|
|
|
|
// "keyValue": 1,
|
|
|
|
|
// "updateTime": "2024-12-09 00:00:00"
|
|
|
|
|
// },
|
|
|
|
|
// "checkout": false,
|
|
|
|
|
// "craftAbility": "化学镀镍",
|
|
|
|
|
// "createMan": {
|
|
|
|
|
// "accountId": null,
|
|
|
|
|
// "card": null,
|
|
|
|
|
// "createTime": "2022-08-31",
|
|
|
|
|
// "curStatus": 1,
|
|
|
|
|
// "deleted": false,
|
|
|
|
|
// "deptName": null,
|
|
|
|
|
// "dimissionTime": null,
|
|
|
|
|
// "factoryId": 41,
|
|
|
|
|
// "head": 0,
|
|
|
|
|
// "jobName": "总工",
|
|
|
|
|
// "keyValue": 1,
|
|
|
|
|
// "ldapName": "admin",
|
|
|
|
|
// "mail": "13699999999@136.com",
|
|
|
|
|
// "mobile": "13699999999",
|
|
|
|
|
// "pfDepartment": {
|
|
|
|
|
// "appLink": null,
|
|
|
|
|
// "createTime": "2022-08-31",
|
|
|
|
|
// "deleted": false,
|
|
|
|
|
// "deptCode": "001",
|
|
|
|
|
// "deptId": 1,
|
|
|
|
|
// "deptName": "MES开发部",
|
|
|
|
|
// "deptType": 1,
|
|
|
|
|
// "deptTypeTitle": "厂",
|
|
|
|
|
// "keyValue": 1,
|
|
|
|
|
// "memo": null,
|
|
|
|
|
// "orders": "00",
|
|
|
|
|
// "parentDeptId": null,
|
|
|
|
|
// "parentPath": null,
|
|
|
|
|
// "ucDeptId": null,
|
|
|
|
|
// "updateTime": "2022-08-31 16:32:46"
|
|
|
|
|
// },
|
|
|
|
|
// "pinyinIndex": "ADMIN,ADMIN",
|
|
|
|
|
// "ucUserId": null,
|
|
|
|
|
// "updateTime": "2022-08-31 16:32:46",
|
|
|
|
|
// "userCode": "00",
|
|
|
|
|
// "userId": 1,
|
|
|
|
|
// "userName": "admin",
|
|
|
|
|
// "userSex": 1,
|
|
|
|
|
// "userSources": "admin",
|
|
|
|
|
// "userString": "1:A:admin",
|
|
|
|
|
// "userType": "A"
|
|
|
|
|
// },
|
|
|
|
|
// "createTime": "2023-02-06 12:31:36",
|
|
|
|
|
// "deleted": false,
|
|
|
|
|
// "describe": null,
|
|
|
|
|
// "endPoint": null,
|
|
|
|
|
// "keyValue": 81,
|
|
|
|
|
// "leaderUser": {
|
|
|
|
|
// "accountId": 541,
|
|
|
|
|
// "card": null,
|
|
|
|
|
// "createTime": "2023-05-04",
|
|
|
|
|
// "curStatus": 1,
|
|
|
|
|
// "deleted": false,
|
|
|
|
|
// "deptName": null,
|
|
|
|
|
// "dimissionTime": null,
|
|
|
|
|
// "factoryId": 102,
|
|
|
|
|
// "head": 0,
|
|
|
|
|
// "jobName": "MES开发",
|
|
|
|
|
// "keyValue": 541,
|
|
|
|
|
// "ldapName": "cdl",
|
|
|
|
|
// "mail": null,
|
|
|
|
|
// "mobile": null,
|
|
|
|
|
// "pfDepartment": {
|
|
|
|
|
// "appLink": null,
|
|
|
|
|
// "createTime": "2022-08-31",
|
|
|
|
|
// "deleted": false,
|
|
|
|
|
// "deptCode": "001",
|
|
|
|
|
// "deptId": 1,
|
|
|
|
|
// "deptName": "MES开发部",
|
|
|
|
|
// "deptType": 1,
|
|
|
|
|
// "deptTypeTitle": "厂",
|
|
|
|
|
// "keyValue": 1,
|
|
|
|
|
// "memo": null,
|
|
|
|
|
// "orders": "00",
|
|
|
|
|
// "parentDeptId": null,
|
|
|
|
|
// "parentPath": null,
|
|
|
|
|
// "ucDeptId": null,
|
|
|
|
|
// "updateTime": "2022-08-31 16:32:46"
|
|
|
|
|
// },
|
|
|
|
|
// "pinyinIndex": "CUIDIANLONG,CDL",
|
|
|
|
|
// "ucUserId": null,
|
|
|
|
|
// "updateTime": "2023-05-04 09:16:54",
|
|
|
|
|
// "userCode": "cdl",
|
|
|
|
|
// "userId": 541,
|
|
|
|
|
// "userName": "崔殿龙",
|
|
|
|
|
// "userSex": 1,
|
|
|
|
|
// "userSources": "崔殿龙",
|
|
|
|
|
// "userString": "541:A:崔殿龙",
|
|
|
|
|
// "userType": "A"
|
|
|
|
|
// },
|
|
|
|
|
// "limitType": 0,
|
|
|
|
|
// "processes": "上挂、下挂、交检、化学镀镍、喷砂",
|
|
|
|
|
// "quantity": null,
|
|
|
|
|
// "roundCycle": null,
|
|
|
|
|
// "saturation": 85.0,
|
|
|
|
|
// "sign": "4",
|
|
|
|
|
// "startPoint": null,
|
|
|
|
|
// "team": "化学镀镍一班崔胜伟、化学镀镍一班郭家梁",
|
|
|
|
|
// "updateTime": "2023-03-06 18:42:47",
|
|
|
|
|
// "wcCode": "001",
|
|
|
|
|
// "wcId": 81,
|
|
|
|
|
// "wcName": "化学镀镍作业中心",
|
|
|
|
|
// "whetherPlate": false
|
|
|
|
|
// }
|
|
|
|
|
// },
|
|
|
|
|
// "flowCode": "FLOW_PR_002",
|
|
|
|
|
// "flowRecDescription": "用于特殊镀层物料申报添加量的审核",
|
|
|
|
|
// "goodsCode": "04-05-023",
|
|
|
|
|
// "goodsDemand": 1.0,
|
|
|
|
|
// "goodsName": "氰化亚金钾",
|
|
|
|
|
// "teamPreAddGram": 10,
|
|
|
|
|
// "usableQuotaGram": 10,
|
|
|
|
|
// "accumulatedBalanceGram": 10,
|
|
|
|
|
// "currentAddRelatedOrderNo": '',
|
|
|
|
|
// "currentRemainingOrderQuota": 10,
|
|
|
|
|
// "involveCode": "20230830001、",
|
|
|
|
|
// "keyValue": 4,
|
|
|
|
|
// "pgaId": 4,
|
|
|
|
|
// "prPlateGoodsRecord": {
|
|
|
|
|
// "approvalStatus": -1,
|
|
|
|
|
// "bsWorkCenter1": {
|
|
|
|
|
// "area": 0.0,
|
|
|
|
|
// "batchNo": null,
|
|
|
|
|
// "bigBatch": true,
|
|
|
|
|
// "bsJfCenter": {
|
|
|
|
|
// "createMan": {
|
|
|
|
|
// "accountId": null,
|
|
|
|
|
// "card": null,
|
|
|
|
|
// "createTime": "2022-08-31",
|
|
|
|
|
// "curStatus": 1,
|
|
|
|
|
// "deleted": false,
|
|
|
|
|
// "deptName": null,
|
|
|
|
|
// "dimissionTime": null,
|
|
|
|
|
// "factoryId": 41,
|
|
|
|
|
// "head": 0,
|
|
|
|
|
// "jobName": "总工",
|
|
|
|
|
// "keyValue": 1,
|
|
|
|
|
// "ldapName": "admin",
|
|
|
|
|
// "mail": "13699999999@136.com",
|
|
|
|
|
// "mobile": "13699999999",
|
|
|
|
|
// "pfDepartment": {
|
|
|
|
|
// "appLink": null,
|
|
|
|
|
// "createTime": "2022-08-31",
|
|
|
|
|
// "deleted": false,
|
|
|
|
|
// "deptCode": "001",
|
|
|
|
|
// "deptId": 1,
|
|
|
|
|
// "deptName": "MES开发部",
|
|
|
|
|
// "deptType": 1,
|
|
|
|
|
// "deptTypeTitle": "厂",
|
|
|
|
|
// "keyValue": 1,
|
|
|
|
|
// "memo": null,
|
|
|
|
|
// "orders": "00",
|
|
|
|
|
// "parentDeptId": null,
|
|
|
|
|
// "parentPath": null,
|
|
|
|
|
// "ucDeptId": null,
|
|
|
|
|
// "updateTime": "2022-08-31 16:32:46"
|
|
|
|
|
// },
|
|
|
|
|
// "pinyinIndex": "ADMIN,ADMIN",
|
|
|
|
|
// "ucUserId": null,
|
|
|
|
|
// "updateTime": "2022-08-31 16:32:46",
|
|
|
|
|
// "userCode": "00",
|
|
|
|
|
// "userId": 1,
|
|
|
|
|
// "userName": "admin",
|
|
|
|
|
// "userSex": 1,
|
|
|
|
|
// "userSources": "admin",
|
|
|
|
|
// "userString": "1:A:admin",
|
|
|
|
|
// "userType": "A"
|
|
|
|
|
// },
|
|
|
|
|
// "createTime": "2024-12-09 00:00:00",
|
|
|
|
|
// "deleted": false,
|
|
|
|
|
// "jcCode": "RBZX",
|
|
|
|
|
// "jcId": 1,
|
|
|
|
|
// "jcName": "热表中心",
|
|
|
|
|
// "keyValue": 1,
|
|
|
|
|
// "updateTime": "2024-12-09 00:00:00",
|
|
|
|
|
// },
|
|
|
|
|
// "checkout": false,
|
|
|
|
|
// "craftAbility": "滚镀金或振镀金",
|
|
|
|
|
// "createMan": {
|
|
|
|
|
// "accountId": 90,
|
|
|
|
|
// "card": null,
|
|
|
|
|
// "createTime": "2023-02-08",
|
|
|
|
|
// "curStatus": 1,
|
|
|
|
|
// "deleted": false,
|
|
|
|
|
// "deptName": null,
|
|
|
|
|
// "dimissionTime": null,
|
|
|
|
|
// "factoryId": 41,
|
|
|
|
|
// "head": 1,
|
|
|
|
|
// "jobName": "生产调度员",
|
|
|
|
|
// "keyValue": 90,
|
|
|
|
|
// "ldapName": "03891",
|
|
|
|
|
// "mail": null,
|
|
|
|
|
// "mobile": null,
|
|
|
|
|
// "pfDepartment": {
|
|
|
|
|
// "appLink": null,
|
|
|
|
|
// "createTime": "2023-02-08",
|
|
|
|
|
// "deleted": false,
|
|
|
|
|
// "deptCode": "06",
|
|
|
|
|
// "deptId": 47,
|
|
|
|
|
// "deptName": "经营管理室",
|
|
|
|
|
// "deptType": 1,
|
|
|
|
|
// "deptTypeTitle": "厂",
|
|
|
|
|
// "keyValue": 47,
|
|
|
|
|
// "memo": null,
|
|
|
|
|
// "orders": "6",
|
|
|
|
|
// "parentDeptId": 41,
|
|
|
|
|
// "parentPath": null,
|
|
|
|
|
// "ucDeptId": null,
|
|
|
|
|
// "updateTime": "2023-02-08 13:23:30"
|
|
|
|
|
// },
|
|
|
|
|
// "pinyinIndex": "03891,03891",
|
|
|
|
|
// "ucUserId": null,
|
|
|
|
|
// "updateTime": "2023-02-08 13:20:39",
|
|
|
|
|
// "userCode": "03891",
|
|
|
|
|
// "userId": 90,
|
|
|
|
|
// "userName": "03891",
|
|
|
|
|
// "userSex": 1,
|
|
|
|
|
// "userSources": "03891",
|
|
|
|
|
// "userString": "90:A:03891",
|
|
|
|
|
// "userType": "A"
|
|
|
|
|
// },
|
|
|
|
|
// "createTime": "2023-03-16 12:26:16",
|
|
|
|
|
// "deleted": false,
|
|
|
|
|
// "describe": null,
|
|
|
|
|
// "endPoint": null,
|
|
|
|
|
// "keyValue": 122,
|
|
|
|
|
// "leaderUser": {
|
|
|
|
|
// "accountId": 541,
|
|
|
|
|
// "card": null,
|
|
|
|
|
// "createTime": "2023-05-04",
|
|
|
|
|
// "curStatus": 1,
|
|
|
|
|
// "deleted": false,
|
|
|
|
|
// "deptName": null,
|
|
|
|
|
// "dimissionTime": null,
|
|
|
|
|
// "factoryId": 102,
|
|
|
|
|
// "head": 0,
|
|
|
|
|
// "jobName": "MES开发",
|
|
|
|
|
// "keyValue": 541,
|
|
|
|
|
// "ldapName": "cdl",
|
|
|
|
|
// "mail": null,
|
|
|
|
|
// "mobile": null,
|
|
|
|
|
// "pfDepartment": {
|
|
|
|
|
// "appLink": null,
|
|
|
|
|
// "createTime": "2022-08-31",
|
|
|
|
|
// "deleted": false,
|
|
|
|
|
// "deptCode": "001",
|
|
|
|
|
// "deptId": 1,
|
|
|
|
|
// "deptName": "MES开发部",
|
|
|
|
|
// "deptType": 1,
|
|
|
|
|
// "deptTypeTitle": "厂",
|
|
|
|
|
// "keyValue": 1,
|
|
|
|
|
// "memo": null,
|
|
|
|
|
// "orders": "00",
|
|
|
|
|
// "parentDeptId": null,
|
|
|
|
|
// "parentPath": null,
|
|
|
|
|
// "ucDeptId": null,
|
|
|
|
|
// "updateTime": "2022-08-31 16:32:46"
|
|
|
|
|
// },
|
|
|
|
|
// "pinyinIndex": "CUIDIANLONG,CDL",
|
|
|
|
|
// "ucUserId": null,
|
|
|
|
|
// "updateTime": "2023-05-04 09:16:54",
|
|
|
|
|
// "userCode": "cdl",
|
|
|
|
|
// "userId": 541,
|
|
|
|
|
// "userName": "崔殿龙",
|
|
|
|
|
// "userSex": 1,
|
|
|
|
|
// "userSources": "崔殿龙",
|
|
|
|
|
// "userString": "541:A:崔殿龙",
|
|
|
|
|
// "userType": "A"
|
|
|
|
|
// },
|
|
|
|
|
// "limitType": 0,
|
|
|
|
|
// "processes": " ",
|
|
|
|
|
// "quantity": 0,
|
|
|
|
|
// "roundCycle": null,
|
|
|
|
|
// "saturation": 0.0,
|
|
|
|
|
// "sign": "4",
|
|
|
|
|
// "startPoint": null,
|
|
|
|
|
// "team": "镀金一班郭千千、镀金一班张二帅",
|
|
|
|
|
// "updateTime": "2023-03-16 12:26:16",
|
|
|
|
|
// "wcCode": "008",
|
|
|
|
|
// "wcId": 122,
|
|
|
|
|
// "wcName": "镀金大批量作业中心",
|
|
|
|
|
// "whetherPlate": false
|
|
|
|
|
// },
|
|
|
|
|
// "businessBeanCreateDate": "2025-02-20 17:16:55",
|
|
|
|
|
// "businessBeanCreateMan": {
|
|
|
|
|
// "accountId": 541,
|
|
|
|
|
// "card": null,
|
|
|
|
|
// "createTime": "2023-05-04",
|
|
|
|
|
// "curStatus": 1,
|
|
|
|
|
// "deleted": false,
|
|
|
|
|
// "deptName": null,
|
|
|
|
|
// "dimissionTime": null,
|
|
|
|
|
// "factoryId": 102,
|
|
|
|
|
// "head": 0,
|
|
|
|
|
// "jobName": "MES开发",
|
|
|
|
|
// "keyValue": 541,
|
|
|
|
|
// "ldapName": "cdl",
|
|
|
|
|
// "mail": null,
|
|
|
|
|
// "mobile": null,
|
|
|
|
|
// "pfDepartment": {
|
|
|
|
|
// "appLink": null,
|
|
|
|
|
// "createTime": "2022-08-31",
|
|
|
|
|
// "deleted": false,
|
|
|
|
|
// "deptCode": "001",
|
|
|
|
|
// "deptId": 1,
|
|
|
|
|
// "deptName": "MES开发部",
|
|
|
|
|
// "deptType": 1,
|
|
|
|
|
// "deptTypeTitle": "厂",
|
|
|
|
|
// "keyValue": 1,
|
|
|
|
|
// "memo": null,
|
|
|
|
|
// "orders": "00",
|
|
|
|
|
// "parentDeptId": null,
|
|
|
|
|
// "parentPath": null,
|
|
|
|
|
// "ucDeptId": null,
|
|
|
|
|
// "updateTime": "2022-08-31 16:32:46"
|
|
|
|
|
// },
|
|
|
|
|
// "pinyinIndex": "CUIDIANLONG,CDL",
|
|
|
|
|
// "ucUserId": null,
|
|
|
|
|
// "updateTime": "2023-05-04 09:16:54",
|
|
|
|
|
// "userCode": "cdl",
|
|
|
|
|
// "userId": 541,
|
|
|
|
|
// "userName": "崔殿龙",
|
|
|
|
|
// "userSex": 1,
|
|
|
|
|
// "userSources": "崔殿龙",
|
|
|
|
|
// "userString": "541:A:崔殿龙",
|
|
|
|
|
// "userType": "A"
|
|
|
|
|
// },
|
|
|
|
|
// "businessBeanCurStatus": -1,
|
|
|
|
|
// "coefficient": 0.0,
|
|
|
|
|
// "coefficientBoId": null,
|
|
|
|
|
// "createMan": {
|
|
|
|
|
// "accountId": 541,
|
|
|
|
|
// "card": null,
|
|
|
|
|
// "createTime": "2023-05-04",
|
|
|
|
|
// "curStatus": 1,
|
|
|
|
|
// "deleted": false,
|
|
|
|
|
// "deptName": null,
|
|
|
|
|
// "dimissionTime": null,
|
|
|
|
|
// "factoryId": 102,
|
|
|
|
|
// "head": 0,
|
|
|
|
|
// "jobName": "MES开发",
|
|
|
|
|
// "keyValue": 541,
|
|
|
|
|
// "ldapName": "cdl",
|
|
|
|
|
// "mail": null,
|
|
|
|
|
// "mobile": null,
|
|
|
|
|
// "pfDepartment": {
|
|
|
|
|
// "appLink": null,
|
|
|
|
|
// "createTime": "2022-08-31",
|
|
|
|
|
// "deleted": false,
|
|
|
|
|
// "deptCode": "001",
|
|
|
|
|
// "deptId": 1,
|
|
|
|
|
// "deptName": "MES开发部",
|
|
|
|
|
// "deptType": 1,
|
|
|
|
|
// "deptTypeTitle": "厂",
|
|
|
|
|
// "keyValue": 1,
|
|
|
|
|
// "memo": null,
|
|
|
|
|
// "orders": "00",
|
|
|
|
|
// "parentDeptId": null,
|
|
|
|
|
// "parentPath": null,
|
|
|
|
|
// "ucDeptId": null,
|
|
|
|
|
// "updateTime": "2022-08-31 16:32:46"
|
|
|
|
|
// },
|
|
|
|
|
// "pinyinIndex": "CUIDIANLONG,CDL",
|
|
|
|
|
// "ucUserId": null,
|
|
|
|
|
// "updateTime": "2023-05-04 09:16:54",
|
|
|
|
|
// "userCode": "cdl",
|
|
|
|
|
// "userId": 541,
|
|
|
|
|
// "userName": "崔殿龙",
|
|
|
|
|
// "userSex": 1,
|
|
|
|
|
// "userSources": "崔殿龙",
|
|
|
|
|
// "userString": "541:A:崔殿龙",
|
|
|
|
|
// "userType": "A"
|
|
|
|
|
// },
|
|
|
|
|
// "createTime": "2025-02-20 17:16:55",
|
|
|
|
|
// "declaredQuota": 0.0,
|
|
|
|
|
// "declaredSilver": 0.0,
|
|
|
|
|
// "declaredStatus": 0,
|
|
|
|
|
// "flowCode": "FLOW_PR_001",
|
|
|
|
|
// "flowRecDescription": "镀层物料上报额外需求审批",
|
|
|
|
|
// "goodsBoId": null,
|
|
|
|
|
// "goodsDemand": 0.0,
|
|
|
|
|
// "goodsDemandResidue": 0.0,
|
|
|
|
|
// "goodsName": "氰化亚金钾",
|
|
|
|
|
// "keyValue": 1,
|
|
|
|
|
// "orderNeed": 0.0,
|
|
|
|
|
// "orderSurplus": 0.0,
|
|
|
|
|
// "pgrCode": "20250220001",
|
|
|
|
|
// "pgrId": 1,
|
|
|
|
|
// "plateGoodsCode": "04-05-023",
|
|
|
|
|
// "silverPotassium": 0,
|
|
|
|
|
// "silverPotassiumResidue": 0.0,
|
|
|
|
|
// "surplus": 0.0
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
// this.tableData = [
|
|
|
|
|
// {
|
|
|
|
|
// "acdId": 41,
|
|
|
|
|
// "actualVal": 0.0,
|
|
|
|
|
// "dsAssayContent": {
|
|
|
|
|
// "acId": 41,
|
|
|
|
|
// "applyStatus": 1,
|
|
|
|
|
// "assayMan": {
|
|
|
|
|
// "accountId": 541,
|
|
|
|
|
// "card": null,
|
|
|
|
|
// "createTime": "2023-05-04",
|
|
|
|
|
// "curStatus": 1,
|
|
|
|
|
// "deleted": false,
|
|
|
|
|
// "deptName": null,
|
|
|
|
|
// "dimissionTime": null,
|
|
|
|
|
// "factoryId": 102,
|
|
|
|
|
// "head": 0,
|
|
|
|
|
// "jobName": "MES开发",
|
|
|
|
|
// "keyValue": 541,
|
|
|
|
|
// "ldapName": "cdl",
|
|
|
|
|
// "mail": null,
|
|
|
|
|
// "mobile": null,
|
|
|
|
|
// "pfDepartment": {
|
|
|
|
|
// "appLink": null,
|
|
|
|
|
// "createTime": "2022-08-31",
|
|
|
|
|
// "deleted": false,
|
|
|
|
|
// "deptCode": "001",
|
|
|
|
|
// "deptId": 1,
|
|
|
|
|
// "deptName": "MES开发部",
|
|
|
|
|
// "deptType": 1,
|
|
|
|
|
// "deptTypeTitle": "厂",
|
|
|
|
|
// "keyValue": 1,
|
|
|
|
|
// "memo": null,
|
|
|
|
|
// "orders": "00",
|
|
|
|
|
// "parentDeptId": null,
|
|
|
|
|
// "parentPath": null,
|
|
|
|
|
// "ucDeptId": null,
|
|
|
|
|
// "updateTime": "2022-08-31 16:32:46"
|
|
|
|
|
// },
|
|
|
|
|
// "pinyinIndex": "CUIDIANLONG,CDL",
|
|
|
|
|
// "ucUserId": null,
|
|
|
|
|
// "updateTime": "2023-05-04 09:16:54",
|
|
|
|
|
// "userCode": "cdl",
|
|
|
|
|
// "userId": 541,
|
|
|
|
|
// "userName": "崔殿龙",
|
|
|
|
|
// "userSex": 1,
|
|
|
|
|
// "userSources": "崔殿龙",
|
|
|
|
|
// "userString": "541:A:崔殿龙",
|
|
|
|
|
// "userType": "A"
|
|
|
|
|
// },
|
|
|
|
|
// "assayTime": "2023-10-10 13:33:12",
|
|
|
|
|
// "createMan": {
|
|
|
|
|
// "accountId": 541,
|
|
|
|
|
// "card": null,
|
|
|
|
|
// "createTime": "2023-05-04",
|
|
|
|
|
// "curStatus": 1,
|
|
|
|
|
// "deleted": false,
|
|
|
|
|
// "deptName": null,
|
|
|
|
|
// "dimissionTime": null,
|
|
|
|
|
// "factoryId": 102,
|
|
|
|
|
// "head": 0,
|
|
|
|
|
// "jobName": "MES开发",
|
|
|
|
|
// "keyValue": 541,
|
|
|
|
|
// "ldapName": "cdl",
|
|
|
|
|
// "mail": null,
|
|
|
|
|
// "mobile": null,
|
|
|
|
|
// "pfDepartment": {
|
|
|
|
|
// "appLink": null,
|
|
|
|
|
// "createTime": "2022-08-31",
|
|
|
|
|
// "deleted": false,
|
|
|
|
|
// "deptCode": "001",
|
|
|
|
|
// "deptId": 1,
|
|
|
|
|
// "deptName": "MES开发部",
|
|
|
|
|
// "deptType": 1,
|
|
|
|
|
// "deptTypeTitle": "厂",
|
|
|
|
|
// "keyValue": 1,
|
|
|
|
|
// "memo": null,
|
|
|
|
|
// "orders": "00",
|
|
|
|
|
// "parentDeptId": null,
|
|
|
|
|
// "parentPath": null,
|
|
|
|
|
// "ucDeptId": null,
|
|
|
|
|
// "updateTime": "2022-08-31 16:32:46"
|
|
|
|
|
// },
|
|
|
|
|
// "pinyinIndex": "CUIDIANLONG,CDL",
|
|
|
|
|
// "ucUserId": null,
|
|
|
|
|
// "updateTime": "2023-05-04 09:16:54",
|
|
|
|
|
// "userCode": "cdl",
|
|
|
|
|
// "userId": 541,
|
|
|
|
|
// "userName": "崔殿龙",
|
|
|
|
|
// "userSex": 1,
|
|
|
|
|
// "userSources": "崔殿龙",
|
|
|
|
|
// "userString": "541:A:崔殿龙",
|
|
|
|
|
// "userType": "A"
|
|
|
|
|
// },
|
|
|
|
|
// "goldPotassium": 1.0,
|
|
|
|
|
// "keyValue": 41,
|
|
|
|
|
// "silverPlate": 0.0,
|
|
|
|
|
// "silverPotassium": 0.0,
|
|
|
|
|
// "totalNum": 1.0,
|
|
|
|
|
// "workCenter": {
|
|
|
|
|
// "area": 13000.0,
|
|
|
|
|
// "batchNo": null,
|
|
|
|
|
// "bigBatch": false,
|
|
|
|
|
// "bsJfCenter": {
|
|
|
|
|
// "createMan": {
|
|
|
|
|
// "accountId": null,
|
|
|
|
|
// "card": null,
|
|
|
|
|
// "createTime": "2022-08-31",
|
|
|
|
|
// "curStatus": 1,
|
|
|
|
|
// "deleted": false,
|
|
|
|
|
// "deptName": null,
|
|
|
|
|
// "dimissionTime": null,
|
|
|
|
|
// "factoryId": 41,
|
|
|
|
|
// "head": 0,
|
|
|
|
|
// "jobName": "总工",
|
|
|
|
|
// "keyValue": 1,
|
|
|
|
|
// "ldapName": "admin",
|
|
|
|
|
// "mail": "13699999999@136.com",
|
|
|
|
|
// "mobile": "13699999999",
|
|
|
|
|
// "pfDepartment": {
|
|
|
|
|
// "appLink": null,
|
|
|
|
|
// "createTime": "2022-08-31",
|
|
|
|
|
// "deleted": false,
|
|
|
|
|
// "deptCode": "001",
|
|
|
|
|
// "deptId": 1,
|
|
|
|
|
// "deptName": "MES开发部",
|
|
|
|
|
// "deptType": 1,
|
|
|
|
|
// "deptTypeTitle": "厂",
|
|
|
|
|
// "keyValue": 1,
|
|
|
|
|
// "memo": null,
|
|
|
|
|
// "orders": "00",
|
|
|
|
|
// "parentDeptId": null,
|
|
|
|
|
// "parentPath": null,
|
|
|
|
|
// "ucDeptId": null,
|
|
|
|
|
// "updateTime": "2022-08-31 16:32:46"
|
|
|
|
|
// },
|
|
|
|
|
// "pinyinIndex": "ADMIN,ADMIN",
|
|
|
|
|
// "ucUserId": null,
|
|
|
|
|
// "updateTime": "2022-08-31 16:32:46",
|
|
|
|
|
// "userCode": "00",
|
|
|
|
|
// "userId": 1,
|
|
|
|
|
// "userName": "admin",
|
|
|
|
|
// "userSex": 1,
|
|
|
|
|
// "userSources": "admin",
|
|
|
|
|
// "userString": "1:A:admin",
|
|
|
|
|
// "userType": "A"
|
|
|
|
|
// },
|
|
|
|
|
// "createTime": "2024-12-09 00:00:00",
|
|
|
|
|
// "deleted": false,
|
|
|
|
|
// "jcCode": "RBZX",
|
|
|
|
|
// "jcId": 1,
|
|
|
|
|
// "jcName": "热表中心",
|
|
|
|
|
// "keyValue": 1,
|
|
|
|
|
// "updateTime": "2024-12-09 00:00:00"
|
|
|
|
|
// },
|
|
|
|
|
// "checkout": false,
|
|
|
|
|
// "craftAbility": "化学镀镍",
|
|
|
|
|
// "createMan": {
|
|
|
|
|
// "accountId": null,
|
|
|
|
|
// "card": null,
|
|
|
|
|
// "createTime": "2022-08-31",
|
|
|
|
|
// "curStatus": 1,
|
|
|
|
|
// "deleted": false,
|
|
|
|
|
// "deptName": null,
|
|
|
|
|
// "dimissionTime": null,
|
|
|
|
|
// "factoryId": 41,
|
|
|
|
|
// "head": 0,
|
|
|
|
|
// "jobName": "总工",
|
|
|
|
|
// "keyValue": 1,
|
|
|
|
|
// "ldapName": "admin",
|
|
|
|
|
// "mail": "13699999999@136.com",
|
|
|
|
|
// "mobile": "13699999999",
|
|
|
|
|
// "pfDepartment": {
|
|
|
|
|
// "appLink": null,
|
|
|
|
|
// "createTime": "2022-08-31",
|
|
|
|
|
// "deleted": false,
|
|
|
|
|
// "deptCode": "001",
|
|
|
|
|
// "deptId": 1,
|
|
|
|
|
// "deptName": "MES开发部",
|
|
|
|
|
// "deptType": 1,
|
|
|
|
|
// "deptTypeTitle": "厂",
|
|
|
|
|
// "keyValue": 1,
|
|
|
|
|
// "memo": null,
|
|
|
|
|
// "orders": "00",
|
|
|
|
|
// "parentDeptId": null,
|
|
|
|
|
// "parentPath": null,
|
|
|
|
|
// "ucDeptId": null,
|
|
|
|
|
// "updateTime": "2022-08-31 16:32:46"
|
|
|
|
|
// },
|
|
|
|
|
// "pinyinIndex": "ADMIN,ADMIN",
|
|
|
|
|
// "ucUserId": null,
|
|
|
|
|
// "updateTime": "2022-08-31 16:32:46",
|
|
|
|
|
// "userCode": "00",
|
|
|
|
|
// "userId": 1,
|
|
|
|
|
// "userName": "admin",
|
|
|
|
|
// "userSex": 1,
|
|
|
|
|
// "userSources": "admin",
|
|
|
|
|
// "userString": "1:A:admin",
|
|
|
|
|
// "userType": "A"
|
|
|
|
|
// },
|
|
|
|
|
// "createTime": "2023-02-06 12:31:36",
|
|
|
|
|
// "deleted": false,
|
|
|
|
|
// "describe": null,
|
|
|
|
|
// "endPoint": null,
|
|
|
|
|
// "keyValue": 81,
|
|
|
|
|
// "leaderUser": {
|
|
|
|
|
// "accountId": 541,
|
|
|
|
|
// "card": null,
|
|
|
|
|
// "createTime": "2023-05-04",
|
|
|
|
|
// "curStatus": 1,
|
|
|
|
|
// "deleted": false,
|
|
|
|
|
// "deptName": null,
|
|
|
|
|
// "dimissionTime": null,
|
|
|
|
|
// "factoryId": 102,
|
|
|
|
|
// "head": 0,
|
|
|
|
|
// "jobName": "MES开发",
|
|
|
|
|
// "keyValue": 541,
|
|
|
|
|
// "ldapName": "cdl",
|
|
|
|
|
// "mail": null,
|
|
|
|
|
// "mobile": null,
|
|
|
|
|
// "pfDepartment": {
|
|
|
|
|
// "appLink": null,
|
|
|
|
|
// "createTime": "2022-08-31",
|
|
|
|
|
// "deleted": false,
|
|
|
|
|
// "deptCode": "001",
|
|
|
|
|
// "deptId": 1,
|
|
|
|
|
// "deptName": "MES开发部",
|
|
|
|
|
// "deptType": 1,
|
|
|
|
|
// "deptTypeTitle": "厂",
|
|
|
|
|
// "keyValue": 1,
|
|
|
|
|
// "memo": null,
|
|
|
|
|
// "orders": "00",
|
|
|
|
|
// "parentDeptId": null,
|
|
|
|
|
// "parentPath": null,
|
|
|
|
|
// "ucDeptId": null,
|
|
|
|
|
// "updateTime": "2022-08-31 16:32:46"
|
|
|
|
|
// },
|
|
|
|
|
// "pinyinIndex": "CUIDIANLONG,CDL",
|
|
|
|
|
// "ucUserId": null,
|
|
|
|
|
// "updateTime": "2023-05-04 09:16:54",
|
|
|
|
|
// "userCode": "cdl",
|
|
|
|
|
// "userId": 541,
|
|
|
|
|
// "userName": "崔殿龙",
|
|
|
|
|
// "userSex": 1,
|
|
|
|
|
// "userSources": "崔殿龙",
|
|
|
|
|
// "userString": "541:A:崔殿龙",
|
|
|
|
|
// "userType": "A"
|
|
|
|
|
// },
|
|
|
|
|
// "limitType": 0,
|
|
|
|
|
// "processes": "上挂、下挂、交检、化学镀镍、喷砂",
|
|
|
|
|
// "quantity": null,
|
|
|
|
|
// "roundCycle": null,
|
|
|
|
|
// "saturation": 85.0,
|
|
|
|
|
// "sign": "4",
|
|
|
|
|
// "startPoint": null,
|
|
|
|
|
// "team": "化学镀镍一班崔胜伟、化学镀镍一班郭家梁",
|
|
|
|
|
// "updateTime": "2023-03-06 18:42:47",
|
|
|
|
|
// "wcCode": "001",
|
|
|
|
|
// "wcId": 81,
|
|
|
|
|
// "wcName": "化学镀镍作业中心",
|
|
|
|
|
// "whetherPlate": false
|
|
|
|
|
// }
|
|
|
|
|
// },
|
|
|
|
|
// "keyValue": 41,
|
|
|
|
|
// "saveBoardVal": 0.0,
|
|
|
|
|
// "saveGoldVal": 1.0,
|
|
|
|
|
// "saveSilverVal": 0.0,
|
|
|
|
|
// "slot": "001",
|
|
|
|
|
// "testVal": 2.0
|
|
|
|
|
// }
|
|
|
|
|
// ]
|
|
|
|
|
this.addForm = {
|
|
|
|
|
bsWorkCenter: {
|
|
|
|
|
wcName: "电镀作业中心A区",
|
|
|
|
|
approverFirst: "张三(车间主管)",
|
|
|
|
|
approvalTimeFirst: "2025-12-01 09:30:25",
|
|
|
|
|
approvalResultFirst: "通过",
|
|
|
|
|
approvalOpinionFirst: "物料消耗数据核对无误,预添加量在定额范围内,同意审批",
|
|
|
|
|
approverSecond: "李四(生产经理)",
|
|
|
|
|
approvalTimeSecond: "2025-12-01 14:15:40",
|
|
|
|
|
approvalResultSecond: "通过",
|
|
|
|
|
approvalOpinionSecond: "同意车间主管意见,按计划执行物料添加"
|
|
|
|
|
},
|
|
|
|
|
createUser: "王五(统计员)",
|
|
|
|
|
createTime: "2025-11-30 16:20:10",
|
|
|
|
|
goodsCode: "WL-DJ-001-2025",
|
|
|
|
|
teamActualConsumption: 1856.7,
|
|
|
|
|
teamPreAddGram: 2000.0,
|
|
|
|
|
goodsName: "氰化金钾溶液(20%)",
|
|
|
|
|
usableQuotaGram: 4500.5,
|
|
|
|
|
accumulatedBalanceGram: 987.2,
|
|
|
|
|
currentAddRelatedOrderNo: "OD-202512001",
|
|
|
|
|
currentRemainingOrderQuota: 1560.8
|
|
|
|
|
}
|
|
|
|
|
this.tableData = [
|
|
|
|
|
{ slot: 5, testVal: 1.85, saveGoldVal: 0.0, saveSilverVal: 850.2, saveBoardVal: 848.5 },
|
|
|
|
|
{ slot: 6, testVal: 1.88, saveGoldVal: 0.0, saveSilverVal: 880.7, saveBoardVal: 879.2 },
|
|
|
|
|
{ slot: 7, testVal: 1.82, saveGoldVal: 0.0, saveSilverVal: 820.4, saveBoardVal: 819.0 },
|
|
|
|
|
{ slot: 8, testVal: 1.86, saveGoldVal: 0.0, saveSilverVal: 860.9, saveBoardVal: 859.3 }
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
closeDialog() {
|
|
|
|
|
this.$emit('closeDialog');
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
.margin-top {
|
|
|
|
|
margin-top: 24px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
:deep(.is-bordered-content) {
|
|
|
|
|
width: 280px
|
|
|
|
|
}
|
|
|
|
|
</style>
|