|
|
|
@ -1,3 +1,4 @@
|
|
|
|
|
<!-- 扫描rfid,选择缓存区,根据选择的缓存区查询库位,勾选是否取走托盘,提交托盘变更信息 -->
|
|
|
|
|
<template>
|
|
|
|
|
<view class="page-product-receipt">
|
|
|
|
|
<view class="header" :style="{ backgroundColor: `rgba(250, 53, 52, ${scrollTop / 100})` }">
|
|
|
|
@ -148,10 +149,10 @@ export default class ChangePalletNew extends BasePage {
|
|
|
|
|
reqTime: formattedDate,
|
|
|
|
|
sku: this.orderNoItemList.sku,
|
|
|
|
|
spec: this.orderNoItemList.spec,
|
|
|
|
|
productionState: this.orderNoItemList.productionState,
|
|
|
|
|
productionState: this.productCodelocList.value, //缓存区:2或者3,成品2,烘房3
|
|
|
|
|
//location: this.location,
|
|
|
|
|
locationStatus: this.locationStatus,
|
|
|
|
|
location: this.productCodeList.value,
|
|
|
|
|
locationStatus: this.locationStatus, //是否取走托盘
|
|
|
|
|
location: this.productCodeList.value, //库位,其中 库位是根据选择的缓存区来查询的
|
|
|
|
|
//productionState: this.productCodeList.value,
|
|
|
|
|
};
|
|
|
|
|
await this.model.palletInforUpdate(params);
|
|
|
|
@ -180,7 +181,7 @@ export default class ChangePalletNew extends BasePage {
|
|
|
|
|
}
|
|
|
|
|
async selectProductlocCode(e: any) {
|
|
|
|
|
this.productCodelocList = e.pickerName;
|
|
|
|
|
await this.model.getpalletLocation(this.productCodelocList.value);
|
|
|
|
|
await this.model.getpalletLocation(this.productCodelocList.value); //参数:成型区2,烘房3
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|