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_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({
|
||||
url: `${BASE_URL.BASE_URL}/MoldProductionOrder/v1/mold/production/order/component/reporting`,
|
||||
data: {
|
||||
id: row.id
|
||||
id:this.$mk.toBigInt( row.id)
|
||||
},
|
||||
useBigInt: true,
|
||||
}).then(a => {
|
||||
|
|
@ -463,7 +468,7 @@ export default {
|
|||
this.$mk.post({
|
||||
url: `${BASE_URL.BASE_URL}/MoldProductionOrder/v1/mold/production/order/component/processes/Reporting`,
|
||||
data: {
|
||||
id: row.id
|
||||
id: this.$mk.toBigInt( row.id)
|
||||
},
|
||||
useBigInt: true,
|
||||
}).then(a => {
|
||||
|
|
@ -478,7 +483,7 @@ export default {
|
|||
this.$mk.post({
|
||||
url: `${BASE_URL.BASE_URL}/MoldProductionOrder/v1/mold/production/order/component/processes/SendMaterial`,
|
||||
data: {
|
||||
id: row.id
|
||||
id:this.$mk.toBigInt( row.id)
|
||||
},
|
||||
useBigInt: true,
|
||||
}).then(a => {
|
||||
|
|
|
|||
Loading…
Reference in New Issue