Merge branch 'fencang' into busUser

featFunction
anthonywj 3 years ago
commit c435d5b024

@ -324,7 +324,6 @@ export default {
}, },
entrustSubInvChange() { entrustSubInvChange() {
let query = { let query = {
code: this.inputQuery.entrustSubInv, code: this.inputQuery.entrustSubInv,
} }
@ -358,6 +357,7 @@ export default {
this.getList(); this.getList();
this.getStorage(); this.getStorage();
// if (this.$isNotBlank(this.inputQuery.entrustInv)) { // if (this.$isNotBlank(this.inputQuery.entrustInv)) {
// this.findEntrustSubInvByInv(); // this.findEntrustSubInvByInv();
// } // }

@ -41,10 +41,9 @@
<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="55"></el-table-column> <el-table-column label="序号" type="index" width="55"></el-table-column>
<el-table-column label="单据类型名称" prop="name"></el-table-column> <el-table-column label="单据类型名称" prop="name"></el-table-column>
<el-table-column label="单据类型代码" prop="action"></el-table-column> <el-table-column label="单据类型代码" prop="action"></el-table-column>
<el-table-column label="第三方系统" prop="thirdSys"></el-table-column> <el-table-column label="第三方系统" prop="thirdSysName"></el-table-column>
<el-table-column label="备注" prop="remark"></el-table-column> <el-table-column label="备注" prop="remark"></el-table-column>
<el-table-column label="操作" width="100" fixed="right"> <el-table-column label="操作" width="100" fixed="right">
<template slot-scope="scope"> <template slot-scope="scope">
@ -195,6 +194,15 @@ export default {
.then((response) => { .then((response) => {
this.loading = false; this.loading = false;
this.list = response.data.list || []; this.list = response.data.list || [];
if (this.list.length > 0) {
this.list.forEach(item => {
this.thirdSys.forEach(third => {
if (item.thirdSys === third.thirdId) {
item.thirdSysName = third.thirdName;
}
})
})
}
this.total = response.data.total || 0; this.total = response.data.total || 0;
}) })
.catch(() => { .catch(() => {

@ -668,7 +668,7 @@
<el-form :inline="true" :model="thirdSubQuery" class="query-form" size="mini"> <el-form :inline="true" :model="thirdSubQuery" 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="thirdSubQuery.key" v-model="thirdSubQuery.name"
clearable clearable
placeholder="分库名称" placeholder="分库名称"
style="width: 400px" style="width: 400px"
@ -864,7 +864,7 @@ export default {
}, },
thirdSubQuery: { thirdSubQuery: {
parentId: null, parentId: null,
key: null, name: null,
page: 1, page: 1,
limit: 10, limit: 10,
thirdSysFk: "thirdId", thirdSysFk: "thirdId",
@ -1611,10 +1611,11 @@ export default {
}, },
intentSubSelect(row) { intentSubSelect(row) {
if (row != null) { if (row != null) {
this.thirdSubQuery.parentId = this.superRow.code; this.thirdSubQuery.parentId = this.superRow.code;
this.thirdSubQuery.thirdSysFk = row.sysId; if (row.sysId != null && row.sysId != undefined) {
this.thirdSubQuery.thirdSysFk = row.sysId;
}
} }
this.thrSubWarehouseData = []; this.thrSubWarehouseData = [];
this.thrSubWareHouseVisible = true; this.thrSubWareHouseVisible = true;

@ -48,7 +48,7 @@
<el-form-item> <el-form-item>
<el-button-group> <el-button-group>
<el-button type="primary" icon="search" @click="getCodeList" <el-button type="primary" icon="search" @click="search"
>查询 >查询
</el-button </el-button
> >
@ -180,7 +180,10 @@ export default {
this.query.page = val; this.query.page = val;
this.getCodeList(); this.getCodeList();
}, },
search() {
this.query.page = 1;
this.getCodeList();
},
getCodeList() { getCodeList() {
this.loading = true; this.loading = true;
this.query.productIdFk = this.idQuery.relIdFk; this.query.productIdFk = this.idQuery.relIdFk;

@ -143,6 +143,8 @@
:visible.sync="codeDetailVisible" :visible.sync="codeDetailVisible"
width="85%" width="85%"
v-if="codeDetailVisible" v-if="codeDetailVisible"
:close-on-click-modal="false"
:close-on-press-escape="false"
> >
<codeDetail <codeDetail
:idQuery="idQuery" :idQuery="idQuery"
@ -241,6 +243,7 @@ export default {
}, },
onSubmit() { onSubmit() {
this.loading = true; this.loading = true;
this.filterQuery.page = 1;
this.getList(); this.getList();
}, },
handleSizeChange(val) { handleSizeChange(val) {

@ -82,7 +82,7 @@
<el-form-item> <el-form-item>
<el-button-group> <el-button-group>
<el-button type="primary" icon="search" @click="getCodeList" <el-button type="primary" icon="search" @click="search"
>查询 >查询
</el-button </el-button
> >
@ -220,7 +220,10 @@ export default {
this.query.page = val; this.query.page = val;
this.getCodeList(); this.getCodeList();
}, },
search() {
this.query.page = 1;
this.getCodeList();
},
getCodeList() { getCodeList() {
this.loading = true; this.loading = true;
this.query.productIdFk = this.idQuery.relIdFk; this.query.productIdFk = this.idQuery.relIdFk;

@ -121,6 +121,8 @@
:visible.sync="codeDetailVisible" :visible.sync="codeDetailVisible"
width="85%" width="85%"
v-if="codeDetailVisible" v-if="codeDetailVisible"
:close-on-click-modal="false"
:close-on-press-escape="false"
> >
<codeDetail <codeDetail
:idQuery="idQuery" :idQuery="idQuery"
@ -205,6 +207,7 @@ export default {
}, },
onSubmit() { onSubmit() {
this.loading = true; this.loading = true;
this.filterQuery.page = 1;
this.getList(); this.getList();
}, },
handleSizeChange(val) { handleSizeChange(val) {
@ -231,7 +234,6 @@ export default {
this.filterQuery.customerId = store.getters.customerId; this.filterQuery.customerId = store.getters.customerId;
filterProducts(this.filterQuery) filterProducts(this.filterQuery)
.then((response) => { .then((response) => {
console.log(response)
this.loading = false; this.loading = false;
this.showSup = response.data.showSup; this.showSup = response.data.showSup;
this.list = response.data.list || []; this.list = response.data.list || [];
@ -309,7 +311,6 @@ export default {
}); });
}, },
findMethod(query) { findMethod(query) {
console.log(query);
this.fromOptions = []; this.fromOptions = [];
let cQuery = { let cQuery = {
key: query, key: query,

@ -157,6 +157,7 @@ export default {
}, },
onSubmit() { onSubmit() {
this.loading = true; this.loading = true;
this.filterQuery.page = 1;
this.getList(); this.getList();
}, },
handleSizeChange(val) { handleSizeChange(val) {

@ -208,7 +208,7 @@ export default {
registerNo: null, registerNo: null,
manufactory: null, manufactory: null,
name: "", name: "",
thirdSys: null, thirdSys: this.thirdSys[0].thirdId,
page: 1, page: 1,
limit: 20, limit: 20,
}; };

@ -6,7 +6,7 @@
<el-input <el-input
style="width: 400px" style="width: 400px"
v-model="filterQuery.companyName" v-model="filterQuery.companyName"
placeholder="客户名称" placeholder="企业名称"
></el-input> ></el-input>
</el-form-item> </el-form-item>

@ -96,6 +96,8 @@
:before-close="hideForm" :before-close="hideForm"
width="70%" width="70%"
top="5vh" top="5vh"
:close-on-click-modal="false"
:close-on-press-escape="false"
> >
<el-form :model="formData" :rules="formRules" ref="dataForm"> <el-form :model="formData" :rules="formRules" ref="dataForm">
<el-row :gutter="20" class="el-row" type="flex"> <el-row :gutter="20" class="el-row" type="flex">
@ -363,13 +365,6 @@ export default {
} }
}, },
formSubmit() { formSubmit() {
console.log(
this.formData.userName +
"--222---" +
this.formData.employeeName +
this.formData.userFlag +
this.formData.id
);
this.$refs["dataForm"].validate((valid) => { this.$refs["dataForm"].validate((valid) => {
if (valid) { if (valid) {
this.formLoading = true; this.formLoading = true;
@ -388,7 +383,6 @@ export default {
userName: this.formData.userName, userName: this.formData.userName,
employeeName: this.formData.employeeName, employeeName: this.formData.employeeName,
}; };
console.log(savequery.id + "---");
authAdminSave(savequery, this.formName).then((response) => { authAdminSave(savequery, this.formName).then((response) => {
this.formLoading = false; this.formLoading = false;
if (response.code !== 20000) { if (response.code !== 20000) {
@ -410,7 +404,6 @@ export default {
this.resetForm(); this.resetForm();
}); });
} else { } else {
console.log("参数错误");
} }
}); });
}, },

@ -308,13 +308,13 @@
></el-table-column> ></el-table-column>
<el-table-column <el-table-column
label="单据数量" label="单据数量"
prop="reCount" prop="erpCount"
width="100" width="100"
:show-overflow-tooltip="true" :show-overflow-tooltip="true"
></el-table-column> ></el-table-column>
<el-table-column <el-table-column
label="实际数量" label="实际数量"
prop="erpCount" prop="reCount"
width="100" width="100"
:show-overflow-tooltip="true" :show-overflow-tooltip="true"
></el-table-column> ></el-table-column>

@ -677,6 +677,7 @@ export default {
} else if (response.code == 508) { } else if (response.code == 508) {
this.originCode = ""; this.originCode = "";
this.formData.code = "01" + response.data.nameCode; this.formData.code = "01" + response.data.nameCode;
this.originCode =this.formData.code ;
} else { } else {
this.$alert(response.message, '提示', { this.$alert(response.message, '提示', {
confirmButtonText: '确定', confirmButtonText: '确定',
@ -1082,6 +1083,9 @@ export default {
this.$set(this.formData, "outChangeEnable", this.curAction.ullageFill); this.$set(this.formData, "outChangeEnable", this.curAction.ullageFill);
this.$set(this.formData, "codeFillCheck", this.curAction.codeFillCheck); this.$set(this.formData, "codeFillCheck", this.curAction.codeFillCheck);
this.formData.fromCorp = null;
this.formData.fromSubInvCode = null;
// this.formData.vailIn = this.curAction.vailInv; // this.formData.vailIn = this.curAction.vailInv;
// this.formData.preCheck = this.curAction.scanPreIn; // this.formData.preCheck = this.curAction.scanPreIn;
// this.formData.outChangeEnable = this.curAction.ullageFill; // this.formData.outChangeEnable = this.curAction.ullageFill;

@ -431,6 +431,7 @@ export default {
action: this.formData.billType, action: this.formData.billType,
locStorageCode: this.formData.locStorageCode, locStorageCode: this.formData.locStorageCode,
preCheck: this.formData.preCheck, preCheck: this.formData.preCheck,
fromCorp: this.formData.fromCorp
} }
submitOrderWeb(tQuery) submitOrderWeb(tQuery)
@ -541,6 +542,7 @@ export default {
} else if (response.code == 508) { } else if (response.code == 508) {
this.originCode = ""; this.originCode = "";
this.formData.code = "01" + response.data.nameCode; this.formData.code = "01" + response.data.nameCode;
this.originCode =this.formData.code ;
// this.$confirm("\n" + // this.$confirm("\n" +
// "DI:" + response.data.nameCode + "\n" + // "DI:" + response.data.nameCode + "\n" +
// "" + response.data.cpmctymc + "\n" + // "" + response.data.cpmctymc + "\n" +
@ -833,6 +835,7 @@ export default {
this.curAction = this.getActionItem(item); this.curAction = this.getActionItem(item);
this.$set(this.formData, "codeFillCheck", this.curAction.codeFillCheck); this.$set(this.formData, "codeFillCheck", this.curAction.codeFillCheck);
// this.formData.locStorageCode = this.curAction.storageCode; // this.formData.locStorageCode = this.curAction.storageCode;
// this.formData.fromCorp = null;
}, },
// //
bindRl(val) { bindRl(val) {

@ -232,6 +232,7 @@ export default {
path: "", path: "",
query: this.query, query: this.query,
}); });
this.query.page = 1;
this.getCodeList(); this.getCodeList();
}, },
handleSizeChange(val) { handleSizeChange(val) {
@ -280,7 +281,6 @@ export default {
getCodeList() { getCodeList() {
this.loading = true; this.loading = true;
this.query.orderId = this.idQuery.id; this.query.orderId = this.idQuery.id;
console.log(this.idQuery.id)
errorCodeList(this.query) // errorCodeList(this.query) //
.then((response) => { .then((response) => {
this.loading = false; this.loading = false;

@ -689,9 +689,7 @@ export default {
.then((response) => { .then((response) => {
this.detailLoading = false; this.detailLoading = false;
this.detailList = response.data.list || []; this.detailList = response.data.list || [];
/*this.detailList.forEach(data => { this.detailTotal = response.data.total;
data['edit'] = false;
});*/
}) })
.catch(() => { .catch(() => {
this.detailLoading = false; this.detailLoading = false;

@ -600,6 +600,7 @@ export default {
this.query.startTime = null; this.query.startTime = null;
this.query.endTime = null; this.query.endTime = null;
} }
this.query.page = 1;
this.getList(); this.getList();
if (this.query.status === "502") { if (this.query.status === "502") {
this.haveNewDistributionVisible = true; this.haveNewDistributionVisible = true;
@ -702,6 +703,7 @@ export default {
.then((response) => { .then((response) => {
this.detailLoading = false; this.detailLoading = false;
this.detailList = response.data.list || []; this.detailList = response.data.list || [];
this.detailTotal = response.data.total;
}) })
.catch(() => { .catch(() => {
this.detailLoading = false; this.detailLoading = false;

@ -618,7 +618,6 @@ export default {
}, },
handleEdit(index, row) { handleEdit(index, row) {
this.currentCheckIndex = index; this.currentCheckIndex = index;
console.log(this.currentCheckIndex)
}, },
handleSave(index, row) { handleSave(index, row) {
this.currentCheckIndex = -1; this.currentCheckIndex = -1;
@ -635,7 +634,6 @@ export default {
row.forEach((item) => { row.forEach((item) => {
_this.multipId.push(item.id); _this.multipId.push(item.id);
}) })
console.log(this.multipId);
}, },
batchSetParams(flag, type) { batchSetParams(flag, type) {
if (flag == '1' && type == 'salesListNo') { if (flag == '1' && type == 'salesListNo') {
@ -807,9 +805,9 @@ export default {
this.detailLoading = true; this.detailLoading = true;
stockOrderDetail(this.detailQuery) stockOrderDetail(this.detailQuery)
.then((response) => { .then((response) => {
console.log(response)
this.detailLoading = false; this.detailLoading = false;
this.detailList = response.data.list || []; this.detailList = response.data.list || [];
this.detailTotal = response.data.total;
}) })
.catch(() => { .catch(() => {
this.detailLoading = false; this.detailLoading = false;

Loading…
Cancel
Save