7/1 业务管理

演示数据2.0
wangwei 9 months ago
parent 128b6f43d7
commit d54de7a4a2

@ -6,14 +6,14 @@
<el-button
type="primary"
@click.native="saveOrder('1')"
:loading="loading"
:loading="draftLoading"
>草稿保存
</el-button
>
<el-button
type="primary"
@click.native="saveOrder('2')"
:loading="loading"
:loading="submitLoading"
>提交单据
</el-button
>
@ -275,6 +275,8 @@ export default {
fromOptions: [],
total: 0,
loading: false,
draftLoading: false,
submitLoading: false,
index: null,
formLoading: false,
formVisible: false,
@ -397,7 +399,9 @@ export default {
}
}
}
if (status == "1"){
this.draftLoading = true
}
if (status == "1") {
this.submitFunction(status);
} else {
@ -407,10 +411,11 @@ export default {
cancelButtonText: "取消",
type: "warning",
}).then(() => {
this.submitLoading = true
this.submitFunction(status);
this.loading = false
}).catch(() => {
this.loading = false;
this.draftLoading = false
this.submitLoading = false
});
}
@ -428,6 +433,11 @@ export default {
tQuery.thirdPartyDate = 2;
updateReceive(tQuery)
.then(response => {
if (status == "1"){
this.draftLoading = false
}else {
this.submitLoading = false
}
if (response.code === 20000) {
this.$message.success(tMessage + "成功");
this.closeDialog(true);
@ -436,7 +446,8 @@ export default {
}
})
.catch(() => {
this.loading = false;
this.draftLoading = false
this.submitLoading = false
})
},
selectProductFunction(event) {

@ -8,7 +8,7 @@
v-show="!this.sysApprovalFlowConfig"
type="primary"
@click.native="saveOrder('3')"
:loading="loading"
:loading="passLoading"
>审核通过
</el-button
>
@ -16,7 +16,7 @@
v-show="!this.sysApprovalFlowConfig"
type="primary"
@click.native="saveOrder('4')"
:loading="loading"
:loading="noPassLoading"
>审核拒绝
</el-button
>
@ -151,6 +151,8 @@ export default {
page: 1,
limit: 10,
},
passLoading: false,
noPassLoading: false,
};
},
components: {
@ -194,7 +196,19 @@ export default {
status: val,
auditRemark: this.formData.auditRemark
};
if (val == '3'){
//btn
this.passLoading = true
}else {
//
this.noPassLoading = true
}
getAudit(data).then((res => {
if (val == '3'){
this.passLoading = false
}else {
this.noPassLoading = false
}
if (res.code == 20000) {
this.closeDialog();
} else {

@ -3,8 +3,8 @@
<el-form :model="formData" :rules="formRules" ref="dataForm" label-width="100px">
<el-row type="flex" justify="end">
<el-button-group style="display: flex;margin-bottom: 15px; margin-right: 50px;margin-top: -10px">
<el-button type="primary" @click.native="saveOrder('1')" :loading="loading">草稿保存</el-button>
<el-button type="primary" @click.native="saveOrder('2')" :loading="loading">提交单据</el-button>
<el-button type="primary" @click.native="saveOrder('1')" :loading="draftLoading">草稿保存</el-button>
<el-button type="primary" @click.native="saveOrder('2')" :loading="submitLoading">提交单据</el-button>
</el-button-group>
</el-row>
@ -274,6 +274,8 @@ export default {
codeArray: [],
total: 0,
loading: false,
draftLoading: false,
submitLoading: false,
index: null,
formLoading: false,
formVisible: false,
@ -350,6 +352,7 @@ export default {
}
}
if (status == "1") {
this.draftLoading = true
this.submitFunction(status);
} else {
let tip = "是否确定提交订单?";
@ -358,9 +361,11 @@ export default {
cancelButtonText: "取消",
type: "warning",
}).then(() => {
this.submitLoading = true
this.submitFunction(status);
}).catch(() => {
this.loading = false;
this.draftLoading = false
this.submitLoading = false
});
}
}
@ -384,7 +389,11 @@ export default {
}
inserThrOrderWeb(tQuery)
.then(response => {
this.loading = false;
if (status == "1") {
this.draftLoading = false
}else {
this.submitLoading = false
}
if (response.code === 20000) {
this.$message.success(tMessage + "成功");
this.closeDialog(true);
@ -393,7 +402,8 @@ export default {
}
})
.catch(() => {
this.loading = false;
this.draftLoading = false
this.submitLoading = false
})
},
setWarehouseName(obj) {

@ -8,7 +8,7 @@
v-show="!this.sysApprovalFlowConfig"
type="primary"
@click.native="saveOrder('3')"
:loading="loading"
:loading="passLoading"
>审核通过
</el-button
>
@ -16,7 +16,7 @@
v-show="!this.sysApprovalFlowConfig"
type="primary"
@click.native="saveOrder('4')"
:loading="loading"
:loading="noPassLoading"
>审核拒绝
</el-button
>
@ -236,6 +236,8 @@ export default {
codeArray: [],
total: 0,
loading: false,
passLoading: false,
noPassLoading: false,
index: null,
formLoading: false,
formVisible: false,
@ -326,17 +328,31 @@ export default {
cancelButtonText: "取消",
type: "warning",
}).then(() => {
if (status == "3"){
this.passLoading = true
}else {
this.noPassLoading = true
}
this.submitFunction(status);
}).catch(() => {
this.loading = false;
if (status == '3'){
this.passLoading = false
}else {
this.noPassLoading = false
}
});
},
submitFunction(status) {
this.loading = true;
// this.loading = true;
this.formData.status = status;
auditOrder(this.formData)//
.then(response => {
this.loading = false;
if (status == '3'){
this.passLoading = false
}else {
this.noPassLoading = false
}
// this.loading = false;
if (response.code === 20000) {
this.$message.success("更新成功!");
this.closeDialog(true);
@ -345,7 +361,11 @@ export default {
}
})
.catch(() => {
this.loading = false;
if (status == '3'){
this.passLoading = false
}else {
this.noPassLoading = false
}
})
},
selectProductFunction() {

@ -4,8 +4,8 @@
<el-form :model="formData" :rules="formRules" ref="dataForm" label-width="120px" :disabled="true">
<el-row type="flex" justify="end" v-if="editType == 1">
<el-button-group style="display: flex;margin-bottom: 15px; margin-right: 50px" v-if="formData.approvalFlowId == null">
<el-button type="primary" @click.native="saveOrder('3')" :loading="loading" :disabled="false">审核通过</el-button>
<el-button type="primary" @click.native="saveOrder('4')" :loading="loading" :disabled="false">拒绝申请</el-button>
<el-button type="primary" @click.native="saveOrder('3')" :loading="passLoading" :disabled="false">审核通过</el-button>
<el-button type="primary" @click.native="saveOrder('4')" :loading="noPassLoading" :disabled="false">拒绝申请</el-button>
</el-button-group>
</el-row>
@ -307,6 +307,8 @@ export default {
codeArray: [],
total: 0,
loading: false,
passLoading: false,
noPassLoading: false,
index: null,
formLoading: false,
formVisible: false,
@ -387,13 +389,22 @@ export default {
cancelButtonText: "取消",
type: "warning",
}).then(() => {
if (status == "3"){
this.passLoading = true
}else {
this.noPassLoading = true
}
this.submitFunction(status);
}).catch(() => {
this.loading = false;
if (status == "3"){
this.passLoading = false
}else {
this.noPassLoading = false
}
});
},
submitFunction(status) {
this.loading = true;
// this.loading = true;
this.formData.pageType = this.pageType
let tQuery = {
status:status,
@ -401,7 +412,11 @@ export default {
}
auditOrder(tQuery)
.then(response => {
this.loading = false;
if (status == "3"){
this.passLoading = false
}else {
this.noPassLoading = false
}
if (response.code === 20000) {
this.$message.success("审批成功");
this.closeDialog(true);
@ -410,7 +425,11 @@ export default {
}
})
.catch(() => {
this.loading = false;
if (status == "3"){
this.passLoading = false
}else {
this.noPassLoading = false
}
})
},
selectProductFunction() {

@ -3,8 +3,8 @@
<el-form :model="formData" :rules="formRules" ref="dataForm" label-width="120px">
<el-row type="flex" justify="end">
<el-button-group style="display: flex;margin-bottom: 15px; margin-right: 50px">
<el-button type="primary" @click.native="saveOrder('1')" :loading="loading">草稿保存</el-button>
<el-button type="primary" @click.native="saveOrder('2')" :loading="loading">提交单据</el-button>
<el-button type="primary" @click.native="saveOrder('1')" :loading="draftLoading">草稿保存</el-button>
<el-button type="primary" @click.native="saveOrder('2')" :loading="submitLoading">提交单据</el-button>
</el-button-group>
</el-row>
@ -366,6 +366,8 @@ export default {
stockOrderLists: [],
total: 0,
loading: false,
draftLoading: false,
submitLoading: false,
index: null,
formLoading: false,
formVisible: false,
@ -477,9 +479,14 @@ export default {
cancelButtonText: "取消",
type: "warning",
}).then(() => {
this.submitLoading = true
this.submitFunction(status);
}).catch(() => {
this.loading = false;
if (status == '1'){
this.draftLoading = false
}else {
this.submitLoading = false
}
});
}
}
@ -504,9 +511,16 @@ submitFunction(status)
subErpOrders: this.codeArray,
type: 1,
}
if (status == '1'){
this.draftLoading = true
}
inserThrOrderWeb(tQuery)
.then(response => {
this.loading = false;
if (status == '1'){
this.draftLoading = false
}else {
this.submitLoading = false
}
if (response.code === 20000) {
this.$message.success(tMessage + "成功");
this.closeDialog(true);
@ -515,7 +529,11 @@ submitFunction(status)
}
})
.catch(() => {
this.loading = false;
if (status == '1'){
this.draftLoading = false
}else {
this.submitLoading = false
}
})
}
,

@ -8,7 +8,7 @@
v-show="!this.sysApprovalFlowConfig"
type="primary"
@click.native="saveOrder('3')"
:loading="loading"
:loading="passLoading"
>审核通过
</el-button
>
@ -16,7 +16,7 @@
v-show="!this.sysApprovalFlowConfig"
type="primary"
@click.native="saveOrder('4')"
:loading="loading"
:loading="noPassLoading"
>审核拒绝
</el-button
>
@ -268,6 +268,8 @@ export default {
codeArray: [],
total: 0,
loading: false,
passLoading: false,
noPassLoading: false,
index: null,
formLoading: false,
formVisible: false,
@ -334,6 +336,11 @@ export default {
cancelButtonText: "取消",
type: "warning",
}).then(() => {
if (status == "3"){
this.passLoading = true
}else {
this.noPassLoading = true
}
this.submitFunction(status);
}).catch(() => {
this.loading = false;
@ -354,7 +361,11 @@ export default {
}
auditOrder(tQuery)
.then(response => {
this.loading = false;
if (status == "3"){
this.passLoading = false
}else {
this.noPassLoading = false
}
if (response.code === 20000) {
this.$message.success(tMessage + "成功");
this.closeDialog(true);
@ -363,7 +374,11 @@ export default {
}
})
.catch(() => {
this.loading = false;
if (status == "3"){
this.passLoading = false
}else {
this.noPassLoading = false
}
})
},
selectProductFunction() {

@ -3,8 +3,8 @@
<el-form :model="formData" :rules="formRules" ref="dataForm" label-width="120px">
<el-row type="flex" justify="end">
<el-button-group style="display: flex;margin-bottom: 15px; margin-right: 50px">
<el-button type="primary" @click.native="saveOrder('1')" :loading="loading">草稿保存</el-button>
<el-button type="primary" @click.native="saveOrder('2')" :loading="loading">提交单据</el-button>
<el-button type="primary" @click.native="saveOrder('1')" :loading="draftLoading">草稿保存</el-button>
<el-button type="primary" @click.native="saveOrder('2')" :loading="submitLoading">提交单据</el-button>
</el-button-group>
</el-row>
@ -308,6 +308,8 @@ export default {
codeArray: [],
total: 0,
loading: false,
draftLoading: false,
submitLoading: false,
index: null,
formLoading: false,
formVisible: false,
@ -408,6 +410,7 @@ export default {
return this.$message.error('请选择产品对应供应商');
}
}
this.submitFunction(status);
} else {
let tip = "是否确定提交订单?";
@ -416,9 +419,14 @@ export default {
cancelButtonText: "取消",
type: "warning",
}).then(() => {
this.submitLoading = true
this.submitFunction(status);
}).catch(() => {
this.loading = false;
if (status == '1'){
this.draftLoading = false
}else {
this.submitLoading = false
}
});
}
}
@ -435,9 +443,17 @@ export default {
subErpOrders: this.codeArray,
type: 1,
}
if (status == '1'){
this.draftLoading = true
}
inserThrOrderWeb(tQuery)
.then(response => {
this.loading = false;
if (status == '1'){
this.draftLoading = false
}else {
this.submitLoading = false
}
// this.loading = false;
if (response.code === 20000) {
this.$message.success(tMessage + "成功");
this.closeDialog(true);
@ -446,7 +462,11 @@ export default {
}
})
.catch(() => {
this.loading = false;
if (status == '1'){
this.draftLoading = false
}else {
this.submitLoading = false
}
})
},
selectProductFunction() {

@ -8,7 +8,7 @@
v-show="!this.sysApprovalFlowConfig"
type="primary"
@click.native="saveOrder('3')"
:loading="loading"
:loading="passLoading"
>审核通过
</el-button
>
@ -16,7 +16,7 @@
v-show="!this.sysApprovalFlowConfig"
type="primary"
@click.native="saveOrder('4')"
:loading="loading"
:loading="noPassLoading"
>审核拒绝
</el-button
>
@ -284,7 +284,8 @@ export default {
subInvList: [],
tarSubList: [],
invQueryData: {},
passLoading: false,
noPassLoading: false,
};
},
@ -322,9 +323,18 @@ export default {
cancelButtonText: "取消",
type: "warning",
}).then(() => {
if (status == "3"){
this.passLoading = true
}else {
this.noPassLoading = true
}
this.submitFunction(status);
}).catch(() => {
this.loading = false;
if (status == "3"){
this.passLoading = false
}else {
this.noPassLoading = false
}
});
},
submitFunction(status) {
@ -342,7 +352,12 @@ export default {
}
auditOrder(tQuery)
.then(response => {
this.loading = false;
if (status == "3"){
this.passLoading = false
}else {
this.noPassLoading = false
}
// this.loading = false;
if (response.code === 20000) {
this.$message.success(tMessage + "成功");
this.closeDialog(true);
@ -351,7 +366,11 @@ export default {
}
})
.catch(() => {
this.loading = false;
if (status == "3"){
this.passLoading = false
}else {
this.noPassLoading = false
}
})
},
selectProductFunction() {

@ -3,8 +3,8 @@
<el-form :model="formData" :rules="formRules" ref="dataForm" label-width="120px">
<el-row type="flex" justify="end">
<el-button-group style="display: flex;margin-bottom: 15px; margin-right: 50px">
<el-button type="primary" @click.native="saveOrder('1')" :loading="loading">草稿保存</el-button>
<el-button type="primary" @click.native="saveOrder('2')" :loading="loading">提交单据</el-button>
<el-button type="primary" @click.native="saveOrder('1')" :loading="draftLoading">草稿保存</el-button>
<el-button type="primary" @click.native="saveOrder('2')" :loading="submitLoading">提交单据</el-button>
</el-button-group>
</el-row>
@ -256,6 +256,8 @@ export default {
codeArray: [],
total: 0,
loading: false,
draftLoading: false,
submitLoading: false,
index: null,
formLoading: false,
formVisible: false,
@ -352,6 +354,7 @@ export default {
if (this.formData.arrivalTime<this.formData.createTime) {
return this.$message.error("到货时间不能比单据日期早!!!");
}
this.submitFunction(status);
} else {
let tip = "是否确定提交订单?";
@ -360,9 +363,14 @@ export default {
cancelButtonText: "取消",
type: "warning",
}).then(() => {
this.submitLoading = true
this.submitFunction(status);
}).catch(() => {
this.loading = false;
if (status == '1'){
this.draftLoading = false
}else {
this.submitLoading = false
}
});
}
}
@ -382,9 +390,17 @@ export default {
subErpOrders: this.codeArray,
type: 1,
}
if (status == '1'){
this.draftLoading = true
}
inserThrOrderWeb(tQuery)
.then(response => {
this.loading = false;
if (status == '1'){
this.draftLoading = false
}else {
this.submitLoading = false
}
// this.loading = false;
if (response.code === 20000) {
this.$message.success(tMessage + "成功");
this.closeDialog(true);
@ -393,7 +409,11 @@ export default {
}
})
.catch(() => {
this.loading = false;
if (status == '1'){
this.draftLoading = false
}else {
this.submitLoading = false
}
})
},
selectProductFunction() {

Loading…
Cancel
Save