Merge branch 'fengcang' into busUser

# Conflicts:
#	public/config.json
#	src/views/basic/BasicEntrutsRece.vue
#	src/views/business/stockOrder.vue
#	src/views/business/stockOrderDelSearch.vue
#	src/views/business/stockOrderEditor.vue
#	src/views/business/stockOrderNew.vue
#	src/views/business/stockOrderNewDistribution.vue
#	src/views/business/stockOrderSearch.vue
#	src/views/business/stockOrderWaitCheck.vue
#	src/views/inout/IOAddOrder.vue
#	src/views/inout/IOCheckWaitOrder.vue
#	src/views/inout/IOFinishOrder.vue
purchase
anthonyywj2 3 years ago
commit ea7d03a753

@ -5,4 +5,3 @@
"WEBSOCKET_URL": "ws://192.168.0.109:9991/UDI_WMS_MC/api/websocket/", "WEBSOCKET_URL": "ws://192.168.0.109:9991/UDI_WMS_MC/api/websocket/",
"hosp_name": "平和县医院" "hosp_name": "平和县医院"
} }

@ -1,360 +1,358 @@
<template> <template>
<div> <div>
<el-card> <el-card>
<el-form :inline="true" :model="filterQuery" class="query-form" size="mini"> <el-form :inline="true" :model="filterQuery" class="query-form" size="mini">
<el-form-item class="query-form-item"> <el-form-item class="query-form-item">
<el-input <el-input
v-model="filterQuery.name" v-model="filterQuery.name"
style="width: 250px" style="width: 250px"
placeholder="单据类型名称" placeholder="单据类型名称"
></el-input> ></el-input>
</el-form-item> </el-form-item>
<el-form-item> <el-form-item>
<el-button-group style="margin-left: 10px;display:flex;"> <el-button-group style="margin-left: 10px;display:flex;">
<el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button> <el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button>
<el-button type="primary" icon="search" @click="search"></el-button> <el-button type="primary" icon="search" @click="search"></el-button>
<el-button type="primary" icon="search" @click="handleAddClick" <el-button type="primary" icon="search" @click="handleAddClick"
:disabled="!configParms.entrustAction" :disabled="!configParms.entrustAction"
>新增 >新增
</el-button </el-button
> >
</el-button-group> </el-button-group>
</el-form-item> </el-form-item>
</el-form> </el-form>
<el-table v-loading="loading" :data="list" style="width: 100%"> <el-table v-loading="loading" :data="list" style="width: 100%">
<el-table-column label="序号" type="index" width="60" fixed></el-table-column> <el-table-column label="序号" type="index" width="60" fixed></el-table-column>
<el-table-column label="扫码单据类型" prop="curName" fixed></el-table-column> <el-table-column label="扫码单据类型" prop="curName" fixed></el-table-column>
<el-table-column label="当前仓库" prop="curInvName" fixed></el-table-column> <el-table-column label="当前仓库" prop="curInvName" fixed></el-table-column>
<el-table-column label="当前分库" prop="invWarehouseName" fixed></el-table-column> <el-table-column label="当前分库" prop="invWarehouseName" fixed></el-table-column>
<el-table-column label="委托验收仓库" prop="entrustInvName" fixed></el-table-column> <el-table-column label="委托验收仓库" prop="entrustInvName" fixed></el-table-column>
<el-table-column label="委托验收分库" prop="entrustSubInvName" fixed></el-table-column> <el-table-column label="委托验收分库" prop="entrustSubInvName" fixed></el-table-column>
<el-table-column label="委托验收人" prop="employeeName" fixed> <el-table-column label="委托验收人" prop="employeeName" fixed>
</el-table-column> </el-table-column>
<el-table-column label="操作" fixed="right"> <el-table-column label="操作" fixed="right">
<template slot-scope="scope"> <template slot-scope="scope">
<el-button <el-button
type="text" type="text"
size="small" size="small"
@click.native.stop="handleModifyClick(scope.row)" @click.native.stop="handleModifyClick(scope.row)"
:disabled="!configParms.entrustAction" :disabled="!configParms.entrustAction"
>编辑 >编辑
</el-button </el-button
> >
<el-button <el-button
type="text" type="text"
size="small" size="small"
@click.native.stop="deleteDialog(scope.row)" @click.native.stop="deleteDialog(scope.row)"
:disabled="!configParms.entrustAction" :disabled="!configParms.entrustAction"
>删除 >删除
</el-button </el-button
> >
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
<el-dialog <el-dialog
title="新增委托验收" title="新增委托验收"
:visible.sync="addDialogVisible" :visible.sync="addDialogVisible"
width="70%" width="70%"
:close-on-click-modal="false" :close-on-click-modal="false"
:close-on-press-escape="false" :close-on-press-escape="false"
v-if="addDialogVisible" v-if="addDialogVisible"
> >
<modifyDialog :inputQuery="inputQuery"></modifyDialog> <modifyDialog :inputQuery="inputQuery"></modifyDialog>
<div style="text-align: center"> <div style="text-align: center">
<el-button type="primary" size="small" icon="search" @click="onAddSubmit" <el-button type="primary" size="small" icon="search" @click="onAddSubmit"
>提交 >提交
</el-button </el-button
> >
<el-button type="primary" size="small" icon="search" @click="cancelDialog" <el-button type="primary" size="small" icon="search" @click="cancelDialog"
>取消 >取消
</el-button </el-button
> >
</div> </div>
</el-dialog> </el-dialog>
<el-dialog <el-dialog
title="编辑委托验收" title="编辑委托验收"
:visible.sync="modifyDialogVisible" :visible.sync="modifyDialogVisible"
width="70%" width="70%"
:close-on-click-modal="false" :close-on-click-modal="false"
:close-on-press-escape="false" :close-on-press-escape="false"
v-if="modifyDialogVisible" v-if="modifyDialogVisible"
> >
<modifyDialog :inputQuery="inputQuery"></modifyDialog> <modifyDialog :inputQuery="inputQuery"></modifyDialog>
<div style="text-align: center"> <div style="text-align: center">
<el-button type="primary" size="small" icon="search" @click="onModifySubmit" <el-button type="primary" size="small" icon="search" @click="onModifySubmit"
>提交 >提交
</el-button </el-button
> >
<el-button type="primary" size="small" icon="search" @click="cancelDialog" <el-button type="primary" size="small" icon="search" @click="cancelDialog"
>取消 >取消
</el-button </el-button
> >
</div> </div>
</el-dialog> </el-dialog>
<el-pagination <el-pagination
:page-size="filterQuery.limit" :page-size="filterQuery.limit"
@current-change="handleCurrentChange" @current-change="handleCurrentChange"
layout="prev, pager, next" layout="prev, pager, next"
:total="total" :total="total"
:current-page="filterQuery.page" :current-page="filterQuery.page"
></el-pagination> ></el-pagination>
</el-card> </el-card>
</div> </div>
</template> </template>
<script> <script>
import { import {
getEntrustRece, getEntrustRece,
deleteEntrustRece, deleteEntrustRece,
updateEntrustRece, updateEntrustRece,
insertEntrustRece, insertEntrustRece,
} from "../../api/basic/EntrustRece"; } from "../../api/basic/EntrustRece";
import modifyDialog from "./BasicEntrutsReceModify"; import modifyDialog from "./BasicEntrutsReceModify";
import {findConfig} from "@/api/thrsys/spsSyncStatus"; import {findConfig} from "@/api/thrsys/spsSyncStatus";
export default { export default {
data() { data() {
return { return {
filterQuery: { filterQuery: {
name: "", name: "",
page: 1, page: 1,
limit: 20, limit: 20,
}, },
loading: false, loading: false,
addDialogVisible: false, addDialogVisible: false,
modifyDialogVisible: false, modifyDialogVisible: false,
list: [], list: [],
inputQuery: { inputQuery: {
action: "", action: "",
name: "", name: "",
entrustInv: "", entrustInv: "",
entrustUser: "", entrustUser: "",
entrustAction: null, entrustAction: null,
finishRece: false, finishRece: false,
curInv: "", curInv: "",
entrustSubInv: "", entrustSubInv: "",
invWarehouseCode: "", invWarehouseCode: "",
}, },
enableMap: { enableMap: {
true: "是", true: "是",
false: "否", false: "否",
}, },
mainActionMap: { mainActionMap: {
WareHouseIn: "入库", WareHouseIn: "入库",
WareHouseOut: "出库" WareHouseOut: "出库"
}, },
fileList: [], fileList: [],
total: 0, total: 0,
multipleSelection: [], multipleSelection: [],
uploadFileUrl: null, uploadFileUrl: null,
headers: {}, headers: {},
configParms: {}, configParms: {},
}; };
},
methods: {
onReset() {
this.$router.push({
path: "",
});
this.filterQuery = {
name: "",
page: 1,
limit: 20,
};
this.getList();
},
cancelDialog() {
this.modifyDialogVisible = false;
this.addDialogVisible = false;
},
handleCurrentChange(val) {
this.filterQuery.page = val;
this.getList();
},
search() {
this.filterQuery.page = 1;
this.getList();
},
getList() {
this.loading = true;
getEntrustRece(this.filterQuery)
.then((response) => {
this.loading = false;
this.list = response.data.list || [];
this.total = response.data.total || 0;
})
.catch(() => {
this.loading = false;
this.list = [];
this.total = 0;
});
}, },
methods: {
onReset() {
this.$router.push({
path: "",
});
this.filterQuery = {
name: "",
page: 1,
limit: 20,
};
this.getList();
},
cancelDialog() {
this.modifyDialogVisible = false;
this.addDialogVisible = false;
},
handleCurrentChange(val) {
this.filterQuery.page = val;
this.getList();
},
search() {
this.filterQuery.page = 1;
this.getList();
},
getList() {
this.loading = true;
getEntrustRece(this.filterQuery)
.then((response) => {
this.loading = false;
this.list = response.data.list || [];
this.total = response.data.total || 0;
})
.catch(() => {
this.loading = false;
this.list = [];
this.total = 0;
});
},
onAddSubmit() {
if (this.$isBlank(this.inputQuery.action)) { onAddSubmit() {
this.$message.error("单据类型不能为空!");
return;
}
if (this.$isBlank(this.inputQuery.curInv)) {
this.$message.error("请输入委托仓库!");
return;
}
if (this.$isBlank(this.inputQuery.entrustInv)) {
this.$message.error("请输入接受委托仓库!");
return;
}
if (this.$isBlank(this.inputQuery.entrustUser)) {
this.$message.error("请输入接受委托人!");
return;
}
if (this.$isBlank(this.inputQuery.invWarehouseCode)) { if (this.$isBlank(this.inputQuery.action)) {
this.$message.error("当前分库不能为空!"); this.$message.error("单据类型不能为空!");
return; return;
} }
if (this.$isBlank(this.inputQuery.entrustSubInv)) { if (this.$isBlank(this.inputQuery.curInv)) {
this.$message.error("请输入接受委托分库!"); this.$message.error("请输入委托仓库!");
return; return;
} }
if (this.$isBlank(this.inputQuery.entrustInv)) {
this.$message.error("请输入接受委托仓库!");
return;
}
if (this.$isBlank(this.inputQuery.entrustUser)) {
this.$message.error("请输入接受委托人!");
return;
}
if (this.$isBlank(this.inputQuery.entrustAction)) { if (this.$isBlank(this.inputQuery.invWarehouseCode)) {
this.$message.error("请输入生成单据类型!"); this.$message.error("当前分库不能为空!");
return; return;
} }
if (this.$isBlank(this.inputQuery.entrustSubInv)) {
this.$message.error("请输入接受委托分库!");
return;
}
insertEntrustRece(this.inputQuery) if (this.$isBlank(this.inputQuery.entrustAction)) {
.then((response) => { this.$message.error("请输入生成单据类型!");
if (response.code == 20000) { return;
this.loading = false;
this.cancelDialog();
this.getList();
} else {
this.$message.error(response.message);
} }
})
.catch(() => {
this.loading = false;
this.cancelDialog();
});
},
onModifySubmit() { insertEntrustRece(this.inputQuery)
if (this.$isBlank(this.inputQuery.action)) { .then((response) => {
this.$message.error("单据类型不能为空!"); if (response.code == 20000) {
return; this.loading = false;
} this.cancelDialog();
if (this.$isBlank(this.inputQuery.curInv)) { this.getList();
this.$message.error("请输入委托仓库!"); } else {
return; this.$message.error(response.message);
} }
if (this.$isBlank(this.inputQuery.entrustInv)) { })
this.$message.error("请输入接受委托仓库!"); .catch(() => {
return; this.loading = false;
} this.cancelDialog();
if (this.$isBlank(this.inputQuery.entrustUser)) { });
this.$message.error("请输入接受委托人!"); },
return;
}
if (this.$isBlank(this.inputQuery.invWarehouseCode)) { onModifySubmit() {
this.$message.error("当前分库不能为空!"); if (this.$isBlank(this.inputQuery.action)) {
return; this.$message.error("单据类型不能为空!");
} return;
if (this.$isBlank(this.inputQuery.entrustSubInv)) { }
this.$message.error("请输入接受委托分库!"); if (this.$isBlank(this.inputQuery.curInv)) {
return; this.$message.error("请输入委托仓库!");
} return;
}
if (this.$isBlank(this.inputQuery.entrustInv)) {
this.$message.error("请输入接受委托仓库!");
return;
}
if (this.$isBlank(this.inputQuery.entrustUser)) {
this.$message.error("请输入接受委托人!");
return;
}
if (this.$isBlank(this.inputQuery.entrustAction)) { if (this.$isBlank(this.inputQuery.invWarehouseCode)) {
this.$message.error("请输入生成单据类型!"); this.$message.error("当前分库不能为空!");
return; return;
} }
updateEntrustRece(this.inputQuery) if (this.$isBlank(this.inputQuery.entrustSubInv)) {
.then((response) => { this.$message.error("请输入接受委托分库!");
this.loading = false; return;
this.cancelDialog(); }
this.getList();
})
.catch(() => {
this.loading = false;
this.cancelDialog();
});
},
handleAddClick() { if (this.$isBlank(this.inputQuery.entrustAction)) {
this.inputQuery = {enable: true, expireTip: true}; this.$message.error("请输入生成单据类型!");
this.addDialogVisible = true; return;
}, }
updateEntrustRece(this.inputQuery)
.then((response) => {
this.loading = false;
this.cancelDialog();
this.getList();
})
.catch(() => {
this.loading = false;
this.cancelDialog();
});
},
handleModifyClick(row) { handleAddClick() {
this.inputQuery = row; this.inputQuery = {enable: true, expireTip: true};
this.modifyDialogVisible = true; this.addDialogVisible = true;
}, },
deleteDialog(rowId) { handleModifyClick(row) {
this.$confirm("此操作将永久删除该委托验收信息, 是否继续?", "提示", { this.inputQuery = row;
confirmButtonText: "确定", this.modifyDialogVisible = true;
cancelButtonText: "取消", },
type: "warning",
})
.then(() => {
this.deleteOrders(rowId);
})
.catch(() => {
});
},
deleteOrders(data) { deleteDialog(rowId) {
this.loading = true; this.$confirm("此操作将永久删除该委托验收信息, 是否继续?", "提示", {
let tquery = { confirmButtonText: "确定",
id: data.id + "", cancelButtonText: "取消",
}; type: "warning",
deleteEntrustRece(tquery) })
.then((response) => { .then(() => {
this.getList(); this.deleteOrders(rowId);
if (response.code == 20000) { })
this.$message({ .catch(() => {
type: "success", });
message: "删除成功!", },
});
} else { deleteOrders(data) {
this.$message.error(response.message); this.loading = true;
} let tquery = {
id: data.id + "",
};
deleteEntrustRece(tquery)
.then((response) => {
this.getList();
if (response.code == 20000) {
this.$message({
type: "success",
message: "删除成功!",
});
} else {
this.$message.error(response.message);
}
}) })
.catch(() => { .catch(() => {
}); });
},
getSyncConfig() {
findConfig()
.then((response) => {
if (response.code == 20000) {
this.configParms = response.data;
}
})
.catch(() => {
});
},
}, },
getSyncConfig() { components: {
findConfig() modifyDialog,
.then((response) => { },
if (response.code == 20000) { mounted() {
this.configParms = response.data; },
} created() {
}) this.getList();
.catch(() => { this.getSyncConfig();
});
}, },
},
components: {
modifyDialog,
},
mounted() {
},
created() {
this.getList();
this.getSyncConfig();
},
}; };
</script> </script>

