浏览代码

feat: 出库流水e2e

xyh 2 年之前
父节点
当前提交
21bd560645

+ 57 - 0
cypress/e2e/rawOutStream.cy.ts

@@ -0,0 +1,57 @@
+import {
+  loginIntercept,
+  menuIntercept,
+  loginSetup,
+  optionsIntercept,
+  dictionaryIntercept,
+  intoMenu,
+  intercept,
+  validateTableList,
+  validateTableSearch,
+  clickDatePicker,
+} from './utils';
+
+describe('出库流水', function() {
+  beforeEach(function() {
+    loginIntercept();
+    menuIntercept();
+    loginSetup();
+    optionsIntercept();
+    dictionaryIntercept();
+    intoMenu('流水管理', '出库流水列表');
+  });
+
+  beforeEach(function() {
+    intercept('/askGoods/getRemoval', function({search, reply}) {
+      if (search.has('wllbCode') && search.get('wllbCode').length)
+        return reply({fixture: 'raw-out-stream/search1'});
+      if (search.has('type') && search.get('type').length)
+        return reply({fixture: 'raw-out-stream/search2'});
+      if (
+        search.has('startTime') && search.get('startTime').length
+          && search.has('endTime') && search.get('endTime').length
+      )
+        return reply({fixture: 'raw-out-stream/search3'});
+
+      const page = search.get('page');
+      reply({fixture: `raw-out-stream/list${page}`});
+    });
+  });
+
+  it('表格', function() {
+    validateTableList('raw_out_stream_table', 10, 4);
+
+    const validate = validateTableSearch('raw_out_stream_table');
+
+    cy.get('#filter_rawMaterialCode').type('code');
+    validate('search1');
+
+    cy.get('#filter_rawMaterialCode').clear();
+    cy.get('#filter_rawMaterialType').type('type');
+    validate('search2');
+
+    cy.get('#filter_rawMaterialType').clear();
+    clickDatePicker('date_filter_rawMaterialDates');
+    validate('search3');
+  });
+});

+ 29 - 16
cypress/fixtures/menu/basic.json

@@ -11,7 +11,7 @@
       "page": 0,
       "limit": 0,
       "orderBy": null,
-      "menu": "23,15,16,14,13,29,26,25,47,48,49,51,50,52,53,54,",
+      "menu": "23,15,16,14,13,29,26,25,47,48,49,51,50,52,54,53,56,",
       "pid": "13"
     },
     {
@@ -24,7 +24,7 @@
       "page": 0,
       "limit": 0,
       "orderBy": null,
-      "menu": "23,15,16,14,13,29,26,25,47,48,49,51,50,52,53,54,",
+      "menu": "23,15,16,14,13,29,26,25,47,48,49,51,50,52,54,53,56,",
       "pid": "0"
     },
     {
@@ -37,7 +37,7 @@
       "page": 0,
       "limit": 0,
       "orderBy": null,
-      "menu": "23,15,16,14,13,29,26,25,47,48,49,51,50,52,53,54,",
+      "menu": "23,15,16,14,13,29,26,25,47,48,49,51,50,52,54,53,56,",
       "pid": "15"
     },
     {
@@ -50,7 +50,7 @@
       "page": 0,
       "limit": 0,
       "orderBy": null,
-      "menu": "23,15,16,14,13,29,26,25,47,48,49,51,50,52,53,54,",
+      "menu": "23,15,16,14,13,29,26,25,47,48,49,51,50,52,54,53,56,",
       "pid": "25"
     },
     {
@@ -63,7 +63,7 @@
       "page": 0,
       "limit": 0,
       "orderBy": null,
-      "menu": "23,15,16,14,13,29,26,25,47,48,49,51,50,52,53,54,",
+      "menu": "23,15,16,14,13,29,26,25,47,48,49,51,50,52,54,53,56,",
       "pid": "13"
     },
     {
@@ -76,7 +76,7 @@
       "page": 0,
       "limit": 0,
       "orderBy": null,
-      "menu": "23,15,16,14,13,29,26,25,47,48,49,51,50,52,53,54,",
+      "menu": "23,15,16,14,13,29,26,25,47,48,49,51,50,52,54,53,56,",
       "pid": "50"
     },
     {
@@ -89,7 +89,7 @@
       "page": 0,
       "limit": 0,
       "orderBy": null,
-      "menu": "23,15,16,14,13,29,26,25,47,48,49,51,50,52,53,54,",
+      "menu": "23,15,16,14,13,29,26,25,47,48,49,51,50,52,54,53,56,",
       "pid": "53"
     },
     {
@@ -102,7 +102,7 @@
       "page": 0,
       "limit": 0,
       "orderBy": null,
-      "menu": "23,15,16,14,13,29,26,25,47,48,49,51,50,52,53,54,",
+      "menu": "23,15,16,14,13,29,26,25,47,48,49,51,50,52,54,53,56,",
       "pid": "15"
     },
     {
@@ -115,7 +115,7 @@
       "page": 0,
       "limit": 0,
       "orderBy": null,
-      "menu": "23,15,16,14,13,29,26,25,47,48,49,51,50,52,53,54,",
+      "menu": "23,15,16,14,13,29,26,25,47,48,49,51,50,52,54,53,56,",
       "pid": "25"
     },
     {
@@ -128,7 +128,7 @@
       "page": 0,
       "limit": 0,
       "orderBy": null,
-      "menu": "23,15,16,14,13,29,26,25,47,48,49,51,50,52,53,54,",
+      "menu": "23,15,16,14,13,29,26,25,47,48,49,51,50,52,54,53,56,",
       "pid": "25"
     },
     {
@@ -141,7 +141,7 @@
       "page": 0,
       "limit": 0,
       "orderBy": null,
-      "menu": "23,15,16,14,13,29,26,25,47,48,49,51,50,52,53,54,",
+      "menu": "23,15,16,14,13,29,26,25,47,48,49,51,50,52,54,53,56,",
       "pid": "0"
     },
     {
@@ -154,9 +154,22 @@
       "page": 0,
       "limit": 0,
       "orderBy": null,
-      "menu": "23,15,16,14,13,29,26,25,47,48,49,51,50,52,53,54,",
+      "menu": "23,15,16,14,13,29,26,25,47,48,49,51,50,52,54,53,56,",
       "pid": "50"
     },
+    {
+      "id": "56",
+      "name": "出库流水列表",
+      "url": "/stream/rawout",
+      "pId": "53",
+      "idCode": null,
+      "type": null,
+      "page": 0,
+      "limit": 0,
+      "orderBy": null,
+      "menu": "23,15,16,14,13,29,26,25,47,48,49,51,50,52,54,53,56,",
+      "pid": "53"
+    },
     {
       "id": "25",
       "name": "仓库管理",
@@ -167,7 +180,7 @@
       "page": 0,
       "limit": 0,
       "orderBy": null,
-      "menu": "23,15,16,14,13,29,26,25,47,48,49,51,50,52,53,54,",
+      "menu": "23,15,16,14,13,29,26,25,47,48,49,51,50,52,54,53,56,",
       "pid": "0"
     },
     {
@@ -180,7 +193,7 @@
       "page": 0,
       "limit": 0,
       "orderBy": null,
-      "menu": "23,15,16,14,13,29,26,25,47,48,49,51,50,52,53,54,",
+      "menu": "23,15,16,14,13,29,26,25,47,48,49,51,50,52,54,53,56,",
       "pid": "25"
     },
     {
@@ -193,7 +206,7 @@
       "page": 0,
       "limit": 0,
       "orderBy": null,
-      "menu": "23,15,16,14,13,29,26,25,47,48,49,51,50,52,53,54,",
+      "menu": "23,15,16,14,13,29,26,25,47,48,49,51,50,52,54,53,56,",
       "pid": "0"
     },
     {
@@ -206,7 +219,7 @@
       "page": 0,
       "limit": 0,
       "orderBy": null,
-      "menu": "23,15,16,14,13,29,26,25,47,48,49,51,50,52,53,54,",
+      "menu": "23,15,16,14,13,29,26,25,47,48,49,51,50,52,54,53,56,",
       "pid": "0"
     }
   ]

+ 427 - 0
cypress/fixtures/raw-out-stream/list1.json

@@ -0,0 +1,427 @@
+{
+  "msg": "200",
+  "data": {
+    "total": 14,
+    "list": [
+      {
+        "id": "14",
+        "askGoodsId": null,
+        "entryNumber": null,
+        "productionCode": null,
+        "storageLocationName": "3号库位",
+        "userName": "admin",
+        "materialId": null,
+        "wbs": null,
+        "measurementId": null,
+        "num": "4",
+        "outNum": null,
+        "askGoodsCode": null,
+        "companyNumber": null,
+        "sqrq": null,
+        "departmentId": null,
+        "departmentName": null,
+        "department": "仓储部门",
+        "sourceType": null,
+        "moveType": null,
+        "materialName": "材料2",
+        "materialCode": null,
+        "uniqueCode": null,
+        "storageLocationCode": null,
+        "supplierId": null,
+        "serial": "11",
+        "type": "计划出库",
+        "userId": null,
+        "scrq": "2023-03-10 15:54:09",
+        "supplierName": "123123",
+        "producDate": null,
+        "wllbCode": "123123123",
+        "page": 0,
+        "limit": 0,
+        "askGoodsType": null,
+        "startTime": null,
+        "endTime": null,
+        "process": null,
+        "askGoodsApplyType": null
+      },
+      {
+        "id": "13",
+        "askGoodsId": null,
+        "entryNumber": null,
+        "productionCode": null,
+        "storageLocationName": "3号库位",
+        "userName": "admin",
+        "materialId": null,
+        "wbs": null,
+        "measurementId": null,
+        "num": "4",
+        "outNum": null,
+        "askGoodsCode": null,
+        "companyNumber": null,
+        "sqrq": null,
+        "departmentId": null,
+        "departmentName": null,
+        "department": "仓储部门",
+        "sourceType": null,
+        "moveType": null,
+        "materialName": "材料2",
+        "materialCode": null,
+        "uniqueCode": null,
+        "storageLocationCode": null,
+        "supplierId": null,
+        "serial": "10",
+        "type": "计划出库",
+        "userId": null,
+        "scrq": "2023-03-10 15:48:03",
+        "supplierName": "123123",
+        "producDate": null,
+        "wllbCode": "123123123",
+        "page": 0,
+        "limit": 0,
+        "askGoodsType": null,
+        "startTime": null,
+        "endTime": null,
+        "process": null,
+        "askGoodsApplyType": null
+      },
+      {
+        "id": "12",
+        "askGoodsId": null,
+        "entryNumber": null,
+        "productionCode": null,
+        "storageLocationName": "3号库位",
+        "userName": "admin",
+        "materialId": null,
+        "wbs": null,
+        "measurementId": null,
+        "num": "4",
+        "outNum": null,
+        "askGoodsCode": null,
+        "companyNumber": null,
+        "sqrq": null,
+        "departmentId": null,
+        "departmentName": null,
+        "department": "仓储部门",
+        "sourceType": null,
+        "moveType": null,
+        "materialName": "材料2",
+        "materialCode": null,
+        "uniqueCode": null,
+        "storageLocationCode": null,
+        "supplierId": null,
+        "serial": "9",
+        "type": "计划出库",
+        "userId": null,
+        "scrq": "2023-03-10 15:44:41",
+        "supplierName": "123123",
+        "producDate": null,
+        "wllbCode": "123123123",
+        "page": 0,
+        "limit": 0,
+        "askGoodsType": null,
+        "startTime": null,
+        "endTime": null,
+        "process": null,
+        "askGoodsApplyType": null
+      },
+      {
+        "id": "11",
+        "askGoodsId": null,
+        "entryNumber": null,
+        "productionCode": null,
+        "storageLocationName": "3号库位",
+        "userName": "admin",
+        "materialId": null,
+        "wbs": null,
+        "measurementId": null,
+        "num": "4",
+        "outNum": null,
+        "askGoodsCode": null,
+        "companyNumber": null,
+        "sqrq": null,
+        "departmentId": null,
+        "departmentName": null,
+        "department": "仓储部门",
+        "sourceType": null,
+        "moveType": null,
+        "materialName": "材料2",
+        "materialCode": null,
+        "uniqueCode": null,
+        "storageLocationCode": null,
+        "supplierId": null,
+        "serial": "8",
+        "type": "计划出库",
+        "userId": null,
+        "scrq": "2023-03-10 15:41:31",
+        "supplierName": "123123",
+        "producDate": null,
+        "wllbCode": "123123123",
+        "page": 0,
+        "limit": 0,
+        "askGoodsType": null,
+        "startTime": null,
+        "endTime": null,
+        "process": null,
+        "askGoodsApplyType": null
+      },
+      {
+        "id": "10",
+        "askGoodsId": null,
+        "entryNumber": null,
+        "productionCode": null,
+        "storageLocationName": "3号库位",
+        "userName": "admin",
+        "materialId": null,
+        "wbs": null,
+        "measurementId": null,
+        "num": "4",
+        "outNum": null,
+        "askGoodsCode": null,
+        "companyNumber": null,
+        "sqrq": null,
+        "departmentId": null,
+        "departmentName": null,
+        "department": "仓储部门",
+        "sourceType": null,
+        "moveType": null,
+        "materialName": "材料2",
+        "materialCode": null,
+        "uniqueCode": null,
+        "storageLocationCode": null,
+        "supplierId": null,
+        "serial": "7",
+        "type": "计划出库",
+        "userId": null,
+        "scrq": "2023-03-10 15:39:46",
+        "supplierName": "123123",
+        "producDate": null,
+        "wllbCode": "123123123",
+        "page": 0,
+        "limit": 0,
+        "askGoodsType": null,
+        "startTime": null,
+        "endTime": null,
+        "process": null,
+        "askGoodsApplyType": null
+      },
+      {
+        "id": "9",
+        "askGoodsId": null,
+        "entryNumber": null,
+        "productionCode": null,
+        "storageLocationName": "3号库位",
+        "userName": "admin",
+        "materialId": null,
+        "wbs": null,
+        "measurementId": null,
+        "num": "4",
+        "outNum": null,
+        "askGoodsCode": null,
+        "companyNumber": null,
+        "sqrq": null,
+        "departmentId": null,
+        "departmentName": null,
+        "department": "仓储部门",
+        "sourceType": null,
+        "moveType": null,
+        "materialName": "材料2",
+        "materialCode": null,
+        "uniqueCode": null,
+        "storageLocationCode": null,
+        "supplierId": null,
+        "serial": "6",
+        "type": "计划出库",
+        "userId": null,
+        "scrq": "2023-03-10 15:35:02",
+        "supplierName": "123123",
+        "producDate": null,
+        "wllbCode": "123123123",
+        "page": 0,
+        "limit": 0,
+        "askGoodsType": null,
+        "startTime": null,
+        "endTime": null,
+        "process": null,
+        "askGoodsApplyType": null
+      },
+      {
+        "id": "8",
+        "askGoodsId": null,
+        "entryNumber": null,
+        "productionCode": null,
+        "storageLocationName": "3号库位",
+        "userName": "admin",
+        "materialId": null,
+        "wbs": null,
+        "measurementId": null,
+        "num": "4",
+        "outNum": null,
+        "askGoodsCode": null,
+        "companyNumber": null,
+        "sqrq": null,
+        "departmentId": null,
+        "departmentName": null,
+        "department": "仓储部门",
+        "sourceType": null,
+        "moveType": null,
+        "materialName": "材料2",
+        "materialCode": null,
+        "uniqueCode": null,
+        "storageLocationCode": null,
+        "supplierId": null,
+        "serial": "5",
+        "type": "计划出库",
+        "userId": null,
+        "scrq": "2023-03-10 15:32:31",
+        "supplierName": "123123",
+        "producDate": null,
+        "wllbCode": "123123123",
+        "page": 0,
+        "limit": 0,
+        "askGoodsType": null,
+        "startTime": null,
+        "endTime": null,
+        "process": null,
+        "askGoodsApplyType": null
+      },
+      {
+        "id": "7",
+        "askGoodsId": null,
+        "entryNumber": null,
+        "productionCode": null,
+        "storageLocationName": "3号库位",
+        "userName": "admin",
+        "materialId": null,
+        "wbs": null,
+        "measurementId": null,
+        "num": "4",
+        "outNum": null,
+        "askGoodsCode": null,
+        "companyNumber": null,
+        "sqrq": null,
+        "departmentId": null,
+        "departmentName": null,
+        "department": "仓储部门",
+        "sourceType": null,
+        "moveType": null,
+        "materialName": "材料2",
+        "materialCode": null,
+        "uniqueCode": null,
+        "storageLocationCode": null,
+        "supplierId": null,
+        "serial": "4",
+        "type": "计划出库",
+        "userId": null,
+        "scrq": "2023-03-10 15:26:39",
+        "supplierName": "123123",
+        "producDate": null,
+        "wllbCode": "123123123",
+        "page": 0,
+        "limit": 0,
+        "askGoodsType": null,
+        "startTime": null,
+        "endTime": null,
+        "process": null,
+        "askGoodsApplyType": null
+      },
+      {
+        "id": "6",
+        "askGoodsId": null,
+        "entryNumber": null,
+        "productionCode": null,
+        "storageLocationName": "3号库位",
+        "userName": "admin",
+        "materialId": null,
+        "wbs": null,
+        "measurementId": null,
+        "num": "4",
+        "outNum": null,
+        "askGoodsCode": null,
+        "companyNumber": null,
+        "sqrq": null,
+        "departmentId": null,
+        "departmentName": null,
+        "department": "仓储部门",
+        "sourceType": null,
+        "moveType": null,
+        "materialName": null,
+        "materialCode": null,
+        "uniqueCode": null,
+        "storageLocationCode": null,
+        "supplierId": null,
+        "serial": "2",
+        "type": "计划出库",
+        "userId": null,
+        "scrq": "2023-03-10 14:12:54",
+        "supplierName": "123123",
+        "producDate": null,
+        "wllbCode": null,
+        "page": 0,
+        "limit": 0,
+        "askGoodsType": null,
+        "startTime": null,
+        "endTime": null,
+        "process": null,
+        "askGoodsApplyType": null
+      },
+      {
+        "id": "5",
+        "askGoodsId": null,
+        "entryNumber": null,
+        "productionCode": null,
+        "storageLocationName": "3号库位",
+        "userName": "admin",
+        "materialId": null,
+        "wbs": null,
+        "measurementId": null,
+        "num": "4",
+        "outNum": null,
+        "askGoodsCode": null,
+        "companyNumber": null,
+        "sqrq": null,
+        "departmentId": null,
+        "departmentName": null,
+        "department": "仓储部门",
+        "sourceType": null,
+        "moveType": null,
+        "materialName": null,
+        "materialCode": null,
+        "uniqueCode": null,
+        "storageLocationCode": null,
+        "supplierId": null,
+        "serial": "1",
+        "type": "计划出库",
+        "userId": null,
+        "scrq": "2023-03-10 14:05:18",
+        "supplierName": "123123",
+        "producDate": null,
+        "wllbCode": null,
+        "page": 0,
+        "limit": 0,
+        "askGoodsType": null,
+        "startTime": null,
+        "endTime": null,
+        "process": null,
+        "askGoodsApplyType": null
+      }
+    ],
+    "pageNum": 1,
+    "pageSize": 10,
+    "size": 10,
+    "startRow": 1,
+    "endRow": 10,
+    "pages": 2,
+    "prePage": 0,
+    "nextPage": 2,
+    "isFirstPage": true,
+    "isLastPage": false,
+    "hasPreviousPage": false,
+    "hasNextPage": true,
+    "navigatePages": 8,
+    "navigatepageNums": [
+      1,
+      2
+    ],
+    "navigateFirstPage": 1,
+    "navigateLastPage": 2
+  }
+}

+ 187 - 0
cypress/fixtures/raw-out-stream/list2.json

@@ -0,0 +1,187 @@
+{
+  "msg": "200",
+  "data": {
+    "total": 14,
+    "list": [
+      {
+        "id": "14",
+        "askGoodsId": null,
+        "entryNumber": null,
+        "productionCode": null,
+        "storageLocationName": "3号库位",
+        "userName": "admin",
+        "materialId": null,
+        "wbs": null,
+        "measurementId": null,
+        "num": "4",
+        "outNum": null,
+        "askGoodsCode": null,
+        "companyNumber": null,
+        "sqrq": null,
+        "departmentId": null,
+        "departmentName": null,
+        "department": "仓储部门",
+        "sourceType": null,
+        "moveType": null,
+        "materialName": "材料2",
+        "materialCode": null,
+        "uniqueCode": null,
+        "storageLocationCode": null,
+        "supplierId": null,
+        "serial": "11",
+        "type": "计划出库",
+        "userId": null,
+        "scrq": "2023-03-10 15:54:09",
+        "supplierName": "123123",
+        "producDate": null,
+        "wllbCode": "123123123",
+        "page": 0,
+        "limit": 0,
+        "askGoodsType": null,
+        "startTime": null,
+        "endTime": null,
+        "process": null,
+        "askGoodsApplyType": null
+      },
+      {
+        "id": "13",
+        "askGoodsId": null,
+        "entryNumber": null,
+        "productionCode": null,
+        "storageLocationName": "3号库位",
+        "userName": "admin",
+        "materialId": null,
+        "wbs": null,
+        "measurementId": null,
+        "num": "4",
+        "outNum": null,
+        "askGoodsCode": null,
+        "companyNumber": null,
+        "sqrq": null,
+        "departmentId": null,
+        "departmentName": null,
+        "department": "仓储部门",
+        "sourceType": null,
+        "moveType": null,
+        "materialName": "材料2",
+        "materialCode": null,
+        "uniqueCode": null,
+        "storageLocationCode": null,
+        "supplierId": null,
+        "serial": "10",
+        "type": "计划出库",
+        "userId": null,
+        "scrq": "2023-03-10 15:48:03",
+        "supplierName": "123123",
+        "producDate": null,
+        "wllbCode": "123123123",
+        "page": 0,
+        "limit": 0,
+        "askGoodsType": null,
+        "startTime": null,
+        "endTime": null,
+        "process": null,
+        "askGoodsApplyType": null
+      },
+      {
+        "id": "12",
+        "askGoodsId": null,
+        "entryNumber": null,
+        "productionCode": null,
+        "storageLocationName": "3号库位",
+        "userName": "admin",
+        "materialId": null,
+        "wbs": null,
+        "measurementId": null,
+        "num": "4",
+        "outNum": null,
+        "askGoodsCode": null,
+        "companyNumber": null,
+        "sqrq": null,
+        "departmentId": null,
+        "departmentName": null,
+        "department": "仓储部门",
+        "sourceType": null,
+        "moveType": null,
+        "materialName": "材料2",
+        "materialCode": null,
+        "uniqueCode": null,
+        "storageLocationCode": null,
+        "supplierId": null,
+        "serial": "9",
+        "type": "计划出库",
+        "userId": null,
+        "scrq": "2023-03-10 15:44:41",
+        "supplierName": "123123",
+        "producDate": null,
+        "wllbCode": "123123123",
+        "page": 0,
+        "limit": 0,
+        "askGoodsType": null,
+        "startTime": null,
+        "endTime": null,
+        "process": null,
+        "askGoodsApplyType": null
+      },
+      {
+        "id": "11",
+        "askGoodsId": null,
+        "entryNumber": null,
+        "productionCode": null,
+        "storageLocationName": "3号库位",
+        "userName": "admin",
+        "materialId": null,
+        "wbs": null,
+        "measurementId": null,
+        "num": "4",
+        "outNum": null,
+        "askGoodsCode": null,
+        "companyNumber": null,
+        "sqrq": null,
+        "departmentId": null,
+        "departmentName": null,
+        "department": "仓储部门",
+        "sourceType": null,
+        "moveType": null,
+        "materialName": "材料2",
+        "materialCode": null,
+        "uniqueCode": null,
+        "storageLocationCode": null,
+        "supplierId": null,
+        "serial": "8",
+        "type": "计划出库",
+        "userId": null,
+        "scrq": "2023-03-10 15:41:31",
+        "supplierName": "123123",
+        "producDate": null,
+        "wllbCode": "123123123",
+        "page": 0,
+        "limit": 0,
+        "askGoodsType": null,
+        "startTime": null,
+        "endTime": null,
+        "process": null,
+        "askGoodsApplyType": null
+      }
+    ],
+    "pageNum": 1,
+    "pageSize": 10,
+    "size": 10,
+    "startRow": 1,
+    "endRow": 10,
+    "pages": 2,
+    "prePage": 0,
+    "nextPage": 2,
+    "isFirstPage": true,
+    "isLastPage": false,
+    "hasPreviousPage": false,
+    "hasNextPage": true,
+    "navigatePages": 8,
+    "navigatepageNums": [
+      1,
+      2
+    ],
+    "navigateFirstPage": 1,
+    "navigateLastPage": 2
+  }
+}

