This commit is contained in:
parent
efff7d83f9
commit
4cd2cbd9db
|
|
@ -392,6 +392,8 @@ export default {
|
||||||
this.detailsData2[i].department_id = row.department_id;
|
this.detailsData2[i].department_id = row.department_id;
|
||||||
this.detailsData2[i].department_detail = row.department_detail;
|
this.detailsData2[i].department_detail = row.department_detail;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
@ -399,6 +401,9 @@ export default {
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
setTimeout(()=>{
|
||||||
|
this.detailsData2 = JSON.parse(JSON.stringify(this.detailsData2));
|
||||||
|
},500);
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -448,7 +453,7 @@ export default {
|
||||||
this.$mk.post({
|
this.$mk.post({
|
||||||
url: `${BASE_URL.BASE_URL}/MoldProductionOrder/v1/mold/production/order/component/reporting`,
|
url: `${BASE_URL.BASE_URL}/MoldProductionOrder/v1/mold/production/order/component/reporting`,
|
||||||
data: {
|
data: {
|
||||||
id: row.id
|
id:this.$mk.toBigInt( row.id)
|
||||||
},
|
},
|
||||||
useBigInt: true,
|
useBigInt: true,
|
||||||
}).then(a => {
|
}).then(a => {
|
||||||
|
|
@ -463,7 +468,7 @@ export default {
|
||||||
this.$mk.post({
|
this.$mk.post({
|
||||||
url: `${BASE_URL.BASE_URL}/MoldProductionOrder/v1/mold/production/order/component/processes/Reporting`,
|
url: `${BASE_URL.BASE_URL}/MoldProductionOrder/v1/mold/production/order/component/processes/Reporting`,
|
||||||
data: {
|
data: {
|
||||||
id: row.id
|
id: this.$mk.toBigInt( row.id)
|
||||||
},
|
},
|
||||||
useBigInt: true,
|
useBigInt: true,
|
||||||
}).then(a => {
|
}).then(a => {
|
||||||
|
|
@ -478,7 +483,7 @@ export default {
|
||||||
this.$mk.post({
|
this.$mk.post({
|
||||||
url: `${BASE_URL.BASE_URL}/MoldProductionOrder/v1/mold/production/order/component/processes/SendMaterial`,
|
url: `${BASE_URL.BASE_URL}/MoldProductionOrder/v1/mold/production/order/component/processes/SendMaterial`,
|
||||||
data: {
|
data: {
|
||||||
id: row.id
|
id:this.$mk.toBigInt( row.id)
|
||||||
},
|
},
|
||||||
useBigInt: true,
|
useBigInt: true,
|
||||||
}).then(a => {
|
}).then(a => {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue