Merge branch 'dev-scheduling' of http://42.192.7.176:3000/suojin/jonhon-mes-web into dev-scheduling

dev-scheduling
zhangdi 2 months ago
commit 3c9d596d54
  1. 2
      src/store/index.js
  2. 39
      src/store/modules/client.js
  3. 11
      src/views/inboundOutboundManagement/glassCakeOutbound/index.vue
  4. 15
      src/views/inboundOutboundManagement/materialIssuing.vue
  5. 15
      src/views/inboundOutboundManagement/otherIssuing/index.vue
  6. 17
      src/views/inboundOutboundManagement/otherReceiving.vue
  7. 12
      src/views/inboundOutboundManagement/returnReceiving.vue
  8. 12
      src/views/inboundOutboundManagement/warehouseTransfer/index.vue
  9. 20
      src/views/monitor/log/api.vue
  10. 687
      src/views/statisticalAnalysis/warehouseAnalysis/inventorySummary.vue

@ -4,6 +4,7 @@ import common from './modules/common';
import tags from './modules/tags';
import logs from './modules/logs';
import dict from './modules/dict';
import client from './modules/client'
import getters from './getters';
const store = createStore({
@ -13,6 +14,7 @@ const store = createStore({
logs,
tags,
dict,
client
},
getters,
});

@ -0,0 +1,39 @@
const params = {
state: {
// 其它入库
otherInParams: {},
// 物料入库
materialInParams: {},
// 转移入库
exchangeInParams: {},
// 其他出库
otherOutParams: {},
// 物料出库
materialOutParams: {},
// 领料出库
exchangeOutParams: {},
// 玻璃饼出库
pieOutParams: {},
},
mutations: {
//保存数据
CHANGE_ACTIVE_LI(state, data) {
state[data.title] = data.form;
},
//清除数据
// SET_CLEAR_DATA(state,data){
// state.id=data
// }
},
actions: {
//保存数据
changeSetting({ commit }, data) {
commit("CHANGE_ACTIVE_LI", data);
},
//清除数据
// clearVuex({ commit }) {
// commit("SET_CLEAR_DATA", null);
// },
},
}
export default params;

@ -349,12 +349,21 @@ export default {
checkRow:{},
};
},
mounted() { },
created() {
if (JSON.stringify(this.$store.state.client.pieOutParams) !== "{}") {
this.query = this.$store.state.client.pieOutParams;
this.searchForm = this.$store.state.client.pieOutParams;
}
},
methods: {
searchChange(params, done){
this.query = params
this.page.currentPage = 1
this.onLoad()
this.$store.dispatch("changeSetting", {
title: "pieOutParams",
form: this.query,
});
done()
},
searchReset(){

@ -2,6 +2,7 @@
<basic-container>
<!-- 领料出库 -->
<avue-crud :option="option" :table-loading="loading" :data="data" v-model="form" v-model:page="page" ref="crud"
v-model:search="searchForm"
@search-change="searchChange" @search-reset="searchReset" :before-open="beforeOpen"
@selection-change="selectionChange" @current-change="currentChange" @size-change="sizeChange"
@refresh-change="refreshChange" @on-load="onLoad" @row-save="rowSave">
@ -405,11 +406,15 @@ export default {
},
]
}
},
searchForm:{}
}
},
mounted() {
created() {
if (JSON.stringify(this.$store.state.client.exchangeOutParams) !== "{}") {
this.query = this.$store.state.client.exchangeOutParams;
this.searchForm = this.$store.state.client.exchangeOutParams;
}
},
methods: {
changeCode(val){
@ -420,6 +425,10 @@ export default {
searchChange(params, done){
this.query = params
this.page.currentPage = 1
this.$store.dispatch("changeSetting", {
title: "exchangeOutParams",
form: this.query,
});
this.onLoad()
done()
},

@ -1,6 +1,8 @@
<template>
<basic-container>
<avue-crud :option="option" :table-loading="loading" :data="data" v-model="form" v-model:page="page" ref="crud"
<avue-crud :option="option" :table-loading="loading" :data="data" v-model="form"
v-model:page="page" ref="crud"
v-model:search="searchForm"
@row-del="rowDel" @search-change="searchChange" @search-reset="searchReset" @selection-change="selectionChange"
@current-change="currentChange" @size-change="sizeChange" @refresh-change="refreshChange" @on-load="onLoad"
:before-open="beforeOpen">
@ -52,6 +54,7 @@ export default {
checkCode:"",
selectionList: [],
query:{},
searchForm:{},
loading:false,
option: {
height: "auto",
@ -380,6 +383,12 @@ export default {
},
};
},
created(){
if (JSON.stringify(this.$store.state.client.otherOutParams) !== "{}") {
this.query = this.$store.state.client.otherOutParams;
this.searchForm = this.$store.state.client.otherOutParams;
}
},
methods: {
addView() {
this.openShow = true;
@ -401,6 +410,10 @@ export default {
this.query = params;
this.page.currentPage = 1;
this.onLoad()
this.$store.dispatch("changeSetting", {
title: "otherOutParams",
form: this.query,
});
done()
},
searchReset(){

@ -1,7 +1,7 @@
<template>
<basic-container>
<!-- 其他入库 -->
<avue-crud :option="option" :table-loading="loading" :data="data" v-model="form" v-model:page="page" ref="crud"
<avue-crud :option="option" :table-loading="loading" :data="data" v-model="form" v-model:search="searchForm" v-model:page="page" ref="crud"
@search-change="searchChange" @search-reset="searchReset" :before-open="beforeOpen"
@selection-change="selectionChange" @current-change="currentChange" @size-change="sizeChange"
@refresh-change="refreshChange" @on-load="onLoad" @row-save="rowSave">
@ -47,6 +47,8 @@ export default {
loading: false,
data: [],
form: {},
query:{},
searchForm:{},
page: {
pageSize: 10,
currentPage: 1,
@ -425,13 +427,21 @@ export default {
moldAddMore: false,
}
},
mounted() {
created() {
console.log('otherInParams--------',this.$store.state.client.otherInParams)
if (JSON.stringify(this.$store.state.client.otherInParams) !== "{}") {
this.query = this.$store.state.client.otherInParams;
this.searchForm = this.$store.state.client.otherInParams;
}
},
methods: {
searchChange(params, done){
this.query = params
this.page.currentPage = 1;
this.$store.dispatch("changeSetting", {
title: "otherInParams",
form: this.query,
});
this.onLoad()
done()
},
@ -467,6 +477,7 @@ export default {
done()
},
onLoad() {
console.log('query--------',this.query)
getOtherInList({
current:this.page.currentPage,
size:this.page.pageSize,

@ -6,6 +6,7 @@
:data="data"
v-model="form"
v-model:page="page"
v-model:search="searchQuery"
ref="crud"
@row-del="rowDel"
@search-change="searchChange"
@ -87,6 +88,7 @@ export default {
prtno:''
},
query:{},
searchQuery:{},
wareList:[],
selectionList: [],
warehouseShow: false,
@ -303,14 +305,22 @@ export default {
},
};
},
mounted() {
created() {
this.getWare()
if (JSON.stringify(this.$store.state.client.materialInParams) !== "{}") {
this.query = this.$store.state.client.materialInParams;
this.searchQuery = this.$store.state.client.materialInParams;
}
},
methods: {
searchChange(params, done){
this.query = params
this.page.currentPage = 1;
this.onLoad()
this.$store.dispatch("changeSetting", {
title: "materialInParams",
form: this.query,
});
done()
},
searchReset(){

@ -6,6 +6,7 @@
:data="data"
v-model="form"
v-model:page="page"
v-model:search="searchForm"
ref="crud"
@row-del="rowDel"
@search-change="searchChange"
@ -85,6 +86,7 @@ export default {
locationList:[],
loading:false,
query:{},
searchForm:{},
warehouseShow:false,
warehouseForm:{},
warehouseRules:{
@ -277,14 +279,22 @@ export default {
checkGoods:"",
};
},
mounted() {
created() {
this.getWare()
if (JSON.stringify(this.$store.state.client.exchangeInParams) !== "{}") {
this.query = this.$store.state.client.exchangeInParams;
this.searchForm = this.$store.state.client.exchangeInParams;
}
},
methods: {
searchChange(params, done){
this.query = params
this.page.currentPage = 1;
this.onLoad()
this.$store.dispatch("changeSetting", {
title: "exchangeInParams",
form: this.query,
});
done()
},
searchReset(){

@ -51,13 +51,13 @@ export default {
menuWidth: 120,
dialogType: 'drawer',
searchLabelPosition:'left',
searchLabelPosition:'left',
searchGutter:24,
searchSpan:6,
menuAlign: 'left',
gridBtn:false,
searchMenuPosition:'right',
addBtnIcon: ' ',
searchLabelPosition:'left',
searchGutter:24,
searchSpan:6,
menuAlign: 'left',
gridBtn:false,
searchMenuPosition:'right',
addBtnIcon: ' ',
viewBtnIcon: ' ',
delBtnIcon: ' ',
editBtnIcon: ' ',
@ -104,6 +104,11 @@ addBtnIcon: ' ',
prop: 'createTime',
width: '180',
},
{
label: '操作人',
prop: 'createBy',
span: 24,
},
{
label: '用户代理',
prop: 'userAgent',
@ -118,6 +123,7 @@ addBtnIcon: ' ',
minRows: 2,
hide: true,
},
],
},
data: [],

@ -43,7 +43,7 @@
</template>
<script>
import {getList} from "@/api/storeManagement/inventorySummary"
import {getList,getPrint} from "@/api/storeManagement/inventorySummary"
export default {
data() {
return {
@ -68,7 +68,6 @@ export default {
height: 'auto',
align: 'center',
calcHeight: 32,
rowKey: 'rlsId',
tip: false,
size: 'medium',
simplePage: true,
@ -624,6 +623,9 @@ export default {
this.$message.error('请先选择数据')
return
}
getPrint({id:this.selectionList[0].id}).then(res =>{
console.log('res--------------',res)
})
},
searchChange(params, done){
this.query = params;
@ -671,687 +673,6 @@ export default {
this.page.total = res.data.data.total
this.loading = false
})
// this.data = [
// {
// "allMoney": null,
// "balanceMoney": 20.0,
// "barCode": null,
// "checkCode": "CK001",
// "coGoods": {
// "allGoodsQuantity": null,
// "batch": null,
// "bomQuantity": null,
// "buyQuantity": null,
// "cavityno": null,
// "checkoutCode": "3333",
// "coGoodsClass": null,
// "coStorageLocation": null,
// "cplb": null,
// "createTime": "2023-07-15 16:18:30",
// "curQuantity": 684.0,
// "cycle": null,
// "deleted": false,
// "deliveryDate": null,
// "dept": null,
// "drawingNo": null,
// "ecnno": null,
// "enditem": 0,
// "erpQuantity": null,
// "goodsCode": "21E543-6108-B1-N",
// "goodsCodeAndGoodsName": "null21E543-6108-B1-N",
// "goodsId": 167,
// "goodsName": "",
// "grade": null,
// "houseQuantity": null,
// "lockQuantity": 0.0,
// "madeIn": null,
// "matbigclassify": null,
// "matsmallclassify": null,
// "maxNum": 300.0,
// "memo": null,
// "minNum": 50.0,
// "mtlsgrt": 0.0,
// "mtltmrk": "232",
// "mustCheck": null,
// "newGoodsName": null,
// "newSpecifications": null,
// "numAcc": null,
// "onthewayQuantity": 0.0,
// "partLink": null,
// "piNo": null,
// "price": null,
// "priority": null,
// "prtType": "",
// "prtrevedit": null,
// "prtstd": null,
// "prtwt": 0.0,
// "purchaseQuantity": 100.0,
// "releaseno": null,
// "releasenoTime": "2023-03-23 00:00:00",
// "remark": null,
// "rlsId": null,
// "singlePieceQuota": null,
// "source": null,
// "special": null,
// "specifications": null,
// "syQuantity": null,
// "trademark": null,
// "unitName": "",
// "updateTime": "2023-07-15 16:18:30",
// "used": true
// },
// "coStorehouse": {
// "codeAndName": null,
// "createTime": "2023-12-25 10:08:43",
// "deleted": false,
// "factoryId": 41,
// "memo": null,
// "saveUser": {
// "accountId": null,
// "card": null,
// "createTime": "2023-04-06",
// "curStatus": 1,
// "deleted": false,
// "deptName": null,
// "dimissionTime": null,
// "factoryId": 41,
// "head": 0,
// "jobName": "",
// "keyValue": 521,
// "ldapName": null,
// "mail": null,
// "mobile": null,
// "pfDepartment": {
// "appLink": null,
// "createTime": "2022-08-31",
// "deleted": false,
// "deptCode": "001",
// "deptId": 1,
// "deptName": "MES",
// "deptType": 1,
// "deptTypeTitle": "",
// "keyValue": 1,
// "memo": null,
// "orders": "00",
// "parentDeptId": null,
// "parentPath": null,
// "ucDeptId": null,
// "updateTime": "2022-08-31 16:32:46"
// },
// "ucUserId": null,
// "updateTime": "2023-04-06 16:23:38",
// "userCode": "0001",
// "userId": 521,
// "userName": "",
// "userSex": 1,
// "userSources": "",
// "userString": "521:A:",
// "userType": "A",
// "yearsOfService": null
// },
// "shCode": "RB001",
// "shId": 183,
// "shLevel": null,
// "shName": "",
// "toolingType": null,
// "toolingTypeStr": null,
// "type": 0,
// "typeStr": "",
// "updateTime": null
// },
// "createTime": "2023-12-25 10:26:06",
// "facType": 0,
// "factoryId": 41,
// "goodsCodeAndGoodsName": null,
// "goodsId": null,
// "goodsStatus": 0,
// "inStoreDay": 675,
// "isApplyFor": false,
// "keeper": null,
// "memo": null,
// "modelOrBrandStr": "232/null",
// "moldBaseMaterial": false,
// "moldStock": null,
// "outQuantity": null,
// "piNo": "Y20231225001",
// "quantity": 684.0,
// "quantityLevel": "ddd",
// "rlsId": 221,
// "scrapCycle": "2025-10-24 00:00:00",
// "splyCode": null,
// "stayMaintainNum": 0,
// "stockSource": 0,
// "stopUse": false,
// "stopUseTitle": "",
// "storageLocation": {
// "coStorehouse": {
// "codeAndName": null,
// "createTime": "2023-12-25 10:08:43",
// "deleted": false,
// "factoryId": 41,
// "memo": null,
// "saveUser": {
// "accountId": null,
// "card": null,
// "createTime": "2023-04-06",
// "curStatus": 1,
// "deleted": false,
// "deptName": null,
// "dimissionTime": null,
// "factoryId": 41,
// "head": 0,
// "jobName": "",
// "keyValue": 521,
// "ldapName": null,
// "mail": null,
// "mobile": null,
// "pfDepartment": {
// "appLink": null,
// "createTime": "2022-08-31",
// "deleted": false,
// "deptCode": "001",
// "deptId": 1,
// "deptName": "MES",
// "deptType": 1,
// "deptTypeTitle": "",
// "keyValue": 1,
// "memo": null,
// "orders": "00",
// "parentDeptId": null,
// "parentPath": null,
// "ucDeptId": null,
// "updateTime": "2022-08-31 16:32:46"
// },
// "ucUserId": null,
// "updateTime": "2023-04-06 16:23:38",
// "userCode": "0001",
// "userId": 521,
// "userName": "",
// "userSex": 1,
// "userSources": "",
// "userString": "521:A:",
// "userType": "A",
// "yearsOfService": null
// },
// "shCode": "RB001",
// "shId": 183,
// "shLevel": null,
// "shName": "",
// "toolingType": null,
// "toolingTypeStr": null,
// "type": 0,
// "typeStr": "",
// "updateTime": null
// },
// "cslId": 221,
// "deleted": false,
// "goodsCode": "21E543-6108-B1-N",
// "goodsName": null,
// "location": "RB001SM01",
// "mtltmrk": null,
// "specifications": null
// },
// "stovePiNo": null,
// "sumNum": 0,
// "thickness": null,
// "updateTime": null,
// "useQuantity": 683.0,
// "zyQuantity": 1.0
// },
// {
// "allMoney": null,
// "balanceMoney": 15.0,
// "barCode": null,
// "checkCode": "ck001",
// "coGoods": {
// "allGoodsQuantity": null,
// "batch": null,
// "bomQuantity": null,
// "buyQuantity": null,
// "cavityno": null,
// "checkoutCode": "2222",
// "coGoodsClass": null,
// "coStorageLocation": null,
// "cplb": null,
// "createTime": "2023-07-15 16:18:30",
// "curQuantity": 2999.0,
// "cycle": null,
// "deleted": false,
// "deliveryDate": null,
// "dept": null,
// "drawingNo": null,
// "ecnno": null,
// "enditem": 0,
// "erpQuantity": null,
// "goodsCode": "21E543-6108-B1",
// "goodsCodeAndGoodsName": "null21E543-6108-B1",
// "goodsId": 170,
// "goodsName": "",
// "grade": null,
// "houseQuantity": null,
// "lockQuantity": 0.0,
// "madeIn": null,
// "matbigclassify": null,
// "matsmallclassify": null,
// "maxNum": 300.0,
// "memo": null,
// "minNum": 50.0,
// "mtlsgrt": null,
// "mtltmrk": "4",
// "mustCheck": 0,
// "newGoodsName": null,
// "newSpecifications": null,
// "numAcc": null,
// "onthewayQuantity": 0.0,
// "partLink": null,
// "piNo": null,
// "price": null,
// "priority": null,
// "prtType": "",
// "prtrevedit": null,
// "prtstd": null,
// "prtwt": 0.0,
// "purchaseQuantity": 0.0,
// "releaseno": null,
// "releasenoTime": null,
// "remark": null,
// "rlsId": null,
// "singlePieceQuota": null,
// "source": null,
// "special": null,
// "specifications": null,
// "syQuantity": null,
// "trademark": null,
// "unitName": "",
// "updateTime": "2023-07-15 16:18:30",
// "used": true
// },
// "coStorehouse": {
// "codeAndName": null,
// "createTime": "2023-12-25 10:08:43",
// "deleted": false,
// "factoryId": 41,
// "memo": null,
// "saveUser": {
// "accountId": null,
// "card": null,
// "createTime": "2023-04-06",
// "curStatus": 1,
// "deleted": false,
// "deptName": null,
// "dimissionTime": null,
// "factoryId": 41,
// "head": 0,
// "jobName": "",
// "keyValue": 521,
// "ldapName": null,
// "mail": null,
// "mobile": null,
// "pfDepartment": {
// "appLink": null,
// "createTime": "2022-08-31",
// "deleted": false,
// "deptCode": "001",
// "deptId": 1,
// "deptName": "MES",
// "deptType": 1,
// "deptTypeTitle": "",
// "keyValue": 1,
// "memo": null,
// "orders": "00",
// "parentDeptId": null,
// "parentPath": null,
// "ucDeptId": null,
// "updateTime": "2022-08-31 16:32:46"
// },
// "ucUserId": null,
// "updateTime": "2023-04-06 16:23:38",
// "userCode": "0001",
// "userId": 521,
// "userName": "",
// "userSex": 1,
// "userSources": "",
// "userString": "521:A:",
// "userType": "A",
// "yearsOfService": null
// },
// "shCode": "RB001",
// "shId": 183,
// "shLevel": null,
// "shName": "",
// "toolingType": null,
// "toolingTypeStr": null,
// "type": 0,
// "typeStr": "",
// "updateTime": null
// },
// "createTime": "2023-12-25 10:26:44",
// "facType": 0,
// "factoryId": 41,
// "goodsCodeAndGoodsName": null,
// "goodsId": null,
// "goodsStatus": 0,
// "inStoreDay": 675,
// "isApplyFor": false,
// "keeper": null,
// "memo": null,
// "modelOrBrandStr": "4/null",
// "moldBaseMaterial": false,
// "moldStock": null,
// "outQuantity": null,
// "piNo": "Y20231225001",
// "quantity": 2999.0,
// "quantityLevel": "ccc",
// "rlsId": 222,
// "scrapCycle": "2024-09-18 00:00:00",
// "splyCode": null,
// "stayMaintainNum": 0,
// "stockSource": 0,
// "stopUse": false,
// "stopUseTitle": "",
// "storageLocation": {
// "coStorehouse": {
// "codeAndName": null,
// "createTime": "2023-12-25 10:08:43",
// "deleted": false,
// "factoryId": 41,
// "memo": null,
// "saveUser": {
// "accountId": null,
// "card": null,
// "createTime": "2023-04-06",
// "curStatus": 1,
// "deleted": false,
// "deptName": null,
// "dimissionTime": null,
// "factoryId": 41,
// "head": 0,
// "jobName": "",
// "keyValue": 521,
// "ldapName": null,
// "mail": null,
// "mobile": null,
// "pfDepartment": {
// "appLink": null,
// "createTime": "2022-08-31",
// "deleted": false,
// "deptCode": "001",
// "deptId": 1,
// "deptName": "MES",
// "deptType": 1,
// "deptTypeTitle": "",
// "keyValue": 1,
// "memo": null,
// "orders": "00",
// "parentDeptId": null,
// "parentPath": null,
// "ucDeptId": null,
// "updateTime": "2022-08-31 16:32:46"
// },
// "ucUserId": null,
// "updateTime": "2023-04-06 16:23:38",
// "userCode": "0001",
// "userId": 521,
// "userName": "",
// "userSex": 1,
// "userSources": "",
// "userString": "521:A:",
// "userType": "A",
// "yearsOfService": null
// },
// "shCode": "RB001",
// "shId": 183,
// "shLevel": null,
// "shName": "",
// "toolingType": null,
// "toolingTypeStr": null,
// "type": 0,
// "typeStr": "",
// "updateTime": null
// },
// "cslId": 222,
// "deleted": false,
// "goodsCode": "21E543-6108-B1",
// "goodsName": null,
// "location": "RB001SM02",
// "mtltmrk": null,
// "specifications": null
// },
// "stovePiNo": null,
// "sumNum": 0,
// "thickness": null,
// "updateTime": null,
// "useQuantity": 2999.0,
// "zyQuantity": 0.0
// },
// {
// "allMoney": null,
// "balanceMoney": 30.0,
// "barCode": null,
// "checkCode": "CK002",
// "coGoods": {
// "allGoodsQuantity": null,
// "batch": null,
// "bomQuantity": null,
// "buyQuantity": null,
// "cavityno": null,
// "checkoutCode": "1111",
// "coGoodsClass": null,
// "coStorageLocation": null,
// "cplb": null,
// "createTime": "2023-07-15 16:18:30",
// "curQuantity": 1950.0,
// "cycle": null,
// "deleted": false,
// "deliveryDate": null,
// "dept": null,
// "drawingNo": null,
// "ecnno": null,
// "enditem": 0,
// "erpQuantity": null,
// "goodsCode": "04-05-025",
// "goodsCodeAndGoodsName": "null04-05-025",
// "goodsId": 169,
// "goodsName": "",
// "grade": null,
// "houseQuantity": null,
// "lockQuantity": 0.0,
// "madeIn": null,
// "matbigclassify": null,
// "matsmallclassify": null,
// "maxNum": 300.0,
// "memo": null,
// "minNum": 50.0,
// "mtlsgrt": null,
// "mtltmrk": "23",
// "mustCheck": 0,
// "newGoodsName": null,
// "newSpecifications": null,
// "numAcc": null,
// "onthewayQuantity": 0.0,
// "partLink": null,
// "piNo": null,
// "price": null,
// "priority": null,
// "prtType": "",
// "prtrevedit": null,
// "prtstd": null,
// "prtwt": 0.0,
// "purchaseQuantity": 100.0,
// "releaseno": null,
// "releasenoTime": null,
// "remark": null,
// "rlsId": null,
// "singlePieceQuota": null,
// "source": null,
// "special": null,
// "specifications": "100/",
// "syQuantity": null,
// "trademark": null,
// "unitName": "",
// "updateTime": "2023-07-15 16:18:30",
// "used": true
// },
// "coStorehouse": {
// "codeAndName": null,
// "createTime": "2023-12-25 10:09:44",
// "deleted": false,
// "factoryId": 41,
// "memo": null,
// "saveUser": {
// "accountId": null,
// "card": null,
// "createTime": "2023-02-08",
// "curStatus": 1,
// "deleted": false,
// "deptName": null,
// "dimissionTime": null,
// "factoryId": 41,
// "head": 0,
// "jobName": "",
// "keyValue": 453,
// "ldapName": "00075",
// "mail": null,
// "mobile": null,
// "pfDepartment": {
// "appLink": null,
// "createTime": "2023-02-08",
// "deleted": false,
// "deptCode": "26",
// "deptId": 57,
// "deptName": "",
// "deptType": 1,
// "deptTypeTitle": "",
// "keyValue": 57,
// "memo": null,
// "orders": "26",
// "parentDeptId": 41,
// "parentPath": null,
// "ucDeptId": null,
// "updateTime": "2023-02-08 16:38:31"
// },
// "ucUserId": null,
// "updateTime": "2023-02-08 17:25:13",
// "userCode": "00075",
// "userId": 453,
// "userName": "1",
// "userSex": 1,
// "userSources": "1",
// "userString": "453:A:1",
// "userType": "A",
// "yearsOfService": null
// },
// "shCode": "RB002",
// "shId": 184,
// "shLevel": null,
// "shName": "",
// "toolingType": null,
// "toolingTypeStr": null,
// "type": 0,
// "typeStr": "",
// "updateTime": "2023-12-25 10:09:58"
// },
// "createTime": "2023-12-25 10:28:24",
// "facType": 0,
// "factoryId": 41,
// "goodsCodeAndGoodsName": null,
// "goodsId": null,
// "goodsStatus": 0,
// "inStoreDay": 675,
// "isApplyFor": false,
// "keeper": null,
// "memo": null,
// "modelOrBrandStr": "23/null",
// "moldBaseMaterial": false,
// "moldStock": null,
// "outQuantity": null,
// "piNo": "Y20231225001",
// "quantity": 1950.0,
// "quantityLevel": "aaa",
// "rlsId": 223,
// "scrapCycle": "2024-09-18 00:00:00",
// "splyCode": null,
// "stayMaintainNum": 0,
// "stockSource": 0,
// "stopUse": false,
// "stopUseTitle": "",
// "storageLocation": {
// "coStorehouse": {
// "codeAndName": null,
// "createTime": "2023-12-25 10:09:44",
// "deleted": false,
// "factoryId": 41,
// "memo": null,
// "saveUser": {
// "accountId": null,
// "card": null,
// "createTime": "2023-02-08",
// "curStatus": 1,
// "deleted": false,
// "deptName": null,
// "dimissionTime": null,
// "factoryId": 41,
// "head": 0,
// "jobName": "",
// "keyValue": 453,
// "ldapName": "00075",
// "mail": null,
// "mobile": null,
// "pfDepartment": {
// "appLink": null,
// "createTime": "2023-02-08",
// "deleted": false,
// "deptCode": "26",
// "deptId": 57,
// "deptName": "",
// "deptType": 1,
// "deptTypeTitle": "",
// "keyValue": 57,
// "memo": null,
// "orders": "26",
// "parentDeptId": 41,
// "parentPath": null,
// "ucDeptId": null,
// "updateTime": "2023-02-08 16:38:31"
// },
// "ucUserId": null,
// "updateTime": "2023-02-08 17:25:13",
// "userCode": "00075",
// "userId": 453,
// "userName": "1",
// "userSex": 1,
// "userSources": "1",
// "userString": "453:A:1",
// "userType": "A",
// "yearsOfService": null
// },
// "shCode": "RB002",
// "shId": 184,
// "shLevel": null,
// "shName": "",
// "toolingType": null,
// "toolingTypeStr": null,
// "type": 0,
// "typeStr": "",
// "updateTime": "2023-12-25 10:09:58"
// },
// "cslId": 223,
// "deleted": false,
// "goodsCode": "04-05-025",
// "goodsName": null,
// "location": "RB002XBJ01",
// "mtltmrk": null,
// "specifications": null
// },
// "stovePiNo": null,
// "sumNum": 0,
// "thickness": null,
// "updateTime": null,
// "useQuantity": 1950.0,
// "zyQuantity": 0.0
// }
// ]
// this.page.total = this.data.length
}
}
}

Loading…
Cancel
Save