@ -19,56 +19,59 @@
<el-card class="el-card" v-if="checked"> <el-card class="el-card" v-if="checked">
<div> <div>
<el-form :inline="true" :model="erpQuery" style="display: flex" size="mini"> <el-form :inline="true" :model="erpQuery" size="mini">
<el-row>
<el-form-item class="query-form-item">
<el-form-item class="query-form-item"> <el-input
<el-input v-model="erpQuery.code"
v-model="erpQuery.code" placeholder="产品编码/商品条码/医保编码"
placeholder="产品编码/商品条码/医保编码" clearable="true"
clearable="true" @keyup.enter.native="keyupErp_submit($event)"
@keyup.enter.native="keyupErp_submit($event)" ></el-input>
></el-input> </el-form-item>
</el-form-item> <el-form-item class="query-form-item">
<el-form-item class="query-form-item"> <el-input v-model="erpQuery.name"
<el-input v-model="erpQuery.name" clearable="true"
clearable="true" placeholder="产品名称"></el-input>
placeholder="产品名称"></el-input> </el-form-item>
</el-form-item> <el-form-item class="query-form-item">
<el-form-item class="query-form-item"> <el-input v-model="erpQuery.registerNo"
<el-input v-model="erpQuery.registerNo" clearable="true"
clearable="true" placeholder="注册/备案凭证号"></el-input>
placeholder="注册/备案凭证号"></el-input> </el-form-item>
</el-form-item> <el-form-item class="query-form-item">
<el-form-item class="query-form-item"> <el-input v-model="erpQuery.manufactory"
<el-input v-model="erpQuery.manufactory" clearable="true"
clearable="true" placeholder="生产厂家"></el-input>
placeholder="生产厂家"></el-input> </el-form-item>
</el-form-item> </el-row>
<el-form-item class="query-form-item">
<el-input <el-row>
v-model="erpQuery.spec" <el-form-item class="query-form-item">
clearable="true" <el-input
placeholder="规格型号" v-model="erpQuery.spec"
></el-input> clearable="true"
</el-form-item> placeholder="规格型号"
<el-form-item class="query-form-item"> ></el-input>
<el-select v-model="thirdSysFk" placeholder="请选择第三方系统" disabled="true"> </el-form-item>
<el-option <el-form-item class="query-form-item">
v-for="item in thirdSys" <el-select v-model="thirdSysFk" placeholder="请选择第三方系统" disabled="true">
:key="item.value" <el-option
:label="item.thirdName" v-for="item in thirdSys"
:key="item.value"
:value="item.thirdId"> :label="item.thirdName"
<span style="float: left">{{ item.thirdName }}</span>
<span style="float: right; color: #8492a6; font-size: 13px">{{ item.thirdId }}</span> :value="item.thirdId">
</el-option> <span style="float: left">{{ item.thirdName }}</span>
</el-select> <span style="float: right; color: #8492a6; font-size: 13px">{{ item.thirdId }}</span>
</el-form-item> </el-option>
<el-form-item style="display: flex"> </el-select>
<el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button> </el-form-item>
<el-button type="primary" icon="search" @click="searchErpList"></el-button> <el-form-item style="display: flex">
</el-form-item> <el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button>
<el-button type="primary" icon="search" @click="searchErpList"></el-button>
</el-form-item>
</el-row>
</el-form> </el-form>
<el-table <el-table

