给销售订单单据增加强制结单-以销定购的按钮

This commit is contained in:
jishenghua
2025-04-08 22:57:50 +08:00
parent aad6590da5
commit 8cd8b20b78
3 changed files with 67 additions and 32 deletions

View File

@@ -231,37 +231,6 @@ export const JeecgListMixin = {
});
}
},
batchForceClose: function () {
if(!this.url.forceCloseBatch){
this.$message.error("请设置url.forceCloseBatch属性!")
return
}
if (this.selectedRowKeys.length <= 0) {
this.$message.warning('请选择一条记录')
} else {
let ids = "";
for (let a = 0; a < this.selectedRowKeys.length; a++) {
ids += this.selectedRowKeys[a] + ","
}
let that = this
this.$confirm({
title: "确认强制结单",
content: "是否强制结单选中数据?",
onOk: function () {
that.loading = true
postAction(that.url.forceCloseBatch, {ids: ids}).then((res) => {
if(res.code === 200){
that.loadData()
} else {
that.$message.warning(res.data.message)
}
}).finally(() => {
that.loading = false
});
}
});
}
},
handleDelete: function (id) {
if(!this.url.delete){
this.$message.error("请设置url.delete属性!")

View File

@@ -86,6 +86,7 @@
<a-button v-if="btnEnableList.indexOf(1)>-1" @click="myHandleAdd" type="primary" icon="plus">新增</a-button>
<a-button v-if="btnEnableList.indexOf(1)>-1" icon="delete" @click="batchDel">删除</a-button>
<a-button v-if="btnEnableList.indexOf(1)>-1" icon="issues-close" @click="batchForceClose">强制结单</a-button>
<a-button v-if="purchaseBySaleFlag && btnEnableList.indexOf(1)>-1" icon="issues-close" @click="batchForceClosePurchase">强制结单-以销定购</a-button>
<a-button v-if="checkFlag && btnEnableList.indexOf(2)>-1" icon="check" @click="batchSetStatus(1)">审核</a-button>
<a-button v-if="checkFlag && btnEnableList.indexOf(7)>-1" icon="stop" @click="batchSetStatus(0)">反审核</a-button>
<a-button v-if="isShowExcel && btnEnableList.indexOf(3)>-1" icon="download" @click="handleExport">导出</a-button>
@@ -201,6 +202,8 @@
remark: ""
},
prefixNo: 'XSDD',
//以销定购开关
purchaseBySaleFlag: false,
labelCol: {
span: 5
},
@@ -258,6 +261,7 @@
delete: "/depotHead/delete",
deleteBatch: "/depotHead/deleteBatch",
forceCloseBatch: "/depotHead/forceCloseBatch",
forceClosePurchaseBatch: "/depotHead/forceClosePurchaseBatch",
batchSetStatusUrl: "/depotHead/batchSetStatus"
}
}

View File

@@ -1,5 +1,5 @@
import Vue from 'vue'
import {getAction } from '@/api/manage'
import { getAction, postAction } from '@/api/manage'
import { FormTypes } from '@/utils/JEditableTableUtil'
import {findBillDetailByNumber, findBySelectSup, findBySelectCus, findBySelectRetail, getUserList, getAccount, waitBillCount,
getCurrentSystemConfig, getPlatformConfigByKey} from '@/api/api'
@@ -107,6 +107,68 @@ export const BillListMixin = {
}
this.handleDetail(record, type, prefixNo);
},
batchForceClose: function () {
if(!this.url.forceCloseBatch){
this.$message.error("请设置url.forceCloseBatch属性!")
return
}
if (this.selectedRowKeys.length <= 0) {
this.$message.warning('请选择一条记录')
} else {
let ids = "";
for (let a = 0; a < this.selectedRowKeys.length; a++) {
ids += this.selectedRowKeys[a] + ","
}
let that = this
this.$confirm({
title: "确认强制结单",
content: "是否强制结单选中数据?",
onOk: function () {
that.loading = true
postAction(that.url.forceCloseBatch, {ids: ids}).then((res) => {
if(res.code === 200){
that.loadData()
} else {
that.$message.warning(res.data.message)
}
}).finally(() => {
that.loading = false
});
}
});
}
},
batchForceClosePurchase: function () {
if(!this.url.forceClosePurchaseBatch){
this.$message.error("请设置url.forceClosePurchaseBatch属性!")
return
}
if (this.selectedRowKeys.length <= 0) {
this.$message.warning('请选择一条记录')
} else {
let ids = "";
for (let a = 0; a < this.selectedRowKeys.length; a++) {
ids += this.selectedRowKeys[a] + ","
}
let that = this
this.$confirm({
title: "确认强制结单(以销定购)",
content: "是否强制结单选中数据?",
onOk: function () {
that.loading = true
postAction(that.url.forceClosePurchaseBatch, {ids: ids}).then((res) => {
if(res.code === 200){
that.loadData()
} else {
that.$message.warning(res.data.message)
}
}).finally(() => {
that.loading = false
});
}
});
}
},
handleApprove(record) {
this.$refs.modalForm.action = "approve";
this.$refs.modalForm.edit(record);