+ 427 - 0
cypress/fixtures/raw-out-stream/search1.json

@@ -0,0 +1,427 @@
+{
+  "msg": "200",
+  "data": {
+    "total": 14,
+    "list": [
+      {
+        "id": "14",
+        "askGoodsId": null,
+        "entryNumber": null,
+        "productionCode": null,
+        "storageLocationName": "3号库位",
+        "userName": "admin",
+        "materialId": null,
+        "wbs": null,
+        "measurementId": null,
+        "num": "4",
+        "outNum": null,
+        "askGoodsCode": null,
+        "companyNumber": null,
+        "sqrq": null,
+        "departmentId": null,
+        "departmentName": null,
+        "department": "仓储部门",
+        "sourceType": null,
+        "moveType": null,
+        "materialName": "材料2",
+        "materialCode": null,
+        "uniqueCode": null,
+        "storageLocationCode": null,
+        "supplierId": null,
+        "serial": "11",
+        "type": "计划出库",
+        "userId": null,
+        "scrq": "2023-03-10 15:54:09",
+        "supplierName": "123123",
+        "producDate": null,
+        "wllbCode": "search1",
+        "page": 0,
+        "limit": 0,
+        "askGoodsType": null,
+        "startTime": null,
+        "endTime": null,
+        "process": null,
+        "askGoodsApplyType": null
+      },
+      {
+        "id": "13",
+        "askGoodsId": null,
+        "entryNumber": null,
+        "productionCode": null,
+        "storageLocationName": "3号库位",
+        "userName": "admin",
+        "materialId": null,
+        "wbs": null,
+        "measurementId": null,
+        "num": "4",
+        "outNum": null,
+        "askGoodsCode": null,
+        "companyNumber": null,
+        "sqrq": null,
+        "departmentId": null,
+        "departmentName": null,
+        "department": "仓储部门",
+        "sourceType": null,
+        "moveType": null,
+        "materialName": "材料2",
+        "materialCode": null,
+        "uniqueCode": null,
+        "storageLocationCode": null,
+        "supplierId": null,
+        "serial": "10",
+        "type": "计划出库",
+        "userId": null,
+        "scrq": "2023-03-10 15:48:03",
+        "supplierName": "123123",
+        "producDate": null,
+        "wllbCode": "123123123",
+        "page": 0,
+        "limit": 0,
+        "askGoodsType": null,
+        "startTime": null,
+        "endTime": null,
+        "process": null,
+        "askGoodsApplyType": null
+      },
+      {
+        "id": "12",
+        "askGoodsId": null,
+        "entryNumber": null,
+        "productionCode": null,
+        "storageLocationName": "3号库位",
+        "userName": "admin",
+        "materialId": null,
+        "wbs": null,
+        "measurementId": null,
+        "num": "4",
+        "outNum": null,
+        "askGoodsCode": null,
+        "companyNumber": null,
+        "sqrq": null,
+        "departmentId": null,
+        "departmentName": null,
+        "department": "仓储部门",
+        "sourceType": null,
+        "moveType": null,
+        "materialName": "材料2",
+        "materialCode": null,
+        "uniqueCode": null,
+        "storageLocationCode": null,
+        "supplierId": null,
+        "serial": "9",
+        "type": "计划出库",
+        "userId": null,
+        "scrq": "2023-03-10 15:44:41",
+        "supplierName": "123123",
+        "producDate": null,
+        "wllbCode": "123123123",
+        "page": 0,
+        "limit": 0,
+        "askGoodsType": null,
+        "startTime": null,
+        "endTime": null,
+        "process": null,
+        "askGoodsApplyType": null
+      },
+      {
+        "id": "11",
+        "askGoodsId": null,
+        "entryNumber": null,
+        "productionCode": null,
+        "storageLocationName": "3号库位",
+        "userName": "admin",
+        "materialId": null,
+        "wbs": null,
+        "measurementId": null,
+        "num": "4",
+        "outNum": null,
+        "askGoodsCode": null,
+        "companyNumber": null,
+        "sqrq": null,
+        "departmentId": null,
+        "departmentName": null,
+        "department": "仓储部门",
+        "sourceType": null,
+        "moveType": null,
+        "materialName": "材料2",
+        "materialCode": null,
+        "uniqueCode": null,
+        "storageLocationCode": null,
+        "supplierId": null,
+        "serial": "8",
+        "type": "计划出库",
+        "userId": null,
+        "scrq": "2023-03-10 15:41:31",
+        "supplierName": "123123",
+        "producDate": null,
+        "wllbCode": "123123123",
+        "page": 0,
+        "limit": 0,
+        "askGoodsType": null,
+        "startTime": null,
+        "endTime": null,
+        "process": null,
+        "askGoodsApplyType": null
+      },
+      {
+        "id": "10",
+        "askGoodsId": null,
+        "entryNumber": null,
+        "productionCode": null,
+        "storageLocationName": "3号库位",
+        "userName": "admin",
+        "materialId": null,
+        "wbs": null,
+        "measurementId": null,
+        "num": "4",
+        "outNum": null,
+        "askGoodsCode": null,
+        "companyNumber": null,
+        "sqrq": null,
+        "departmentId": null,
+        "departmentName": null,
+        "department": "仓储部门",
+        "sourceType": null,
+        "moveType": null,
+        "materialName": "材料2",
+        "materialCode": null,
+        "uniqueCode": null,
+        "storageLocationCode": null,
+        "supplierId": null,
+        "serial": "7",
+        "type": "计划出库",
+        "userId": null,
+        "scrq": "2023-03-10 15:39:46",
+        "supplierName": "123123",
+        "producDate": null,
+        "wllbCode": "123123123",
+        "page": 0,
+        "limit": 0,
+        "askGoodsType": null,
+        "startTime": null,
+        "endTime": null,
+        "process": null,
+        "askGoodsApplyType": null
+      },
+      {
+        "id": "9",
+        "askGoodsId": null,
+        "entryNumber": null,
+        "productionCode": null,
+        "storageLocationName": "3号库位",
+        "userName": "admin",
+        "materialId": null,
+        "wbs": null,
+        "measurementId": null,
+        "num": "4",
+        "outNum": null,
+        "askGoodsCode": null,
+        "companyNumber": null,
+        "sqrq": null,
+        "departmentId": null,
+        "departmentName": null,
+        "department": "仓储部门",
+        "sourceType": null,
+        "moveType": null,
+        "materialName": "材料2",
+        "materialCode": null,
+        "uniqueCode": null,
+        "storageLocationCode": null,
+        "supplierId": null,
+        "serial": "6",
+        "type": "计划出库",
+        "userId": null,
+        "scrq": "2023-03-10 15:35:02",
+        "supplierName": "123123",
+        "producDate": null,
+        "wllbCode": "123123123",
+        "page": 0,
+        "limit": 0,
+        "askGoodsType": null,
+        "startTime": null,
+        "endTime": null,
+        "process": null,
+        "askGoodsApplyType": null
+      },
+      {
+        "id": "8",
+        "askGoodsId": null,
+        "entryNumber": null,
+        "productionCode": null,
+        "storageLocationName": "3号库位",
+        "userName": "admin",
+        "materialId": null,
+        "wbs": null,
+        "measurementId": null,
+        "num": "4",
+        "outNum": null,
+        "askGoodsCode": null,
+        "companyNumber": null,
+        "sqrq": null,
+        "departmentId": null,
+        "departmentName": null,
+        "department": "仓储部门",
+        "sourceType": null,
+        "moveType": null,
+        "materialName": "材料2",
+        "materialCode": null,
+        "uniqueCode": null,
+        "storageLocationCode": null,
+        "supplierId": null,
+        "serial": "5",
+        "type": "计划出库",
+        "userId": null,
+        "scrq": "2023-03-10 15:32:31",
+        "supplierName": "123123",
+        "producDate": null,
+        "wllbCode": "123123123",
+        "page": 0,
+        "limit": 0,
+        "askGoodsType": null,
+        "startTime": null,
+        "endTime": null,
+        "process": null,
+        "askGoodsApplyType": null
+      },
+      {
+        "id": "7",
+        "askGoodsId": null,
+        "entryNumber": null,
+        "productionCode": null,
+        "storageLocationName": "3号库位",
+        "userName": "admin",
+        "materialId": null,
+        "wbs": null,
+        "measurementId": null,
+        "num": "4",
+        "outNum": null,
+        "askGoodsCode": null,
+        "companyNumber": null,
+        "sqrq": null,
+        "departmentId": null,
+        "departmentName": null,
+        "department": "仓储部门",
+        "sourceType": null,
+        "moveType": null,
+        "materialName": "材料2",
+        "materialCode": null,
+        "uniqueCode": null,
+        "storageLocationCode": null,
+        "supplierId": null,
+        "serial": "4",
+        "type": "计划出库",
+        "userId": null,
+        "scrq": "2023-03-10 15:26:39",
+        "supplierName": "123123",
+        "producDate": null,
+        "wllbCode": "123123123",
+        "page": 0,
+        "limit": 0,
+        "askGoodsType": null,
+        "startTime": null,
+        "endTime": null,
+        "process": null,
+        "askGoodsApplyType": null
+      },
+      {
+        "id": "6",
+        "askGoodsId": null,
+        "entryNumber": null,
+        "productionCode": null,
+        "storageLocationName": "3号库位",
+        "userName": "admin",
+        "materialId": null,
+        "wbs": null,
+        "measurementId": null,
+        "num": "4",
+        "outNum": null,
+        "askGoodsCode": null,
+        "companyNumber": null,
+        "sqrq": null,
+        "departmentId": null,
+        "departmentName": null,
+        "department": "仓储部门",
+        "sourceType": null,
+        "moveType": null,
+        "materialName": null,
+        "materialCode": null,
+        "uniqueCode": null,
+        "storageLocationCode": null,
+        "supplierId": null,
+        "serial": "2",
+        "type": "计划出库",
+        "userId": null,
+        "scrq": "2023-03-10 14:12:54",
+        "supplierName": "123123",
+        "producDate": null,
+        "wllbCode": null,
+        "page": 0,
+        "limit": 0,
+        "askGoodsType": null,
+        "startTime": null,
+        "endTime": null,
+        "process": null,
+        "askGoodsApplyType": null
+      },
+      {
+        "id": "5",
+        "askGoodsId": null,
+        "entryNumber": null,
+        "productionCode": null,
+        "storageLocationName": "3号库位",
+        "userName": "admin",
+        "materialId": null,
+        "wbs": null,
+        "measurementId": null,
+        "num": "4",
+        "outNum": null,
+        "askGoodsCode": null,
+        "companyNumber": null,
+        "sqrq": null,
+        "departmentId": null,
+        "departmentName": null,
+        "department": "仓储部门",
+        "sourceType": null,
+        "moveType": null,
+        "materialName": null,
+        "materialCode": null,
+        "uniqueCode": null,
+        "storageLocationCode": null,
+        "supplierId": null,
+        "serial": "1",
+        "type": "计划出库",
+        "userId": null,
+        "scrq": "2023-03-10 14:05:18",
+        "supplierName": "123123",
+        "producDate": null,
+        "wllbCode": null,
+        "page": 0,
+        "limit": 0,
+        "askGoodsType": null,
+        "startTime": null,
+        "endTime": null,
+        "process": null,
+        "askGoodsApplyType": null
+      }
+    ],
+    "pageNum": 1,
+    "pageSize": 10,
+    "size": 10,
+    "startRow": 1,
+    "endRow": 10,
+    "pages": 2,
+    "prePage": 0,
+    "nextPage": 2,
+    "isFirstPage": true,
+    "isLastPage": false,
+    "hasPreviousPage": false,
+    "hasNextPage": true,
+    "navigatePages": 8,
+    "navigatepageNums": [
+      1,
+      2
+    ],
+    "navigateFirstPage": 1,
+    "navigateLastPage": 2
+  }
+}

