@@ -177,6 +178,14 @@
placeholder="请输入申请人" />
+
+
+
+
+
{{
- scope.row.region ? regionArr.filter(item=>{return item.id===scope.row.region})[0].name: ''
+ scope.row.region
+ ? regionArr.filter((item) => {
+ return item.id === scope.row.region;
+ })[0].name
+ : ''
}}
@@ -236,10 +249,21 @@
- {{ scope.row.earlyTime?scope.row.earlyTime == 0 ? '是' : '否':'' }}
+ {{
+ scope.row.earlyTime
+ ? scope.row.earlyTime == 0
+ ? '是'
+ : '否'
+ : ''
+ }}
+
+
+ {{ scope.row.freeze == 1 ? '冻结' : '否' }}
+
+
-
+
-
+
-
-
-
+
+
+
+
+
+ {{ scope.row.freeze == 1 ? '冻结' : '否' }}
+
+
+
+
-
+
{{ parseTime(scope.row.createTime) }}
-
+
{{ parseTime(scope.row.finishTime) }}
@@ -405,7 +456,7 @@ import {
getDelivery,
getCode,
createDeliveryList,
- checkGoods
+ checkGoods,
} from '@/api/oth/delivery';
import { getPage } from '@/api/oth/rollMessage';
import { getLineList } from '@/api/asrs/warehouseStorehouse';
@@ -452,6 +503,7 @@ export default {
workOrder: null,
department: null,
applicant: null,
+ outwhy: null,
process: null,
},
listQuery: {
@@ -512,6 +564,9 @@ export default {
applicant: [
{ required: true, message: '申请人不能为空', trigger: 'blur' },
],
+ outwhy: [
+ { required: true, message: '出库事由不能为空', trigger: 'blur' },
+ ],
},
};
},
@@ -594,6 +649,7 @@ export default {
containerCode: val.containerCode,
warehouseId: this.bId,
};
+ console.log(val);
checkGoods(params).then((res) => {
if (res == 0) {
this.innerVisible = false;
@@ -615,6 +671,7 @@ export default {
);
this.$set(this.tableData[this.trayIndex], 'process', val.process);
this.$set(this.tableData[this.trayIndex], 'earlyTime', 0);
+ this.$set(this.tableData[this.trayIndex], 'freeze', val.freeze);
} else {
this.$confirm('该货物不是完成日期最早货物,是否选择出库?', '提示', {
confirmButtonText: '确定',
@@ -645,6 +702,7 @@ export default {
);
this.$set(this.tableData[this.trayIndex], 'process', val.process);
this.$set(this.tableData[this.trayIndex], 'earlyTime', 1);
+ this.$set(this.tableData[this.trayIndex], 'freeze', val.freeze);
})
.catch(() => {
return;
@@ -709,6 +767,7 @@ export default {
item.deliveryCode = this.dataForm.deliveryCode;
item.department = this.dataForm.department;
item.applicant = this.dataForm.applicant;
+ item.outwhy = this.dataForm.outwhy;
item.warehouseId = this.bId;
item.deliveryType = 3;
item.needTrayNumber = 1;
@@ -732,7 +791,7 @@ export default {
return;
}
// 添加的提交
- this.dataForm.warehouseId = '1698950657556340737'
+ this.dataForm.warehouseId = '1698950657556340737';
this.urlOptions.createURL(this.dataForm).then((response) => {
if (response.data === -1) {
this.$modal.msgWarning('排、列、层不能重复');
diff --git a/src/views/asrs/delivery/index.vue b/src/views/asrs/delivery/index.vue
index adaa32e..4773981 100644
--- a/src/views/asrs/delivery/index.vue
+++ b/src/views/asrs/delivery/index.vue
@@ -119,7 +119,7 @@ const tableProps = [
prop: 'earlyTime',
label: '最早时间',
filter: (val) => {
- val == 0 ? '是' : '否';
+ return val == 0 ? '是' : '否';
},
},
{
diff --git a/src/views/asrs/delivery/indexb.vue b/src/views/asrs/delivery/indexb.vue
index 40a1e87..75969f9 100644
--- a/src/views/asrs/delivery/indexb.vue
+++ b/src/views/asrs/delivery/indexb.vue
@@ -119,7 +119,7 @@ const tableProps = [
prop: 'earlyTime',
label: '最早时间',
filter: (val) => {
- val == 0 ? '是' : '否';
+ return val == 0 ? '是' : '否';
},
},
{
diff --git a/src/views/asrs/deliveryHis/product-mini.vue b/src/views/asrs/deliveryHis/product-mini.vue
index 06b2327..b9f0b3f 100644
--- a/src/views/asrs/deliveryHis/product-mini.vue
+++ b/src/views/asrs/deliveryHis/product-mini.vue
@@ -2,7 +2,7 @@
* @Author: zwq
* @Date: 2023-08-24 14:47:58
* @LastEditors: zwq
- * @LastEditTime: 2024-05-31 14:07:27
+ * @LastEditTime: 2025-11-26 12:51:42
* @Description:
-->
@@ -83,6 +83,19 @@ const tableProps = [
prop: 'lineId',
label: '行号',
},
+ {
+ prop: 'freeze',
+ label: '是否冻结',
+ filter: (val)=>{return val == 1 ? '冻结' : '否'}
+ },
+ {
+ prop: 'freezeType',
+ label: '冻结类型',
+ },
+ {
+ prop: 'freezeNote',
+ label: '冻结备注',
+ },
{
prop: 'createTime',
label: '创建时间',
diff --git a/src/views/asrs/jobMainTask/add-or-updata.vue b/src/views/asrs/jobMainTask/add-or-updata.vue
index 3d61cb9..ae9f61d 100644
--- a/src/views/asrs/jobMainTask/add-or-updata.vue
+++ b/src/views/asrs/jobMainTask/add-or-updata.vue
@@ -2,7 +2,7 @@
* @Author: zwq
* @Date: 2021-11-18 14:16:25
* @LastEditors: zwq
- * @LastEditTime: 2025-08-14 13:57:21
+ * @LastEditTime: 2025-09-04 09:19:29
* @Description:
-->
@@ -40,7 +40,10 @@