diff --git a/src/api/distribution/SeparateTheList.js b/src/api/distribution/SeparateTheList.js
index 2c1bdc2e..bdb7e2d5 100644
--- a/src/api/distribution/SeparateTheList.js
+++ b/src/api/distribution/SeparateTheList.js
@@ -35,10 +35,18 @@ export const $_canceltask = params => {
};
// 子任务详情
-export const $_gettaskdetail= params => {
- return request({
- url: '/api/logpm-distribution/split-order-task/get-task-detail',
- method: 'get',
- params,
- });
- };
\ No newline at end of file
+export const $_gettaskdetail = params => {
+ return request({
+ url: '/api/logpm-distribution/split-order-task/get-task-detail',
+ method: 'get',
+ params,
+ });
+};
+// 撤销总任务
+export const $_cancelalltask = params => {
+ return request({
+ url: '/api/logpm-distribution/split-order-task/cancel-all-task',
+ method: 'post',
+ params,
+ });
+};
diff --git a/src/components/Tableexportcomponent/Tableexportcomponent.vue b/src/components/Tableexportcomponent/Tableexportcomponent.vue
index 92f52c7a..6fbee0b1 100644
--- a/src/components/Tableexportcomponent/Tableexportcomponent.vue
+++ b/src/components/Tableexportcomponent/Tableexportcomponent.vue
@@ -1,6 +1,6 @@
-
表格导出名称
+
表格导出名称
-
+ :props="transferProps"
+ />
- 导出表格
+ 导出表格
+
@@ -30,6 +25,8 @@
import { ref, computed } from 'vue';
import { ElMessage } from 'element-plus';
import * as XLSX from 'xlsx';
+import { Download } from '@element-plus/icons-vue';
+
// 传入的参数
const props = defineProps({
data: {
@@ -42,26 +39,44 @@ const props = defineProps({
},
});
-const index = props.menuData.findIndex(item => item.label === '序号');
-if (index !== -1) {
- props.menuData.splice(index, 1);
-}
+// 将 menuData 复制到一个局部变量中,以便在 setup 中操作
+const menuData = ref([...props.menuData]);
+// 移除指定列的函数
+const removeColumn = (columnLabel) => {
+ const index = menuData.value.findIndex(item => item.label === columnLabel);
+ if (index !== -1) {
+ menuData.value.splice(index, 1);
+ }
+};
+// 移除 '序号' 列
+removeColumn('序号');
+removeColumn('操作');
+removeColumn('复选框');
+
const exportFileName = ref('');
// 已选择的列
const checkedColumns = ref([]);
// 构建 el-transfer 所需的数据格式,并添加类型检查
const transferData = computed(() => {
- if (Array.isArray(props.menuData)) {
- return props.menuData.map(item => ({
+ if (Array.isArray(menuData.value)) {
+ return menuData.value.map(item => ({
...item,
key: item.prop,
}));
} else {
- console.error('menuData 不是一个数组:', props.menuData);
+ console.error('menuData 不是一个数组:', menuData.value);
return [];
}
});
+
+// 设置 el-transfer 的 props
+const transferProps = {
+ key: 'key',
+ label: 'label',
+};
+
+// 导出到 Excel 的函数
const exportToExcel = () => {
if (checkedColumns.value.length === 0) {
ElMessage.warning('请选择要导出的字段');
@@ -74,8 +89,9 @@ const exportToExcel = () => {
});
return;
}
+
const selectedColumns = transferData.value.filter(item =>
- checkedColumns.value.includes(item.prop)
+ checkedColumns.value.includes(item.key)
);
const headers = selectedColumns.map(col => col.label);
const fields = selectedColumns.map(col => col.prop);
@@ -114,32 +130,20 @@ const fillEmptyCells = (data) => {
const rowCount = data.length;
const colCount = data[0].length;
- // 处理每一列
for (let col = 0; col < colCount; col++) {
let lastNonEmptyValue = '';
- let inFillSection = false;
-
for (let row = 0; row < rowCount; row++) {
- if (data[row][0] !== '') { // A列有值
- inFillSection = true;
- if (data[row][col] !== '') { // 当前单元格非空
- lastNonEmptyValue = data[row][col];
- } else if (lastNonEmptyValue !== '') { // 当前单元格为空,但有上一个非空值
- data[row][col] = lastNonEmptyValue; // 填充
- }
- } else if (inFillSection) { // A列没有值,但在填充区域内
- if (lastNonEmptyValue !== '') {
- data[row][col] = lastNonEmptyValue; // 继续填充
- }
- } else { // A列没有值,且不在填充区域内
- lastNonEmptyValue = '';
- inFillSection = false;
+ if (data[row][col] !== '') {
+ lastNonEmptyValue = data[row][col];
+ } else {
+ data[row][col] = lastNonEmptyValue;
}
}
}
return data;
};
+
// 设置样式的函数
const applyStyles = (worksheet, data) => {
const rowCount = data.length;
@@ -195,4 +199,4 @@ const applyStyles = (worksheet, data) => {
text-align: right;
margin-top: 10px;
}
-
+
\ No newline at end of file
diff --git a/src/components/popupnotification/popupnotification.vue b/src/components/popupnotification/popupnotification.vue
new file mode 100644
index 00000000..ae85b15f
--- /dev/null
+++ b/src/components/popupnotification/popupnotification.vue
@@ -0,0 +1,137 @@
+
+
+
+
+
+
+
diff --git a/src/option/distribution/SeparateTheList.js b/src/option/distribution/SeparateTheList.js
index 13aa7632..08e3ec53 100644
--- a/src/option/distribution/SeparateTheList.js
+++ b/src/option/distribution/SeparateTheList.js
@@ -12,14 +12,14 @@ export const columnList = [
label: '序号',
type: 12,
values: '',
- width: 40,
+ width: 50,
fixed: true,
},
{
prop: 'no',
label: '拆单任务编号',
- type: 1,
+ type: 2,
values: '',
width: '150',
fixed: true,
@@ -29,7 +29,7 @@ export const columnList = [
{
prop: 'orderCode',
label: '原订单编号',
- type: 1,
+ type: 2,
values: '',
width: '150',
fixed: true,
@@ -58,7 +58,7 @@ export const columnList = [
},
{
- prop: 'stateNameS',
+ prop: 'stateName',
label: '拆单任务状态',
type: 3,
values: '',
@@ -66,14 +66,45 @@ export const columnList = [
fixed: true,
sortable: true,
head: false,
-
+ checkarr: [
+ {
+ label: '未完成',
+ value: 0,
+ },
+ {
+ label: '已完成',
+ value: 1,
+ },
+ {
+ label: '已撤销',
+ value: 2,
+ },
+ ],
},
- // 1.2.3
- // 未完成 已完成 已撤销
{
prop: 'createTime',
label: '创建时间',
- type: 1,
+ type: 4,
+ values: '',
+ width: '150',
+ fixed: true,
+ sortable: true,
+ head: false,
+ },
+ {
+ prop: 'finishUsername',
+ label: '创建人',
+ type: 2,
+ values: '',
+ width: '150',
+ fixed: true,
+ sortable: true,
+ head: false,
+ },
+ {
+ prop: 'finishTime',
+ label: '完成时间',
+ type: 2,
values: '',
width: '150',
fixed: true,
diff --git a/src/option/distribution/SeparateTheListInfo.js b/src/option/distribution/SeparateTheListInfo.js
index 934841f9..9a6bccdf 100644
--- a/src/option/distribution/SeparateTheListInfo.js
+++ b/src/option/distribution/SeparateTheListInfo.js
@@ -19,7 +19,7 @@ export const columnList = [
{
prop: 'newOrderCode',
label: '拆单订单号',
- type: 1,
+ type: 2,
values: '',
width: '150',
fixed: false,
@@ -29,7 +29,7 @@ export const columnList = [
{
prop: 'orderCode',
label: '原订单编号',
- type: 1,
+ type: 2,
values: '',
width: '150',
fixed: false,
@@ -66,13 +66,27 @@ export const columnList = [
fixed: false,
sortable: true,
head: false,
+ checkarr: [
+ {
+ label: '未完成',
+ value: 1,
+ },
+ {
+ label: '已完成',
+ value: 2,
+ },
+ {
+ label: '已撤回',
+ value: 3,
+ },
+ ],
},
// 1.2.3
// 未完成 已完成 已撤销
{
prop: 'customerName',
label: '客户姓名',
- type: 1,
+ type: 2,
values: '',
width: '150',
fixed: false,
@@ -82,7 +96,7 @@ export const columnList = [
{
prop: 'customerTelephone',
label: '客户电话',
- type: 1,
+ type: 2,
values: '',
width: '150',
fixed: false,
@@ -92,7 +106,7 @@ export const columnList = [
{
prop: 'customerAddress',
label: '客户地址',
- type: 1,
+ type: 2,
values: '',
width: '150',
fixed: false,
@@ -132,124 +146,55 @@ export const columnList = [
},
];
-
-
-
/** 详情 */
export const TccolumnList = [
+ {
+ prop: '',
+ label: '序号',
+ type: 12,
+ values: '',
+ width: '50',
+ fixed: true,
+ },
- {
- prop: '',
- label: '序号',
- type: 12,
- values: '',
- width: '50',
- fixed: true,
- },
-
- {
- prop: 'orderCode',
- label: '包条码',
- type: 1,
- values: '',
- width: '150',
- fixed: false,
- sortable: true,
- head: false,
- },
- {
- prop: 'orderCode',
- label: '物料编码',
- type: 1,
- values: '',
- width: '150',
- fixed: false,
- sortable: true,
- head: false,
- },
- {
- prop: 'taskNumber',
- label: '拆单件数',
- type: 1,
- values: '',
- width: '150',
- fixed: false,
- sortable: true,
- head: false,
- },
- {
- prop: 'number',
- label: '已拆件数',
- type: 1,
- values: '',
- width: '150',
- fixed: false,
- sortable: true,
- head: false,
- },
-
- {
- prop: 'stateNameS',
- label: '拆单状态',
- type: 3,
- values: '',
- width: '150',
- fixed: false,
- sortable: true,
- head: false,
- },
- // 1.2.3
- // 未完成 已完成 已撤销
- {
- prop: 'customerName',
- label: '客户姓名',
- type: 1,
- values: '',
- width: '150',
- fixed: false,
- sortable: true,
- head: false,
- },
- {
- prop: 'customerTelephone',
- label: '客户电话',
- type: 1,
- values: '',
- width: '150',
- fixed: false,
- sortable: true,
- head: false,
- },
- {
- prop: 'customerAddress',
- label: '客户地址',
- type: 1,
- values: '',
- width: '150',
- fixed: false,
- sortable: true,
- head: false,
- },
-
- {
- prop: 'finishTime',
- label: '完成时间',
- type: 1,
- values: '',
- width: '150',
- fixed: false,
- sortable: true,
- head: false,
- },
- {
- prop: 'createUser',
- label: '操作人',
- type: 1,
- values: '',
- width: '150',
- fixed: false,
- sortable: true,
- head: false,
- },
- ];
-
\ No newline at end of file
+ {
+ prop: 'packageCode',
+ label: '包条码',
+ type: 1,
+ values: '',
+ width: '150',
+ fixed: false,
+ sortable: true,
+ head: false,
+ },
+ {
+ prop: 'materielNo',
+ label: '物料编码',
+ type: 1,
+ values: '',
+ width: '150',
+ fixed: false,
+ sortable: true,
+ head: false,
+ },
+ {
+ prop: 'materiel',
+ label: '物料名称',
+ type: 1,
+ values: '',
+ width: '150',
+ fixed: false,
+ sortable: true,
+ head: false,
+ },
+ {
+ prop: 'category',
+ label: '品类',
+ type: 1,
+ values: '',
+ width: '150',
+ fixed: false,
+ sortable: true,
+ head: false,
+ },
+];
diff --git a/src/views/basicdata/brand/basicClient.vue b/src/views/basicdata/brand/basicClient.vue
index ae845f7b..e35bc071 100644
--- a/src/views/basicdata/brand/basicClient.vue
+++ b/src/views/basicdata/brand/basicClient.vue
@@ -1395,6 +1395,9 @@ export default {
this.onLoad(this.page);
},
handleSubmit(from) {
+ if(!this.form.typeServiceList.includes('3')){
+ delete this.form.businessType
+ }
console.log('上传的集合。。', JSON.parse(JSON.stringify(this.fileList)));
if (this.title == '编辑' && this.bianji == false) {
console.log('编辑1111');
@@ -1467,10 +1470,11 @@ export default {
this.$refs[from].validate(async valid => {
if (valid) {
try {
- this.loadingObj.submitLoading = true;
-
- console.log('修改提交的数据:', this.form);
+ this.loadingObj.submitLoading = true;
+ console.log('修改提交的数据:', this.form);
// this.form.typeService = !!this.form.typeService ? parseInt(this.form.typeService) : undefined;
+
+
this.form.bladeRegionCityId = this.form.bladeRegionProvinceId[1];
this.form.bladeRegionAreaId = this.form.bladeRegionProvinceId[2];
this.form.bladeRegionProvinceId = this.form.bladeRegionProvinceId[0];
diff --git a/src/views/distribution/deliverylist/distributionDeliveryListedt.vue b/src/views/distribution/deliverylist/distributionDeliveryListedt.vue
index dcf0f4ba..659a161c 100644
--- a/src/views/distribution/deliverylist/distributionDeliveryListedt.vue
+++ b/src/views/distribution/deliverylist/distributionDeliveryListedt.vue
@@ -964,6 +964,29 @@
+
+
+
+
+
+
+
+
+
+ 数据存在已备货状态,请仔细核验数据,避免误操作!
+ 如果核验无误请继续执行...
+
+
+
+
@@ -994,6 +1017,7 @@ import {
import{compressImageBlob } from '@/components/IMGcompressor/imgcompressor.js'
import { showOrderPackgeCode } from '@/api/distribution/distributionStockArticle';
import { exportBlob } from '@/api/common';
+import DeleteWarningDialog from '@/components/popupnotification/popupnotification.vue'
import { downloadXls } from '@/utils/util';
import { dateNow } from '@/utils/date';
import NProgress from 'nprogress';
@@ -1023,10 +1047,16 @@ import { setNodeHeight } from '@/utils/util.js';
import { AbnormalReview } from '@/option/distribution/DeliveryExceptionReview.js';
import print from '@/utils/print';
import { useStore } from 'vuex';
-
+import { Delete, Edit, Search, Share, Upload } from '@element-plus/icons-vue'
export default {
+ components: {
+ DeleteWarningDialog
+ },
data() {
return {
+ DataRwo:{},
+ popupnotification:false,//
+ Deleteloading:false,
ViRejectselect: [
{
value: true,
@@ -4573,7 +4603,58 @@ export default {
},
});
},
+
+ // 取消备货接口
+ Cancelstocking(data){
+ this.loading = true;
+ cancelReservationPackage(data)
+ .then(res => {
+ if (res.data.code === 200) {
+ this.$message.success(res.data.msg);
+ this.getReservationInventoryPackageListInfo(this.page);
+ }
+ })
+ .catch(error => {
+ console.log(error);
+
+ }).finally(()=>{
+ this.loading = false;
+ });
+ },
+ // 确认删除备货
+ confirmdelete(){
+
+ },
+ // 关闭
+ handleDialogClose(){
+ this.popupnotification=false
+ },
+ // 确定事件
+ handleDialogConfirm(){
+ this.loading = true; //开启加载
+ let data = {
+ deliveryId: this.deliveryId,
+ reservationId: this.wid,
+ type: 2,
+ packageIds:'',
+ };
+ if(this.selectionList.length){
+ data.packageIds= this.selectionList.map(item => item.id).join(',');//批量取消
+ }else{
+ data.packageIds= this.DataRwo.id;//单个取消
+ }
+ this.Cancelstocking(data)
+ this.popupnotification=false;
+
+ },
+ // 计划取消
cancelReservationInventoryPackage(row) {
+ this.DataRwo=row
+ console.log(row)
+ if(row.stockStatus ==20 || row.stockStatusName =="已备货"){
+ this.popupnotification=true
+ return
+ }
this.$confirm('是否计划取消?')
.then(() => {
this.loading = true; //开启加载
@@ -4583,17 +4664,7 @@ export default {
type: 2,
packageIds: row.id,
};
- this.loading = true;
- cancelReservationPackage(data)
- .then(res => {
- if (res.data.code === 200) {
- this.$message.success(res.data.msg);
- this.getReservationInventoryPackageListInfo(this.page);
- }
- })
- .catch(res => {
- this.loading = false;
- });
+ this.Cancelstocking(data)
})
.catch(() => {});
},
@@ -5013,6 +5084,13 @@ export default {
});
return;
}
+ // 查询是否有已经备货的
+ let StockupState= this.selectionList.find(item=>item.stockStatus == 20 || item.stockStatusName =="已备货")
+ if(StockupState){
+ this.popupnotification=true
+ return
+ }
+
this.$confirm('是否进行批量计划取消?')
.then(() => {
this.loading = true; //开启加载
@@ -5614,6 +5692,8 @@ export default {
this.loading = false;
});
},
+
+
//一键签收
handleSignone(row) {
if (row.isHaveAbnormalPackage == 2) {
@@ -5936,4 +6016,45 @@ export default {
align-items: center;
justify-content: center;
}
+// :deep(.popupnotification){
+// .el_dialog_title{
+// display: flex;
+// align-items: center;
+// border-bottom: 1px solid #FF5722;
+// padding-bottom: 5px;
+// border-radius: 21px;
+// padding: 0 4px;
+// i{
+// color: #ff0000;
+// margin-right: 8px;
+// }
+
+// }
+// .el_delte_button{
+// color: white;
+// background-color: #F44336;
+// border: 1px solid #E91E63;
+// span{
+// align-items: flex-end;
+// }
+// }
+// .el-dialog__body{
+// padding-top: 8px;
+// }
+// .el_content{
+// margin-top: 10px;
+// border: 1px dashed #F44336;
+// padding: 31px;
+// border-radius: 4px;
+// position: relative;
+// .el_content_icon{
+// position: absolute;
+// top: -13px;
+// right: -8px;
+// font-size: 26px;
+// color: #F44336;
+// }
+// }
+// }
+
diff --git a/src/views/distribution/inventory/delivery/SeparateTheList.vue b/src/views/distribution/inventory/delivery/SeparateTheList.vue
index ceb76298..077e15d7 100644
--- a/src/views/distribution/inventory/delivery/SeparateTheList.vue
+++ b/src/views/distribution/inventory/delivery/SeparateTheList.vue
@@ -5,15 +5,37 @@
@@ -79,6 +82,9 @@
+
+
+