@ -833,10 +833,10 @@ export default {
pidData: {}, pidData: {},
deleteLoading: false, deleteLoading: false,
uploadFileUrl: null, uploadFileUrl: null,
userData: null, userData: [],
bussinessTypeData: null, bussinessTypeData: [],
userList: null, userList: [],
bussinessTypeList: null, bussinessTypeList: [],
userFormVisible: false, userFormVisible: false,
relBusUserVisile: false, relBusUserVisile: false,
currentCode: null, currentCode: null,
@ -1409,13 +1409,18 @@ export default {
if (res.code === 20000) { if (res.code === 20000) {
this.userFormVisible = false; this.userFormVisible = false;
this.$message.success("添加成功"); this.$message.success("添加成功");
let loadParam = { this.userQuery = {
code: this.currentCode code: this.currentCode,
}; page: 1,
limit: 10
}
// //
warehouseUserList(loadParam).then((res) => { warehouseUserList(this.userQuery).then((res) => {
this.userData = res.data; this.userData = res.data.list;
this.userTotal = res.data.total;
}).catch((error) => { }).catch((error) => {
this.userData = [];
this.userTotal = 0;
}); });
} else { } else {
this.$message.error(res.message); this.$message.error(res.message);
@ -1464,12 +1469,17 @@ export default {
saveWarehouseBussinessType(query).then((res) => { saveWarehouseBussinessType(query).then((res) => {
this.$message.success("添加成功"); this.$message.success("添加成功");
// //
let loadParam = { this.busQuery = {
code: this.currentCode code: this.currentCode,
page: 1,
limit: 10
} }
warehouseBussinessTypeList(loadParam).then((res) => { warehouseBussinessTypeList(this.busQuery).then((res) => {
this.bussinessTypeData = res.data; this.bussinessTypeData = res.data.list;
this.busTotal = res.data.total;
}).catch((error) => { }).catch((error) => {
this.bussinessTypeData = [];
this.busTotal = 0;
}); });
}).catch((error) => { }).catch((error) => {
}); });

@ -425,6 +425,7 @@ export default {
storageChange(row) { storageChange(row) {
this.formData.fromCorpId = row.code; this.formData.fromCorpId = row.code;
this.formData.fromCorp = row.name; this.formData.fromCorp = row.name;
this.formData.fromSubInvCode = null;
this.findSubStorageMethod(); this.findSubStorageMethod();
}, },
@ -435,6 +436,10 @@ export default {
actionChange(item) { actionChange(item) {
this.curAction = this.getActionItem(item); this.curAction = this.getActionItem(item);
// this.formData.locStorageCode = this.curAction.storageCode; // this.formData.locStorageCode = this.curAction.storageCode;
//
this.formData.locStorageCode = null;
this.formData.invWarehouseCode = null;
this.formData.fromCorp = null;
this.findMethod(); this.findMethod();
}, },
getActionItem(action) { getActionItem(action) {

@ -61,6 +61,9 @@
<span>{{ getStorageName(scope.row.locStorageCode) }}</span> <span>{{ getStorageName(scope.row.locStorageCode) }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column
label="创建时间" label="创建时间"
prop="actDate" prop="actDate"
@ -72,24 +75,6 @@
<span>{{ scope.row.actDate }}</span> <span>{{ scope.row.actDate }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column
label="审核时间"
prop="actDate"
width="150"
show-overflow-tooltip="true"
>
<template slot-scope="scope">
<i class="el-icon-time"></i>
<span>{{ scope.row.auditTime }}</span>
</template>
</el-table-column>
<el-table-column label="校验状态" prop="contrastStatus" width="120">
<template slot-scope="scope">
<el-tag :type="(scope.row.contrastStatus === 1) | statusFilterType">
{{ erpCheckStatus[scope.row.contrastStatus] }}
</el-tag>
</template>
</el-table-column>
<el-table-column label="操作" fixed="right" width="150"> <el-table-column label="操作" fixed="right" width="150">
<template slot-scope="scope"> <template slot-scope="scope">
<el-button <el-button
@ -109,15 +94,6 @@
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
<el-pagination
:page-size="query.limit"
@current-change="handleCurrentChange"
layout="prev, pager, next"
:total="total"
:current-page="query.page"
>
</el-pagination>
</el-card> </el-card>
<el-card class="el-card" v-if="true"> <el-card class="el-card" v-if="true">
@ -246,365 +222,368 @@
</template> </template>
<script> <script>
import {filterOrderForDelete, orderDetail, deleteByOrderId, updateOrderInfo} from "../../api/inout/order"; import {filterOrderForDelete, orderDetail, deleteByOrderId, updateOrderInfo} from "../../api/inout/order";
import store from "../../store"; import store from "../../store";
import {getBussinessType} from "../../api/basic/bussinessType"; import {getBussinessType} from "../../api/basic/bussinessType";
import {filterAllByUser} from "../../api/basic/invWarehouse"; import {filterAllByUser} from "../../api/basic/invWarehouse";
import codeReplace from "./codeReplace"; import codeReplace from "./codeReplace";
export default { export default {
name: "stockOrderDelete", name: "stockOrderDelete",
data() { data() {
return { return {
query: { query: {
billNo: "", billNo: "",
page: 1, page: 1,
limit: 10 limit: 10
},
detailQuery: {
orderIdFk: "",
page: 1,
limit: 20
},
busTypes: [],
list: [],
detailList: [],
currentCheckIndex: -1,
multipId: [],
formLabelWidth: '150px',
total: 0,
detailTotal: 0,
storageList: [],
loading: false,
detailLoading: false,
idQuery: {
id: "",
},
sourceMap: {
"1": "web端新增单据",
"2": "第三方系统",
"3": "扫码单据转换",
},
fromTypeMap: {
"1": "UDIMS平台",
"2": "网页新增",
"3": "pda即时校验",
"4": "pda未校验",
"5": "pc端扫码精灵",
"6": "缺量补录单据",
"7": "UDI供应商平台",
"8": "平衡补录单据",
},
erpCheckStatus: {
1: "已完成",
0: "已完成",
2: "已完成",
},
isSp: store.getters.customerId,
detailFormData: {},
detailFormLoading: false,
actDateRange: [],
curRow: null,
codeDetailVisible: false,
editOrderVisible: false,
actDate: null, //
auditTime: null, //
orderIds: [],
pickerOptions: {
disabledDate: time => {
let endDate = new Date().getTime();
let nowDate = new Date(time).getTime();
return (nowDate > endDate);
}
}
}
},
methods: {
onReset() {
this.$router.push({
path: ""
});
this.query = {
billNo: ""
};
this.list = [];
this.detailList = [];
this.actDateRange = [];
}, },
onSubmit() { detailQuery: {
this.getList(); orderIdFk: "",
page: 1,
limit: 20
}, },
handleCurrentChange(val) { busTypes: [],
this.query.page = val; list: [],
this.getList(); detailList: [],
currentCheckIndex: -1,
multipId: [],
formLabelWidth: '150px',
total: 0,
detailTotal: 0,
storageList: [],
loading: false,
detailLoading: false,
idQuery: {
id: "",
}, },
sourceMap: {
changeFun(row) { "1": "web端新增单据",
let _this = this; "2": "第三方系统",
_this.multipId = []; //ID "3": "扫码单据转换",
row.forEach((item) => {
_this.multipId.push(item.id);
})
}, },
detailHandleCurrentChange(val) { fromTypeMap: {
this.query.page = val; "1": "UDIMS平台",
this.getOrderDetailList(); "2": "网页新增",
"3": "pda即时校验",
"4": "pda未校验",
"5": "pc端扫码精灵",
"6": "缺量补录单据",
"7": "UDI供应商平台",
"8": "平衡补录单据",
}, },
// erpCheckStatus: {
resetForm() { // error: "",
if (this.$refs["dataForm"]) { // null: "",
// // success: "",
this.$refs["dataForm"].clearValidate(); 1: "校验异常",
// 0: "未校验",
this.$refs["dataForm"].resetFields(); 2: "校验成功",
this.getList();
}
}, },
getList() { isSp: store.getters.customerId,
this.query.billNo = this.query.billNo.trim(); detailFormData: {},
if (this.query.billNo === null || this.query.billNo === "") { detailFormLoading: false,
this.$message.warning("请输入需要查询的单号"); actDateRange: [],
} else { curRow: null,
this.loading = true; codeDetailVisible: false,
filterOrderForDelete(this.query) editOrderVisible: false,
.then(response => { actDate: null, //
this.loading = false; auditTime: null, //
this.list = response.data.list || []; orderIds: [],
this.detailList = []; pickerOptions: {
this.total = response.data.total || 0; disabledDate: time => {
}) let endDate = new Date().getTime();
.catch(() => { let nowDate = new Date(time).getTime();
this.loading = false; return (nowDate > endDate);
this.list = [];
this.total = 0;
this.detailList = [];
});
} }
}, }
getOrderDetailList(row) { }
if (this.$isNotBlank(row)) { },
this.detailQuery.orderId = row.id; methods: {
this.detailQuery.orderIdFk = row.id; onReset() {
} this.$router.push({
this.detailLoading = true; path: ""
orderDetail(this.detailQuery) });
.then((response) => { this.query = {
this.detailLoading = false; billNo: ""
this.detailList = response.data || []; };
this.list = [];
this.detailList = [];
this.actDateRange = [];
},
onSubmit() {
this.getList();
},
handleCurrentChange(val) {
this.query.page = val;
this.getList();
},
changeFun(row) {
let _this = this;
_this.multipId = []; //ID
row.forEach((item) => {
_this.multipId.push(item.id);
})
},
detailHandleCurrentChange(val) {
this.query.page = val;
this.getOrderDetailList();
},
//
resetForm() {
if (this.$refs["dataForm"]) {
//
this.$refs["dataForm"].clearValidate();
//
this.$refs["dataForm"].resetFields();
this.getList();
}
},
getList() {
this.query.billNo = this.query.billNo.trim();
if (this.query.billNo === null || this.query.billNo === "") {
this.$message.warning("请输入需要查询的单号");
} else {
this.loading = true;
filterOrderForDelete(this.query)
.then(response => {
this.loading = false;
this.list = response.data.list || [];
this.detailList = [];
this.total = response.data.total || 0;
}) })
.catch(() => { .catch(() => {
this.detailLoading = false; this.loading = false;
this.list = [];
this.total = 0;
this.detailList = []; this.detailList = [];
}); });
}, }
tableRowClassName({row, rowIndex}) { },
if (rowIndex === 0) { getOrderDetailList(row) {
return 'highlight-row'; if (this.$isNotBlank(row)) {
this.detailQuery.orderId = row.id;
this.detailQuery.orderIdFk = row.id;
}
this.detailLoading = true;
orderDetail(this.detailQuery)
.then((response) => {
this.detailLoading = false;
this.detailList = response.data || [];
})
.catch(() => {
this.detailLoading = false;
this.detailList = [];
});
},
tableRowClassName({row, rowIndex}) {
if (rowIndex === 0) {
return 'highlight-row';
}
return '';
},
getActionName(action) {
for (let i = 0; i < this.busTypes.length; i++) {
if (this.busTypes[i].action === action) {
return this.busTypes[i].name;
} }
return ''; }
}, },
getActionName(action) { getBusType() {
for (let i = 0; i < this.busTypes.length; i++) { let query = {
if (this.busTypes[i].action === action) { enabled: true,
return this.busTypes[i].name; };
} getBussinessType(query)
.then((response) => {
this.busTypes = response.data.list || [];
})
.catch(() => {
});
},
getStorageName(code) {
for (let i = 0; i < this.storageList.length; i++) {
if (this.storageList[i].code === code) {
return this.storageList[i].name;
} }
}, }
getBusType() { },
let query = { getStorage() {
enabled: true, this.storageList = [];
filterAllByUser()
.then((response) => {
this.storageList = response.data || [];
})
.catch(() => {
});
},
deleteOrder(row) {
this.$confirm('是否确认删除单据及相关数据?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
let params = {
id: row.id
}; };
getBussinessType(query) deleteByOrderId(params).then((res) => {
.then((response) => { if (res.code === 20000) {
this.busTypes = response.data.list || []; this.$message({
}) type: 'success',
.catch(() => { message: '删除成功!'
}); });
}, this.getList();
getStorageName(code) { this.detailList = [];
for (let i = 0; i < this.storageList.length; i++) {
if (this.storageList[i].code === code) {
return this.storageList[i].name;
} }
} }).catch((error) => {
}, this.$message.error("删除失败");
getStorage() {
this.storageList = [];
filterAllByUser()
.then((response) => {
this.storageList = response.data || [];
})
.catch(() => {
});
},
deleteOrder(row) {
this.$confirm('是否确认删除单据及相关数据?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
let params = {
id: row.id
};
deleteByOrderId(params).then((res) => {
if (res.code === 20000) {
this.$message({
type: 'success',
message: '删除成功!'
});
this.getList();
this.detailList = [];
}
}).catch((error) => {
this.$message.error("删除失败");
});
}).catch(() => {
this.$message({
type: 'info',
message: '已取消删除'
});
}); });
}, }).catch(() => {
deleteAllOrder() { this.$message({
if (this.query.billNo === null || this.query.billNo === "" || this.list.length === 0) { type: 'info',
return; message: '已取消删除'
} });
this.$confirm("是否确认删除此单据及所有关联单据?", "提示", { });
confirmButtonText: '确定', },
cancelButtonText: '取消', deleteAllOrder() {
type: 'warning' if (this.query.billNo === null || this.query.billNo === "" || this.list.length === 0) {
}).then(() => { return;
let ids = []; }
this.list.forEach(item => { this.$confirm("是否确认删除此单据及所有关联单据?", "提示", {
ids.push(item.id); confirmButtonText: '确定',
}); cancelButtonText: '取消',
let params = { type: 'warning'
ids: ids }).then(() => {
}; let ids = [];
deleteByOrderId(params).then((res) => {
if (res.code === 20000) {
this.$message.success("删除成功");
this.list = [];
this.detailList = [];
}
}).catch((error) => {
this.$message.error("删除失败");
})
}).catch(() => {
this.$message({
type: 'info',
message: '已取消删除'
});
})
},
editAllOrderTime() {
if (this.query.billNo === null || this.query.billNo === "" || this.list.length === 0) {
return;
}
this.actDate = null;
this.auditTime = null;
this.editOrderVisible = true;
},
intentDetail(row) {
this.codeDetailVisible = true;
this.idQuery.id = row.id;
},
handleEdit(row) {
this.editOrderVisible = true;
let actDateSplit = row.actDate.split(" ");
this.actDate = actDateSplit[0];
this.actDate2 = actDateSplit[1];
let auditTimeSplit = row.auditTime.split(" ");
this.auditTime = auditTimeSplit[0];
this.auditTime2 = auditTimeSplit[1];
this.orderIds = [];
},
updateOrderInfo() {
if (this.actDate === null || this.actDate === '') {
this.$message.warning("创建时间不能为空");
return;
}
this.editOrderVisible = false;
this.list.forEach(item => { this.list.forEach(item => {
this.orderIds.push(item.id); ids.push(item.id);
}); });
let data = { let params = {
actDate: this.actDate, ids: ids
auditTime: this.auditTime,
orderIds: this.orderIds
}; };
updateOrderInfo(data).then((res) => { deleteByOrderId(params).then((res) => {
if (res.code === 20000) { if (res.code === 20000) {
this.$message.success("修改成功"); this.$message.success("删除成功");
this.getList(); this.list = [];
this.detailList = [];
} }
}).catch((error) => { }).catch((error) => {
this.$message.error(error.message); this.$message.error("删除失败");
})
}).catch(() => {
this.$message({
type: 'info',
message: '已取消删除'
}); });
}, })
cancelEdit() { },
this.editOrderVisible = false; editAllOrderTime() {
if (this.query.billNo === null || this.query.billNo === "" || this.list.length === 0) {
return;
} }
this.actDate = null;
this.auditTime = null;
this.editOrderVisible = true;
}, },
components: { intentDetail(row) {
codeReplace this.codeDetailVisible = true;
this.idQuery.id = row.id;
}, },
filters: { handleEdit(row) {
statusFilterType(status) { this.editOrderVisible = true;
const statusMap = { let actDateSplit = row.actDate.split(" ");
0: "gray", this.actDate = actDateSplit[0];
1: "success" this.actDate2 = actDateSplit[1];
};
return statusMap[status]; let auditTimeSplit = row.auditTime.split(" ");
}, this.auditTime = auditTimeSplit[0];
statusFilterName(status) { this.auditTime2 = auditTimeSplit[1];
const statusMap = {
"1": "草稿", this.orderIds = [];
"2": "未配货", },
"3": "待校验", updateOrderInfo() {
"4": "已校验", if (this.actDate === null || this.actDate === '') {
"5": "已核对", this.$message.warning("创建时间不能为空");
}; return;
return statusMap[status];
},
typeFilterName(type) {
const typeMap = {
1: "预入库",
2: "普通采购",
};
return typeMap[type];
} }
this.editOrderVisible = false;
this.list.forEach(item => {
this.orderIds.push(item.id);
});
let data = {
actDate: this.actDate,
auditTime: this.auditTime,
orderIds: this.orderIds
};
updateOrderInfo(data).then((res) => {
if (res.code === 20000) {
this.$message.success("修改成功");
this.getList();
}
}).catch((error) => {
this.$message.error(error.message);
});
},
cancelEdit() {
this.editOrderVisible = false;
}
},
components: {
codeReplace
},
filters: {
statusFilterType(status) {
const statusMap = {
0: "gray",
1: "success"
};
return statusMap[status];
},
statusFilterName(status) {
const statusMap = {
"1": "草稿",
"2": "未配货",
"3": "待校验",
"4": "已校验",
"5": "已核对",
};
return statusMap[status];
}, },
created() { typeFilterName(type) {
this.getBusType(); const typeMap = {
this.getStorage(); 1: "预入库",
2: "普通采购",
};
return typeMap[type];
} }
},
created() {
this.getBusType();
this.getStorage();
} }
}
</script> </script>
<style scoped> <style scoped>
.el-dialog { .el-dialog {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
margin: 0 !important; margin: 0 !important;
position: absolute; position: absolute;
top: 50%; top: 50%;
left: 50%; left: 50%;
transform: translate(-50%, -50%); transform: translate(-50%, -50%);
} }
.el-dialog .el-dialog__body { .el-dialog .el-dialog__body {
flex: 1; flex: 1;
overflow: auto; overflow: auto;
} }
.el-table /deep/ .highlight-row { .el-table /deep/ .highlight-row {
background: #cae3f9; background: #cae3f9;
} }
</style> </style>

@ -564,18 +564,18 @@ export default {
}, },
distributionVisible: false, distributionVisible: false,
detailFormRules: { detailFormRules: {
// batchNo: [ batchNo: [
// {required: true, message: "", trigger: "blur"} {required: true, message: "请输入批次号", trigger: "blur"}
// ], ],
// productDate: [ productDate: [
// {required: true, message: "", trigger: "blur"} {required: true, message: "请输入生产日期", trigger: "blur"}
// ], ],
// expireDate: [ expireDate: [
// {required: true, message: "", trigger: "blur"} {required: true, message: "请输入失效日期", trigger: "blur"}
// ], ],
// sweepCount: [ sweepCount: [
// {required: true, message: "", trigger: "blur"} {required: true, message: "请输入扫码数量", trigger: "blur"}
// ] ]
}, },
detailFormVisible: false, detailFormVisible: false,
detailFormData: {}, detailFormData: {},

@ -62,7 +62,7 @@
</el-col> </el-col>
</el-row> </el-row>
<el-row :gutter="20" style="margin-top: -10px"> <el-row :gutter="20" style="margin-top: -5px">
<el-col :span="3"> <el-col :span="3">
<div class="ao-text"> <div class="ao-text">
<span>业务类型</span> <span>业务类型</span>
@ -164,7 +164,6 @@
</el-col> </el-col>
</el-row> </el-row>
<el-row :gutter="20" style="margin-top: -10px"> <el-row :gutter="20" style="margin-top: -10px">
<el-col :span="3"> <el-col :span="3">
<div class="ao-text"> <div class="ao-text">
@ -457,7 +456,6 @@ import {filterAll, filterAllByLoc, filterAllByUser} from "@/api/basic/invWarehou
import dialogInvProduct from "../inventory/DialogInvProduct" import dialogInvProduct from "../inventory/DialogInvProduct"
import {filterSubByInv} from "@/api/basic/invSubWarehouse"; import {filterSubByInv} from "@/api/basic/invSubWarehouse";
import {isBlank} from "@/utils/strUtil"; import {isBlank} from "@/utils/strUtil";
import {filterDepts} from "@/api/auth/authDept";
export default { export default {
name: "idQuery", name: "idQuery",
@ -495,7 +493,6 @@ export default {
type: null, type: null,
corpName: "", corpName: "",
corpId: "", corpId: "",
deptCode: null,
}, },
formRules: { formRules: {
corpName: [ corpName: [
@ -828,6 +825,9 @@ export default {
locStorageCode: this.formData.locStorageCode, locStorageCode: this.formData.locStorageCode,
invWarehouseCode: this.formData.invWarehouseCode, invWarehouseCode: this.formData.invWarehouseCode,
}; };
if (!isBlank(this.formData.unitIdFk) && this.formData.unitIdFk === this.formData.corpId) {
this.invQueryData.corpId = this.formData.corpId;
}
this.selectInvProductVisible = true; this.selectInvProductVisible = true;
} else if (item.mainAction == "WareHouseIn" && this.curAction.corpType == 1 && this.formData.noInvOut != true) { } else if (item.mainAction == "WareHouseIn" && this.curAction.corpType == 1 && this.formData.noInvOut != true) {

@ -165,8 +165,7 @@ export default {
keys: [], keys: [],
}, },
dataList: [], dataList: [],
pageTotal: 1, pageTotal: 0,
total: 1,
currentRow: null, currentRow: null,
loading: false, loading: false,
udiRlDetailVisible: false, udiRlDetailVisible: false,
@ -224,7 +223,7 @@ export default {
nameCode: "", nameCode: "",
ggxh: null, ggxh: null,
page: 1, page: 1,
limit: 20, limit: 10,
addType: 1, addType: 1,
billType: this.data.formData.billType, billType: this.data.formData.billType,
corpId: this.data.formData.corpId, corpId: this.data.formData.corpId,

@ -469,7 +469,7 @@ import selectRlDialog from "./DialogSelectRl";
import editCodeDialog from "./editCode"; import editCodeDialog from "./editCode";
import A from "../../plugin/KeyScaner" import A from "../../plugin/KeyScaner"
import {deleteLog} from "@/api/basic/udiinfolog"; import {deleteLog} from "@/api/basic/udiinfolog";
import {filterDepts} from "@/api/auth/authDept";
export default { export default {
name: "idQuery", name: "idQuery",
@ -559,7 +559,6 @@ export default {
checkSuccess: false, checkSuccess: false,
codeDetail: null, codeDetail: null,
editTitle: "编辑条码", editTitle: "编辑条码",
fromDeptOptions: [],
}; };
}, },
components: { components: {
@ -583,7 +582,6 @@ export default {
fromCorpId: this.formData.fromCorpId, fromCorpId: this.formData.fromCorpId,
outChangeEnable: this.formData.outChangeEnable, outChangeEnable: this.formData.outChangeEnable,
preCheck: this.formData.preCheck, preCheck: this.formData.preCheck,
deptCode: this.formData.deptCode,
} }
submitOrderWeb(tQuery) submitOrderWeb(tQuery)
.then((response) => { .then((response) => {
@ -922,6 +920,9 @@ export default {
code: this.formData.invWarehouseCode, code: this.formData.invWarehouseCode,
enabled: true, enabled: true,
}; };
if (isBlank(query.code)) {
query.code = this.$store.getters.locSubInvCode;
}
getLocalJoinByUser(query) getLocalJoinByUser(query)
.then((response) => { .then((response) => {
this.busTypes = response.data.list || []; this.busTypes = response.data.list || [];
@ -1258,15 +1259,9 @@ export default {
this.findStorageMethod(); this.findStorageMethod();
} }
} }
this.findSubInvByInv(this.formData.locStorageCode); this.findSubInvByInv(this.formData.locStorageCode);
} }
, };
}
;
</script> </script>

@ -262,19 +262,18 @@
import { import {
orderListError, orderListError,
deleteByOrderId, deleteByOrderId,
commitOrder, addCommitOrder, addCommitOrder,
updateUnit, updateUnit,
} from "../../api/inout/order"; } from "../../api/inout/order";
import draggable from "vuedraggable"; import draggable from "vuedraggable";
import codeDetail from "./IONewCode"; import codeDetail from "./IONewCode";
import addOrder from "./IOAddOrder"; import addOrder from "./IOAddOrder";
import store from "../../store"; import store from "../../store";
import {getBussinessType} from "../../api/basic/bussinessType";
import {getBasicUnitMaintains} from "@/api/basic/basicUnitMaintain"; import {getBasicUnitMaintains} from "@/api/basic/basicUnitMaintain";
import {filterAllByUser} from "@/api/basic/invWarehouse"; import {filterAllByUser} from "@/api/basic/invWarehouse";
import {getLocalJoinByUser} from "@/api/basic/busLocalType"; import {getLocalJoinByUser} from "@/api/basic/busLocalType";
import {filterSubByInv} from "@/api/basic/invSubWarehouse"; import {filterSubByInv} from "@/api/basic/invSubWarehouse";
import {isBlank} from "@/utils/strUtil";
const formJson = { const formJson = {
site_id: "", site_id: "",
@ -412,7 +411,6 @@ export default {
}, },
selectUnit(row) { selectUnit(row) {
console.log(row.id);
this.unitUpdateQuery.id = this.curIndex; this.unitUpdateQuery.id = this.curIndex;
this.unitUpdateQuery.fromCorp = row.name; this.unitUpdateQuery.fromCorp = row.name;
this.unitUpdateQuery.fromCorpId = row.erpId; this.unitUpdateQuery.fromCorpId = row.erpId;
@ -432,7 +430,6 @@ export default {
this.filterQuery.customerId = store.getters.customerId; this.filterQuery.customerId = store.getters.customerId;
orderListError(this.filterQuery) orderListError(this.filterQuery)
.then((response) => { .then((response) => {
console.log(response)
this.loading = false; this.loading = false;
this.list = response.data.list || []; this.list = response.data.list || [];
this.total = response.data.total || 0; this.total = response.data.total || 0;
@ -449,7 +446,6 @@ export default {
this.deleteData.id = data; this.deleteData.id = data;
deleteByOrderId(this.deleteData) deleteByOrderId(this.deleteData)
.then((response) => { .then((response) => {
if (response.code == 20000) { if (response.code == 20000) {
this.getList(); this.getList();
this.$message({ this.$message({
@ -460,13 +456,16 @@ export default {
this.$message.error("补录单据列表已不存在该扫码单据!"); this.$message.error("补录单据列表已不存在该扫码单据!");
this.getList(); this.getList();
} }
}) })
.catch(() => { .catch(() => {
}); });
}, },
deleteDialog(rowId) { deleteDialog(rowId) {
if (isBlank(rowId)) {
this.$message.error("请选择需要删除的数据!");
return;
}
this.$confirm("此操作将永久删除该订单, 是否继续?", "提示", { this.$confirm("此操作将永久删除该订单, 是否继续?", "提示", {
confirmButtonText: "确定", confirmButtonText: "确定",
cancelButtonText: "取消", cancelButtonText: "取消",
@ -503,7 +502,6 @@ export default {
var corpOrderId = mOrder.remark; var corpOrderId = mOrder.remark;
this.errorDetail = mOrder.remark; this.errorDetail = mOrder.remark;
console.log(corpOrderId + " " + mOrder + " " + mOrder.remark);
this.dialogVisible = true; this.dialogVisible = true;
}, },

@ -106,6 +106,7 @@
<el-table-column label="所属部门" prop="deptName" width="120"> <el-table-column label="所属部门" prop="deptName" width="120">
</el-table-column> </el-table-column>
<el-table-column label="创建时间" prop="actDate" show-overflow-tooltip> <el-table-column label="创建时间" prop="actDate" show-overflow-tooltip>
<template slot-scope="scope"> <template slot-scope="scope">
<i class="el-icon-time"></i> <i class="el-icon-time"></i>
@ -263,8 +264,6 @@
<script> <script>
import { import {
orderListError,
codeList,
filterOrder, filterOrder,
deleteByOrderId, deleteByOrderId,
commitOrder, commitOrder,
@ -273,14 +272,13 @@ import {
import {getBasicUnitMaintains} from "../../api/basic/basicUnitMaintain" import {getBasicUnitMaintains} from "../../api/basic/basicUnitMaintain"
import draggable from "vuedraggable"; import draggable from "vuedraggable";
import codeDetail from "./errorCode"; import codeDetail from "./errorCode";
import ioErrorOrder from "./IOErrorOrder"; import ioErrorOrder from "./IOErrorOrder";
import addOrder from "./IOAddOrder"; import addOrder from "./IOAddOrder";
import store from "../../store"; import store from "../../store";
import {getBussinessType} from "../../api/basic/bussinessType";
import {filterAllByUser} from "@/api/basic/invWarehouse"; import {filterAllByUser} from "@/api/basic/invWarehouse";
import {getLocalJoinByUser} from "@/api/basic/busLocalType"; import {getLocalJoinByUser} from "@/api/basic/busLocalType";
import {filterSubByInv} from "@/api/basic/invSubWarehouse"; import {filterSubByInv} from "@/api/basic/invSubWarehouse";
import {isBlank} from "@/utils/strUtil";
const formJson = { const formJson = {
site_id: "", site_id: "",
@ -515,6 +513,12 @@ export default {
this.filterQuery.customerId = store.getters.customerId; this.filterQuery.customerId = store.getters.customerId;
// this.filterQuery.status = 1; // this.filterQuery.status = 1;
// this.filterQuery.statusOrOne = -1; // this.filterQuery.statusOrOne = -1;
if (isBlank(this.filterQuery.locStorageCode)) {
this.filterQuery.locStorageCode = this.$store.getters.locInvCode;
this.filterQuery.invWarehouseCode = this.$store.getters.locSubInvCode;
}
filterOrder(this.filterQuery) filterOrder(this.filterQuery)
.then((response) => { .then((response) => {
this.loading = false; this.loading = false;

@ -83,6 +83,7 @@ import store from "../../store";
import {getBussinessType} from "../../api/basic/bussinessType"; import {getBussinessType} from "../../api/basic/bussinessType";
import {getBasicUnitMaintains} from "@/api/basic/basicUnitMaintain"; import {getBasicUnitMaintains} from "@/api/basic/basicUnitMaintain";
import {getStockOrderDetailInstrumentById} from "@/api/inout/stockOrder"; import {getStockOrderDetailInstrumentById} from "@/api/inout/stockOrder";
import {isBlank} from "@/utils/strUtil";
export default { export default {
@ -115,12 +116,6 @@ export default {
unitFk: null, unitFk: null,
invStorageCode: null, invStorageCode: null,
}, },
detailQuery: {
code: null,
productIdFk: null,
page: 1,
limit: 20,
},
list: [], list: [],
codeDetailVisible: false, codeDetailVisible: false,
total: 0, total: 0,
@ -327,6 +322,9 @@ export default {
this.filterQuery.invStorageCode = this.invQueryData.locStorageCode; this.filterQuery.invStorageCode = this.invQueryData.locStorageCode;
this.filterQuery = Object.assign(this.filterQuery, query); this.filterQuery = Object.assign(this.filterQuery, query);
this.filterQuery.limit = parseInt(this.filterQuery.limit); this.filterQuery.limit = parseInt(this.filterQuery.limit);
if (!isBlank(this.invQueryData.corpId)) {
this.filterQuery.supId = this.invQueryData.corpId;
}
// //
this.getList(); this.getList();
}, },

@ -77,7 +77,7 @@
<el-form :inline="true" :model="query" class="query-form" size="mini"> <el-form :inline="true" :model="query" class="query-form" size="mini">
<el-form-item class="query-form-item"> <el-form-item class="query-form-item">
<el-input v-model="query.code" placeholder="条码查询"></el-input> <el-input v-model="query.code" placeholder="条码查询" clearable></el-input>
</el-form-item> </el-form-item>
<el-form-item> <el-form-item>

@ -146,7 +146,7 @@ import codeDetail from "./InvProductsDetail";
import store from "../../store"; import store from "../../store";
import {getBussinessType} from "../../api/basic/bussinessType"; import {getBussinessType} from "../../api/basic/bussinessType";
import {getBasicUnitMaintains} from "@/api/basic/basicUnitMaintain"; import {getBasicUnitMaintains} from "@/api/basic/basicUnitMaintain";
import {filterAllByUser, filterUplLocInv} from "@/api/basic/invWarehouse"; import {filterUplLocInv} from "@/api/basic/invWarehouse";
import {filterSubByInv} from "@/api/basic/invSubWarehouse"; import {filterSubByInv} from "@/api/basic/invSubWarehouse";
@ -377,6 +377,7 @@ export default {
this.getList(); this.getList();
this.findStorageCode(); this.findStorageCode();
this.getStorage(); this.getStorage();
this.findMethod();
}, },
}; };
</script> </script>

@ -26,11 +26,11 @@
> >
<el-option <el-option
v-for="item in fromOptions" v-for="item in fromOptions"
:key="item.companyName" :key="item.name"
:label="item.companyName" :label="item.name"
:value="item.customerId" :value="item.erpId"
> >
<span style="float: left">{{ item.companyName }}</span> <span style="float: left">{{ item.name }}</span>
</el-option> </el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
@ -307,12 +307,10 @@ export default {
}); });
}, },
findMethod(query) { findMethod(query) {
console.log(query);
this.fromOptions = []; this.fromOptions = [];
let cQuery = { let cQuery = {
key: query, key: query,
customerName: query, customerName: query,
}; };
getBasicUnitMaintains(cQuery) getBasicUnitMaintains(cQuery)
.then((response) => { .then((response) => {

Loading…
Cancel
Save