+ 427 - 0
cypress/fixtures/raw-out-stream/search2.json

@@ -0,0 +1,427 @@
+{
+  "msg": "200",
+  "data": {
+    "total": 14,
+    "list": [
+      {
+        "id": "14",
+        "askGoodsId": null,
+        "entryNumber": null,
+        "productionCode": null,
+        "storageLocationName": "3号库位",
+        "userName": "admin",
+        "materialId": null,
+        "wbs": null,
+        "measurementId": null,
+        "num": "4",
+        "outNum": null,
+        "askGoodsCode": null,
+        "companyNumber": null,
+        "sqrq": null,
+        "departmentId": null,
+        "departmentName": null,
+        "department": "仓储部门",
+        "sourceType": null,
+        "moveType": null,
+        "materialName": "材料2",
+        "materialCode": null,
+        "uniqueCode": null,
+        "storageLocationCode": null,
+        "supplierId": null,
+        "serial": "11",
+        "type": "计划出库",
+        "userId": null,
+        "scrq": "2023-03-10 15:54:09",
+        "supplierName": "123123",
+        "producDate": null,
+        "wllbCode": "search2",
+        "page": 0,
+        "limit": 0,
+        "askGoodsType": null,
+        "startTime": null,
+        "endTime": null,
+        "process": null,
+        "askGoodsApplyType": null
+      },
+      {
+        "id": "13",
+        "askGoodsId": null,
+        "entryNumber": null,
+        "productionCode": null,
+        "storageLocationName": "3号库位",
+        "userName": "admin",
+        "materialId": null,
+        "wbs": null,
+        "measurementId": null,
+        "num": "4",
+        "outNum": null,
+        "askGoodsCode": null,
+        "companyNumber": null,
+        "sqrq": null,
+        "departmentId": null,
+        "departmentName": null,
+        "department": "仓储部门",
+        "sourceType": null,
+        "moveType": null,
+        "materialName": "材料2",
+        "materialCode": null,
+        "uniqueCode": null,
+        "storageLocationCode": null,
+        "supplierId": null,
+        "serial": "10",
+        "type": "计划出库",
+        "userId": null,
+        "scrq": "2023-03-10 15:48:03",
+        "supplierName": "123123",
+        "producDate": null,
+        "wllbCode": "123123123",
+        "page": 0,
+        "limit": 0,
+        "askGoodsType": null,
+        "startTime": null,
+        "endTime": null,
+        "process": null,
+        "askGoodsApplyType": null
+      },
+      {
+        "id": "12",
+        "askGoodsId": null,
+        "entryNumber": null,
+        "productionCode": null,
+        "storageLocationName": "3号库位",
+        "userName": "admin",
+        "materialId": null,
+        "wbs": null,
+        "measurementId": null,
+        "num": "4",
+        "outNum": null,
+        "askGoodsCode": null,
+        "companyNumber": null,
+        "sqrq": null,
+        "departmentId": null,
+        "departmentName": null,
+        "department": "仓储部门",
+        "sourceType": null,
+        "moveType": null,
+        "materialName": "材料2",
+        "materialCode": null,
+        "uniqueCode": null,
+        "storageLocationCode": null,
+        "supplierId": null,
+        "serial": "9",
+        "type": "计划出库",
+        "userId": null,
+        "scrq": "2023-03-10 15:44:41",
+        "supplierName": "123123",
+        "producDate": null,
+        "wllbCode": "123123123",
+        "page": 0,
+        "limit": 0,
+        "askGoodsType": null,
+        "startTime": null,
+        "endTime": null,
+        "process": null,
+        "askGoodsApplyType": null
+      },
+      {
+        "id": "11",
+        "askGoodsId": null,
+        "entryNumber": null,
+        "productionCode": null,
+        "storageLocationName": "3号库位",
+        "userName": "admin",
+        "materialId": null,
+        "wbs": null,
+        "measurementId": null,
+        "num": "4",
+        "outNum": null,
+        "askGoodsCode": null,
+        "companyNumber": null,
+        "sqrq": null,
+        "departmentId": null,
+        "departmentName": null,
+        "department": "仓储部门",
+        "sourceType": null,
+        "moveType": null,
+        "materialName": "材料2",
+        "materialCode": null,
+        "uniqueCode": null,
+        "storageLocationCode": null,
+        "supplierId": null,
+        "serial": "8",
+        "type": "计划出库",
+        "userId": null,
+        "scrq": "2023-03-10 15:41:31",
+        "supplierName": "123123",
+        "producDate": null,
+        "wllbCode": "123123123",
+        "page": 0,
+        "limit": 0,
+        "askGoodsType": null,
+        "startTime": null,
+        "endTime": null,
+        "process": null,
+        "askGoodsApplyType": null
+      },
+      {
+        "id": "10",
+        "askGoodsId": null,
+        "entryNumber": null,
+        "productionCode": null,
+        "storageLocationName": "3号库位",
+        "userName": "admin",
+        "materialId": null,
+        "wbs": null,
+        "measurementId": null,
+        "num": "4",
+        "outNum": null,
+        "askGoodsCode": null,
+        "companyNumber": null,
+        "sqrq": null,
+        "departmentId": null,
+        "departmentName": null,
+        "department": "仓储部门",
+        "sourceType": null,
+        "moveType": null,
+        "materialName": "材料2",
+        "materialCode": null,
+        "uniqueCode": null,
+        "storageLocationCode": null,
+        "supplierId": null,
+        "serial": "7",
+        "type": "计划出库",
+        "userId": null,
+        "scrq": "2023-03-10 15:39:46",
+        "supplierName": "123123",
+        "producDate": null,
+        "wllbCode": "123123123",
+        "page": 0,
+        "limit": 0,
+        "askGoodsType": null,
+        "startTime": null,
+        "endTime": null,
+        "process": null,
+        "askGoodsApplyType": null
+      },
+      {
+        "id": "9",
+        "askGoodsId": null,
+        "entryNumber": null,
+        "productionCode": null,
+        "storageLocationName": "3号库位",
+        "userName": "admin",
+        "materialId": null,
+        "wbs": null,
+        "measurementId": null,
+        "num": "4",
+        "outNum": null,
+        "askGoodsCode": null,
+        "companyNumber": null,
+        "sqrq": null,
+        "departmentId": null,
+        "departmentName": null,
+        "department": "仓储部门",
+        "sourceType": null,
+        "moveType": null,
+        "materialName": "材料2",
+        "materialCode": null,
+        "uniqueCode": null,
+        "storageLocationCode": null,
+        "supplierId": null,
+        "serial": "6",
+        "type": "计划出库",
+        "userId": null,
+        "scrq": "2023-03-10 15:35:02",
+        "supplierName": "123123",
+        "producDate": null,
+        "wllbCode": "123123123",
+        "page": 0,
+        "limit": 0,
+        "askGoodsType": null,
+        "startTime": null,
+        "endTime": null,
+        "process": null,
+        "askGoodsApplyType": null
+      },
+      {
+        "id": "8",
+        "askGoodsId": null,
+        "entryNumber": null,
+        "productionCode": null,
+        "storageLocationName": "3号库位",
+        "userName": "admin",
+        "materialId": null,
+        "wbs": null,
+        "measurementId": null,
+        "num": "4",
+        "outNum": null,
+        "askGoodsCode": null,
+        "companyNumber": null,
+        "sqrq": null,
+        "departmentId": null,
+        "departmentName": null,
+        "department": "仓储部门",
+        "sourceType": null,
+        "moveType": null,
+        "materialName": "材料2",
+        "materialCode": null,
+        "uniqueCode": null,
+        "storageLocationCode": null,
+        "supplierId": null,
+        "serial": "5",
+        "type": "计划出库",
+        "userId": null,
+        "scrq": "2023-03-10 15:32:31",
+        "supplierName": "123123",
+        "producDate": null,
+        "wllbCode": "123123123",
+        "page": 0,
+        "limit": 0,
+        "askGoodsType": null,
+        "startTime": null,
+        "endTime": null,
+        "process": null,
+        "askGoodsApplyType": null
+      },
+      {
+        "id": "7",
+        "askGoodsId": null,
+        "entryNumber": null,
+        "productionCode": null,
+        "storageLocationName": "3号库位",
+        "userName": "admin",
+        "materialId": null,
+        "wbs": null,
+        "measurementId": null,
+        "num": "4",
+        "outNum": null,
+        "askGoodsCode": null,
+        "companyNumber": null,
+        "sqrq": null,
+        "departmentId": null,
+        "departmentName": null,
+        "department": "仓储部门",
+        "sourceType": null,
+        "moveType": null,
+        "materialName": "材料2",
+        "materialCode": null,
+        "uniqueCode": null,
+        "storageLocationCode": null,
+        "supplierId": null,
+        "serial": "4",
+        "type": "计划出库",
+        "userId": null,
+        "scrq": "2023-03-10 15:26:39",
+        "supplierName": "123123",
+        "producDate": null,
+        "wllbCode": "123123123",
+        "page": 0,
+        "limit": 0,
+        "askGoodsType": null,
+        "startTime": null,
+        "endTime": null,
+        "process": null,
+        "askGoodsApplyType": null
+      },
+      {
+        "id": "6",
+        "askGoodsId": null,
+        "entryNumber": null,
+        "productionCode": null,
+        "storageLocationName": "3号库位",
+        "userName": "admin",
+        "materialId": null,
+        "wbs": null,
+        "measurementId": null,
+        "num": "4",
+        "outNum": null,
+        "askGoodsCode": null,
+        "companyNumber": null,
+        "sqrq": null,
+        "departmentId": null,
+        "departmentName": null,
+        "department": "仓储部门",
+        "sourceType": null,
+        "moveType": null,
+        "materialName": null,
+        "materialCode": null,
+        "uniqueCode": null,
+        "storageLocationCode": null,
+        "supplierId": null,
+        "serial": "2",
+        "type": "计划出库",
+        "userId": null,
+        "scrq": "2023-03-10 14:12:54",
+        "supplierName": "123123",
+        "producDate": null,
+        "wllbCode": null,
+        "page": 0,
+        "limit": 0,
+        "askGoodsType": null,
+        "startTime": null,
+        "endTime": null,
+        "process": null,
+        "askGoodsApplyType": null
+      },
+      {
+        "id": "5",
+        "askGoodsId": null,
+        "entryNumber": null,
+        "productionCode": null,
+        "storageLocationName": "3号库位",
+        "userName": "admin",
+        "materialId": null,
+        "wbs": null,
+        "measurementId": null,
+        "num": "4",
+        "outNum": null,
+        "askGoodsCode": null,
+        "companyNumber": null,
+        "sqrq": null,
+        "departmentId": null,
+        "departmentName": null,
+        "department": "仓储部门",
+        "sourceType": null,
+        "moveType": null,
+        "materialName": null,
+        "materialCode": null,
+        "uniqueCode": null,
+        "storageLocationCode": null,
+        "supplierId": null,
+        "serial": "1",
+        "type": "计划出库",
+        "userId": null,
+        "scrq": "2023-03-10 14:05:18",
+        "supplierName": "123123",
+        "producDate": null,
+        "wllbCode": null,
+        "page": 0,
+        "limit": 0,
+        "askGoodsType": null,
+        "startTime": null,
+        "endTime": null,
+        "process": null,
+        "askGoodsApplyType": null
+      }
+    ],
+    "pageNum": 1,
+    "pageSize": 10,
+    "size": 10,
+    "startRow": 1,
+    "endRow": 10,
+    "pages": 2,
+    "prePage": 0,
+    "nextPage": 2,
+    "isFirstPage": true,
+    "isLastPage": false,
+    "hasPreviousPage": false,
+    "hasNextPage": true,
+    "navigatePages": 8,
+    "navigatepageNums": [
+      1,
+      2
+    ],
+    "navigateFirstPage": 1,
+    "navigateLastPage": 2
+  }
+}

