diff --git a/src/views/Query/BasicQuery/Palletizing/index.vue b/src/views/Query/BasicQuery/Palletizing/index.vue
new file mode 100644
index 0000000..144f329
--- /dev/null
+++ b/src/views/Query/BasicQuery/Palletizing/index.vue
@@ -0,0 +1,150 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 搜索
+ 重置
+
+
+
+
+
+
+
+ {{ scope.row[col.field] }}
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/views/Query/StockQuery/UnDoInfo/index.vue b/src/views/Query/StockQuery/UnDoInfo/index.vue
index d4ed6a3..5b01e20 100644
--- a/src/views/Query/StockQuery/UnDoInfo/index.vue
+++ b/src/views/Query/StockQuery/UnDoInfo/index.vue
@@ -9,6 +9,15 @@
+
+
+
+
+
+
+
- {{ scope.row[col.field] }}
+
+ {{ scope.row[col.field] == 'Y' ? '已冲销' : '未冲销' }}
+
+
+ {{ scope.row.RECEIVEREQUESTTYPE ? scope.row.RECEIVEREQUESTTYPE : scope.row.SHIPREQUESTTYPE }}
+
+ {{ scope.row[col.field] }}
@@ -99,8 +114,14 @@ const state = reactive({
queryParams: {
UNDOID: '',
FROMDATE: '',
- TODATE: ''
+ TODATE: '',
+ TYPE:""
},
+ TypeList: [
+ { value: '', label: '全部' },
+ { value: 'A', label: '入库' },
+ { value: 'B', label: '出库' }
+ ],
page: {
pageNum: 1,
pageSize: 10,
@@ -234,10 +255,10 @@ function sendUndoCommit() {
return;
}
undoCommit({
- undoId: state.list[0].UNDOID,
+ undoId: state.list[0]?.UNDOID,
userId: localStorage.get('userId'),
- flag: state.list[0].FLAG,
- inv_TYPE : state.list[0].INV_TYPE,
+ flag: state.list[0]?.FLAG,
+ inv_TYPE : state.list[0]?.INV_TYPE,
}).then((res: any) => {
console.log(res)
if (res.success) {