+ 427 - 0
cypress/fixtures/raw-out-stream/search3.json

@@ -0,0 +1,427 @@
+{
+  "msg": "200",
+  "data": {
+    "total": 14,
+    "list": [
+      {
+        "id": "14",
+        "askGoodsId": null,
+        "entryNumber": null,
+        "productionCode": null,
+        "storageLocationName": "3号库位",
+        "userName": "admin",
+        "materialId": null,
+        "wbs": null,
+        "measurementId": null,
+        "num": "4",
+        "outNum": null,
+        "askGoodsCode": null,
+        "companyNumber": null,
+        "sqrq": null,
+        "departmentId": null,
+        "departmentName": null,
+        "department": "仓储部门",
+        "sourceType": null,
+        "moveType": null,
+        "materialName": "材料2",
+        "materialCode": null,
+        "uniqueCode": null,
+        "storageLocationCode": null,
+        "supplierId": null,
+        "serial": "11",
+        "type": "计划出库",
+        "userId": null,
+        "scrq": "2023-03-10 15:54:09",
+        "supplierName": "123123",
+        "producDate": null,
+        "wllbCode": "search3",
+        "page": 0,
+        "limit": 0,
+        "askGoodsType": null,
+        "startTime": null,
+        "endTime": null,
+        "process": null,
+        "askGoodsApplyType": null
+      },
+      {
+        "id": "13",
+        "askGoodsId": null,
+        "entryNumber": null,
+        "productionCode": null,
+        "storageLocationName": "3号库位",
+        "userName": "admin",
+        "materialId": null,
+        "wbs": null,
+        "measurementId": null,
+        "num": "4",
+        "outNum": null,
+        "askGoodsCode": null,
+        "companyNumber": null,
+        "sqrq": null,
+        "departmentId": null,
+        "departmentName": null,
+        "department": "仓储部门",
+        "sourceType": null,
+        "moveType": null,
+        "materialName": "材料2",
+        "materialCode": null,
+        "uniqueCode": null,
+        "storageLocationCode": null,
+        "supplierId": null,
+        "serial": "10",
+        "type": "计划出库",
+        "userId": null,
+        "scrq": "2023-03-10 15:48:03",
+        "supplierName": "123123",
+        "producDate": null,
+        "wllbCode": "123123123",
+        "page": 0,
+        "limit": 0,
+        "askGoodsType": null,
+        "startTime": null,
+        "endTime": null,
+        "process": null,
+        "askGoodsApplyType": null
+      },
+      {
+        "id": "12",
+        "askGoodsId": null,
+        "entryNumber": null,
+        "productionCode": null,
+        "storageLocationName": "3号库位",
+        "userName": "admin",
+        "materialId": null,
+        "wbs": null,
+        "measurementId": null,
+        "num": "4",
+        "outNum": null,
+        "askGoodsCode": null,
+        "companyNumber": null,
+        "sqrq": null,
+        "departmentId": null,
+        "departmentName": null,
+        "department": "仓储部门",
+        "sourceType": null,
+        "moveType": null,
+        "materialName": "材料2",
+        "materialCode": null,
+        "uniqueCode": null,
+        "storageLocationCode": null,
+        "supplierId": null,
+        "serial": "9",
+        "type": "计划出库",
+        "userId": null,
+        "scrq": "2023-03-10 15:44:41",
+        "supplierName": "123123",
+        "producDate": null,
+        "wllbCode": "123123123",
+        "page": 0,
+        "limit": 0,
+        "askGoodsType": null,
+        "startTime": null,
+        "endTime": null,
+        "process": null,
+        "askGoodsApplyType": null
+      },
+      {
+        "id": "11",
+        "askGoodsId": null,
+        "entryNumber": null,
+        "productionCode": null,
+        "storageLocationName": "3号库位",
+        "userName": "admin",
+        "materialId": null,
+        "wbs": null,
+        "measurementId": null,
+        "num": "4",
+        "outNum": null,
+        "askGoodsCode": null,
+        "companyNumber": null,
+        "sqrq": null,
+        "departmentId": null,
+        "departmentName": null,
+        "department": "仓储部门",
+        "sourceType": null,
+        "moveType": null,
+        "materialName": "材料2",
+        "materialCode": null,
+        "uniqueCode": null,
+        "storageLocationCode": null,
+        "supplierId": null,
+        "serial": "8",
+        "type": "计划出库",
+        "userId": null,
+        "scrq": "2023-03-10 15:41:31",
+        "supplierName": "123123",
+        "producDate": null,
+        "wllbCode": "123123123",
+        "page": 0,
+        "limit": 0,
+        "askGoodsType": null,
+        "startTime": null,
+        "endTime": null,
+        "process": null,
+        "askGoodsApplyType": null
+      },
+      {
+        "id": "10",
+        "askGoodsId": null,
+        "entryNumber": null,
+        "productionCode": null,
+        "storageLocationName": "3号库位",
+        "userName": "admin",
+        "materialId": null,
+        "wbs": null,
+        "measurementId": null,
+        "num": "4",
+        "outNum": null,
+        "askGoodsCode": null,
+        "companyNumber": null,
+        "sqrq": null,
+        "departmentId": null,
+        "departmentName": null,
+        "department": "仓储部门",
+        "sourceType": null,
+        "moveType": null,
+        "materialName": "材料2",
+        "materialCode": null,
+        "uniqueCode": null,
+        "storageLocationCode": null,
+        "supplierId": null,
+        "serial": "7",
+        "type": "计划出库",
+        "userId": null,
+        "scrq": "2023-03-10 15:39:46",
+        "supplierName": "123123",
+        "producDate": null,
+        "wllbCode": "123123123",
+        "page": 0,
+        "limit": 0,
+        "askGoodsType": null,
+        "startTime": null,
+        "endTime": null,
+        "process": null,
+        "askGoodsApplyType": null
+      },
+      {
+        "id": "9",
+        "askGoodsId": null,
+        "entryNumber": null,
+        "productionCode": null,
+        "storageLocationName": "3号库位",
+        "userName": "admin",
+        "materialId": null,
+        "wbs": null,
+        "measurementId": null,
+        "num": "4",
+        "outNum": null,
+        "askGoodsCode": null,
+        "companyNumber": null,
+        "sqrq": null,
+        "departmentId": null,
+        "departmentName": null,
+        "department": "仓储部门",
+        "sourceType": null,
+        "moveType": null,
+        "materialName": "材料2",
+        "materialCode": null,
+        "uniqueCode": null,
+        "storageLocationCode": null,
+        "supplierId": null,
+        "serial": "6",
+        "type": "计划出库",
+        "userId": null,
+        "scrq": "2023-03-10 15:35:02",
+        "supplierName": "123123",
+        "producDate": null,
+        "wllbCode": "123123123",
+        "page": 0,
+        "limit": 0,
+        "askGoodsType": null,
+        "startTime": null,
+        "endTime": null,
+        "process": null,
+        "askGoodsApplyType": null
+      },
+      {
+        "id": "8",
+        "askGoodsId": null,
+        "entryNumber": null,
+        "productionCode": null,
+        "storageLocationName": "3号库位",
+        "userName": "admin",
+        "materialId": null,
+        "wbs": null,
+        "measurementId": null,
+        "num": "4",
+        "outNum": null,
+        "askGoodsCode": null,
+        "companyNumber": null,
+        "sqrq": null,
+        "departmentId": null,
+        "departmentName": null,
+        "department": "仓储部门",
+        "sourceType": null,
+        "moveType": null,
+        "materialName": "材料2",
+        "materialCode": null,
+        "uniqueCode": null,
+        "storageLocationCode": null,
+        "supplierId": null,
+        "serial": "5",
+        "type": "计划出库",
+        "userId": null,
+        "scrq": "2023-03-10 15:32:31",
+        "supplierName": "123123",
+        "producDate": null,
+        "wllbCode": "123123123",
+        "page": 0,
+        "limit": 0,
+        "askGoodsType": null,
+        "startTime": null,
+        "endTime": null,
+        "process": null,
+        "askGoodsApplyType": null
+      },
+      {
+        "id": "7",
+        "askGoodsId": null,
+        "entryNumber": null,
+        "productionCode": null,
+        "storageLocationName": "3号库位",
+        "userName": "admin",
+        "materialId": null,
+        "wbs": null,
+        "measurementId": null,
+        "num": "4",
+        "outNum": null,
+        "askGoodsCode": null,
+        "companyNumber": null,
+        "sqrq": null,
+        "departmentId": null,
+        "departmentName": null,
+        "department": "仓储部门",
+        "sourceType": null,
+        "moveType": null,
+        "materialName": "材料2",
+        "materialCode": null,
+        "uniqueCode": null,
+        "storageLocationCode": null,
+        "supplierId": null,
+        "serial": "4",
+        "type": "计划出库",
+        "userId": null,
+        "scrq": "2023-03-10 15:26:39",
+        "supplierName": "123123",
+        "producDate": null,
+        "wllbCode": "123123123",
+        "page": 0,
+        "limit": 0,
+        "askGoodsType": null,
+        "startTime": null,
+        "endTime": null,
+        "process": null,
+        "askGoodsApplyType": null
+      },
+      {
+        "id": "6",
+        "askGoodsId": null,
+        "entryNumber": null,
+        "productionCode": null,
+        "storageLocationName": "3号库位",
+        "userName": "admin",
+        "materialId": null,
+        "wbs": null,
+        "measurementId": null,
+        "num": "4",
+        "outNum": null,
+        "askGoodsCode": null,
+        "companyNumber": null,
+        "sqrq": null,
+        "departmentId": null,
+        "departmentName": null,
+        "department": "仓储部门",
+        "sourceType": null,
+        "moveType": null,
+        "materialName": null,
+        "materialCode": null,
+        "uniqueCode": null,
+        "storageLocationCode": null,
+        "supplierId": null,
+        "serial": "2",
+        "type": "计划出库",
+        "userId": null,
+        "scrq": "2023-03-10 14:12:54",
+        "supplierName": "123123",
+        "producDate": null,
+        "wllbCode": null,
+        "page": 0,
+        "limit": 0,
+        "askGoodsType": null,
+        "startTime": null,
+        "endTime": null,
+        "process": null,
+        "askGoodsApplyType": null
+      },
+      {
+        "id": "5",
+        "askGoodsId": null,
+        "entryNumber": null,
+        "productionCode": null,
+        "storageLocationName": "3号库位",
+        "userName": "admin",
+        "materialId": null,
+        "wbs": null,
+        "measurementId": null,
+        "num": "4",
+        "outNum": null,
+        "askGoodsCode": null,
+        "companyNumber": null,
+        "sqrq": null,
+        "departmentId": null,
+        "departmentName": null,
+        "department": "仓储部门",
+        "sourceType": null,
+        "moveType": null,
+        "materialName": null,
+        "materialCode": null,
+        "uniqueCode": null,
+        "storageLocationCode": null,
+        "supplierId": null,
+        "serial": "1",
+        "type": "计划出库",
+        "userId": null,
+        "scrq": "2023-03-10 14:05:18",
+        "supplierName": "123123",
+        "producDate": null,
+        "wllbCode": null,
+        "page": 0,
+        "limit": 0,
+        "askGoodsType": null,
+        "startTime": null,
+        "endTime": null,
+        "process": null,
+        "askGoodsApplyType": null
+      }
+    ],
+    "pageNum": 1,
+    "pageSize": 10,
+    "size": 10,
+    "startRow": 1,
+    "endRow": 10,
+    "pages": 2,
+    "prePage": 0,
+    "nextPage": 2,
+    "isFirstPage": true,
+    "isLastPage": false,
+    "hasPreviousPage": false,
+    "hasNextPage": true,
+    "navigatePages": 8,
+    "navigatepageNums": [
+      1,
+      2
+    ],
+    "navigateFirstPage": 1,
+    "navigateLastPage": 2
+  }
+}

+ 1 - 1
packages/app/public/index.html

@@ -5,7 +5,7 @@
   <meta charset="UTF-8">
   <meta http-equiv="X-UA-Compatible" content="IE=edge">
   <meta name="viewport" content="width=device-width, initial-scale=1.0">
-  <link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
+  <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
   <meta name="renderer" content="webkit" />
   <meta http-equiv="X-UA-Compatible" content="IE=edge" />
   <meta http-equiv="Pragma" content="no-cache" />