diff --git a/src/api/aftersales/aftersalesWorkOrder.js b/src/api/aftersales/aftersalesWorkOrder.js
index e8fc781e..2812bc3e 100644
--- a/src/api/aftersales/aftersalesWorkOrder.js
+++ b/src/api/aftersales/aftersalesWorkOrder.js
@@ -389,7 +389,7 @@ export const $_updateWorkOrderStatus = (data) => {
data
})
}
-// 处理结果完结结果确定
+// 完结审核
export const $_updateManagerConfirmed = (data) => {
return request({
url: '/api/logpm-aftersales/aftersalesWorkOrder/updateManagerConfirmed',
diff --git a/src/components/MultiConditionSearch/MultiConditionSearch.vue b/src/components/MultiConditionSearch/MultiConditionSearch.vue
index 8b60419d..16bbdf83 100644
--- a/src/components/MultiConditionSearch/MultiConditionSearch.vue
+++ b/src/components/MultiConditionSearch/MultiConditionSearch.vue
@@ -100,6 +100,8 @@ const maximize = () => {
const close = () => {
emit('update:modelValue', false);
+ minimizeState.value = false;
+ emit('update:inputValue', localInputValue.value);
};
const expandWindow = () => {
@@ -114,7 +116,14 @@ const destroyWindow = () => {
};
const dialogSearchSubmit = () => {
- emit('dialogSearchSubmit', localInputValue.value);
+ const lines = localInputValue.value
+ .split('\n') // 按换行分割
+ .map(line => line.trim()) // 移除每一行前后的空格
+ .filter(line => line !== ''); // 过滤掉空行
+
+ const joinedLines = lines.join(','); // 使用逗号连接,无空格
+ emit('dialogSearchSubmit', joinedLines);
+ emit('update:inputValue', localInputValue.value);
};
diff --git a/src/views/aftersales/aftersalesWorkOrder.vue b/src/views/aftersales/aftersalesWorkOrder.vue
index ef3c46d9..cd0e7143 100644
--- a/src/views/aftersales/aftersalesWorkOrder.vue
+++ b/src/views/aftersales/aftersalesWorkOrder.vue
@@ -112,19 +112,31 @@
@click="WorkOrderAssignment"
>工单指派
- 客服介入
- 钉钉号填写
- 批量完结
+ > -->
批量完结审核
- 财务入账
@@ -363,6 +375,44 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
- 网络导出
+ 全部导出
- 本地导出
+ 本地导出
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -537,6 +657,7 @@ import {
MallassignmentColumnList,
customerserviceColumnList,
} from '@/option/aftersales/vueTvemp.js';
+import { objectKeys } from '@antfu/utils';
const Tableexportcomponent = defineAsyncComponent(() =>
import('@/components/Tableexportcomponent/Tableexportcomponent.vue')
);
@@ -582,6 +703,21 @@ const ExportObjects = ref({
tcTableexport: false, //本地导出
ExportSelection: false, //导出选择弹窗
});
+// 客服介入
+const CustomerServiceForm = ref({
+ loadingCustomer: false,
+ dialog: false,
+});
+// 钉钉号
+const DingTalkfilling = ref({
+ dialogDingTalk: false,
+ loading: false,
+});
+// 财务入账
+const FinancialFrom = ref({
+ loadingFinancial: false,
+ loading: false,
+});
// 多行搜索
const Searchboxpop = ref({
SearchboxpopUpwindowtitle: '', //标题
@@ -787,7 +923,9 @@ const ButtonPermissions = computed(() => {
return {
add: false, //新增按钮
batchReject: false, //批量打回
- assignment: UserPermissions.value != Useridentity.Warehouse_customer_service, //工单指派
+ assignment:
+ UserPermissions.value == Useridentity.Headquarters_Manager ||
+ UserPermissions.value == Useridentity.Headquarters_customer_service, //工单指派
applyArbitration: UserPermissions.value == Useridentity.Warehouse_customer_service, //客服介入
DingTalkNumber: false, //钉钉号填写
batchFinish: false, //批量完结
@@ -804,7 +942,9 @@ const ButtonPermissions = computed(() => {
return {
add: false, //新增按钮
batchReject: UserPermissions.value == Useridentity.Headquarters_customer_service, //批量打回
- assignment: UserPermissions.value != Useridentity.Warehouse_customer_service, //工单指派
+ assignment:
+ UserPermissions.value == Useridentity.Headquarters_Manager ||
+ UserPermissions.value == Useridentity.Headquarters_customer_service, //工单指派
applyArbitration: false, //客服介入
DingTalkNumber: false, //钉钉号填
batchFinish: false, //批量完结
@@ -861,7 +1001,9 @@ const ButtonPermissions = computed(() => {
DingTalkNumber: false, //钉钉号填写
Batchdetermination: false, //批量确定
ManagerConfirmed: false, //处理完毕下面的客服经理批量确定
- ArbitrationDetermination: UserPermissions.value != Useridentity.Warehouse_customer_service, //批量总裁完结确定
+ ArbitrationDetermination:
+ UserPermissions.value == Useridentity.Headquarters_Manager ||
+ UserPermissions.value == Useridentity.Headquarters_customer_service, //批量总裁完结确定
Financial_accounting: false, //财务入账
Result_review: false, //结果审核(总部审核处理结果)
defaultassignments: false, //默认指派
@@ -875,11 +1017,15 @@ const ButtonPermissions = computed(() => {
assignment: false, //工单指派
applyArbitration: false, //客服介入
batchFinish: false, //批量完结
- DingTalkNumber: UserPermissions.value != Useridentity.Warehouse_customer_service, //钉钉号填写, //钉钉号填写
+ DingTalkNumber:
+ UserPermissions.value == Useridentity.Headquarters_customer_service ||
+ UserPermissions.value == Useridentity.Headquarters_Manager, //钉钉号填写, //钉钉号填写
Batchdetermination: false, //批量确定
ManagerConfirmed: false, //处理完毕下面的客服经理批量确定
ArbitrationDetermination: false, //批量完结确定
- Financial_accounting: UserPermissions.value != Useridentity.Warehouse_customer_service, //财务入账
+ Financial_accounting:
+ UserPermissions.value == Useridentity.Headquarters_Manager ||
+ UserPermissions.value == Useridentity.Headquarters_customer_service, //财务入账
defaultassignments: false, //默认指派
Result_review: false, //结果审核(总部审核处理结果)
export_Report: true, //导出报表
@@ -1132,6 +1278,8 @@ const selectionChange = list => {
};
// 网页顶部搜索按钮
const searchChange = async () => {
+ let _Obj = MatchCurrentMenu(); //匹配出当前菜单
+ _Obj.currentPage = 1;
await ProcessSearch();
updateMenuAndData(); //获取最新数据
};
@@ -1143,6 +1291,7 @@ const searchChangeS = () => {
// 重置表格搜索
const ResetTableSearch = async () => {
let _Obj = MatchCurrentMenu();
+ _Obj.currentPage = 1;
console.log(TabPermissions.value, '123123123');
_Obj.request = true;
console.log(_Obj, 'Obj');
@@ -1153,6 +1302,8 @@ const ResetTableSearch = async () => {
//清空
const searchReset = () => {
TopQuery.value = {};
+ let _Obj = MatchCurrentMenu();
+ _Obj.currentPage = 1;
TabList.value.forEach(item => {
item.query = {};
});
@@ -1624,6 +1775,27 @@ const updateMenuAndData = () => {
}
PublicDataRequest(TabPermissions.value); // 请求数据
};
+/**
+ * @description: 处理空白数据
+ * @param {object} data - 包含记录的数据对象
+ * @returns {array} - 处理后的记录数组
+ */
+const replaceNullWithSlash = data => {
+ const newRecords = [];
+ const records = data.records;
+
+ for (let i = 0; i < records.length; i++) {
+ const newRecord = { ...records[i] };
+ for (const key in newRecord) {
+ if (newRecord[key] === null || newRecord[key] === '') {
+ newRecord[key] = '/';
+ }
+ }
+ newRecords.push(newRecord);
+ }
+
+ return newRecords;
+};
/**
* @description 通用函数用于处理数据请求(包含待回复、理赔金额未出、申诉、超时未处理)
* @param {Function} fetchFunction - 用于执行具体数据请求的函数
@@ -1645,8 +1817,8 @@ const fetchData = async (fetchFunction, reset) => {
if (code !== 200) {
return;
}
-
DataAndStateProcessing(data); // 对数据和状态处理
+ details.data = replaceNullWithSlash(data);
} catch (error) {
console.log(error);
}
@@ -1694,6 +1866,8 @@ const Publicaccessdata = async Reset => {
return;
}
DataAndStateProcessing(data); //对数据和状态处理
+ details.data = replaceNullWithSlash(data);
+
console.log(_res, '公共数据菜单=:' + TabPermissions.value);
console.log(TabList.value, '公共菜单');
} catch (error) {
@@ -1903,6 +2077,99 @@ const CancelWorkOrderAppeal = row => {
})
.catch(() => {});
};
+
+/**
+ * @description: [钉钉号填写] - 选择数据后,点击钉钉号填写按钮,出现弹窗
+ * @return {void}
+ */
+const DingTalk = () => {
+ if (!details.selectionList.length) {
+ ElMessage({
+ message: '请勾选数据',
+ type: 'warning',
+ });
+ return;
+ }
+ // 开启钉钉号填写弹窗
+ DingTalkfilling.value.dialogDingTalk = true;
+};
+/**
+ * @description: [钉钉号填写确认]
+ * @return {void}
+ */
+const DingTalkSubmit = async () => {
+ const { processNumber, reviewedBy, auditTime } = DingTalkfilling.value;
+ try {
+ // 启动加载
+ DingTalkfilling.value.loading = true;
+
+ // 构建数据对象
+ const data = {
+ processNumber, // 钉钉号
+ reviewedBy, // 审核人
+ auditTime, // 审核时间
+ assignList: details.selectionList.map(item => item.id), // ID列表
+ };
+ let res = await $_updateWorkList(data);
+ if (res.data.code == 200) {
+ ElMessage({
+ message: res.data.msg,
+ type: 'success',
+ });
+ // 关闭弹窗和加载
+ DingTalkfilling.value.dialogDingTalk = false;
+ // 更新菜单数据
+ updateMenuAndData();
+ }
+ } catch (error) {
+ console.log(error);
+ } finally {
+ DingTalkfilling.value.loading = false;
+ }
+};
+/**
+ * @description: [财务入账]
+ * @return {void}
+ */
+const Financialfillingbtn = () => {
+ if (!details.selectionList.length) {
+ ElMessage({
+ message: '请勾选数据',
+ type: 'warning',
+ });
+ return;
+ }
+ // 开启钉钉号填写弹窗
+ FinancialFrom.value.loadingFinancial = true;
+};
+/**
+ * @description: [财务入账确定]
+ * @return {void}
+ */
+const FinancialfillingSubmit = async () => {
+ const { operator, entryTime } = FinancialFrom.value;
+ try {
+ FinancialFrom.value.dialog = true; //加载
+ const data = {
+ operator,
+ entryTime,
+ ids: details.selectionList.map(item => item.id).join(','),
+ };
+ let res = await $_updateFinanceTime(data);
+ if (res.data.code == 200) {
+ ElMessage({
+ message: res.data.msg,
+ type: 'success',
+ });
+ FinancialFrom.value.loadingFinancial = false;
+ // 更新菜单数据
+ updateMenuAndData();
+ }
+ } catch (error) {
+ } finally {
+ FinancialFrom.value.loading = false; //关闭加载
+ }
+};
/**
* @description: [全部]常工单号,跳转到详情信息页面
* @param {Object} row - 当前行数据
@@ -2302,6 +2569,60 @@ const WorkOrderAssignment = () => {
assignFrom.value = { ...assignFrom.value, businessDepartment: '', dialogassign: true };
};
+/**
+ * @description 客服介入
+ * @return {void} 无返回值
+ */
+const CustomerServiceIntervention = () => {
+
+ if (!details.selectionList.length) {
+ // 提示用户选择数据
+ ElMessage({
+ message: '请勾选要客服介入的数据',
+ type: 'warning',
+ });
+ return;
+ }
+ ElMessage({
+ message: '功能维护中...',
+ type: 'warning',
+ });
+ return;
+ CustomerServiceForm.value.loadingCustomer = true;
+ CustomerServiceForm.value.reasonRemarks = '';
+};
+/**
+ * @description 客服介入提交
+ * @return {void} 无返回值
+ */
+const InterventionSubmission = async () => {
+ CustomerServiceForm.value.loading = true;
+
+ try {
+ let data = {
+ assignList: [],
+ reasonRemarks: CustomerServiceForm.value.reasonRemarks, //客服介入原因
+ };
+ data['assignList'] = details.selectionList.map(item => {
+ return item.id;
+ });
+ let res = await $_arbitrate(data);
+ const { code, msg } = res.data;
+ if (code == 200) {
+ CustomerServiceForm.value.loadingCustomer = false;
+ updateMenuAndData(); //获取最新数据
+ ElMessage({
+ message: msg,
+ type: 'success',
+ });
+ }
+ } catch (error) {
+ console.log(error);
+ } finally {
+ CustomerServiceForm.value.loading = false;
+ }
+ // 处理中,待处理可申请
+};
/**
* 工单指派确定按钮
* 1.根据选择的客服ID,名称,和选择的工单ID,将其组装成一个data对象
@@ -2697,7 +3018,6 @@ const ProcessedExported = async dataID => {
}
:deep(.plAllret) {
height: 30%;
-
display: flex;
flex-direction: column;
.el-select {
@@ -2710,6 +3030,11 @@ const ProcessedExported = async dataID => {
justify-content: flex-end;
}
}
+:deep(.el_Customer) {
+ .el-form-item {
+ flex-direction: column;
+ }
+}
:deep(.el-fr-d) {
display: flex;
.el-form-item {
@@ -2810,16 +3135,71 @@ const ProcessedExported = async dataID => {
align-items: center;
justify-content: center;
flex-direction: column;
+ .el_title_a,
+ .el_title_b {
+ position: relative;
+ }
+ .el_title_a::after {
+ content: '导出全部数据【如果存在“ 勾选 ”数据则默认导出“ 勾选 ”数据】';
+ position: absolute;
+ color: #ff0000;
+ border: 1px solid #ff0000;
+ border-top: none;
+ padding: 4px;
+ border-radius: 22px;
+ top: -40px;
+ left: -50%;
+ }
+ .el_title_a::before {
+ content: '▼';
+ position: absolute;
+ color: #ff0000;
+ top: -18px;
+ left: 80px;
+ }
+ .el_title_b::after {
+ content: '目前只支持导出 " 当前页面 " 不会卡顿,速度很快';
+ position: absolute;
+ color: #ff0000;
+ border: 1px solid #ff0000;
+ border-bottom: none;
+ padding: 4px;
+ border-radius: 10px;
+ bottom: -40px;
+ right: -50%;
+ }
+ .el_title_b::before {
+ content: '▲';
+ position: absolute;
+ color: #ff0000;
+ bottom: -18px;
+ left: 80px;
+ }
.el-dialog__body {
width: 100%;
- height: 100%;
+ height: 44%;
display: flex;
align-items: center;
justify-content: space-evenly;
border-radius: 12px;
.el-button {
width: 30%;
- height: 44%;
+ height: 100%;
+ }
+ }
+}
+
+// 钉钉号
+:deep(.el_DingTalk) {
+ .el-form-item {
+ flex-direction: column;
+ .el-form-item__label {
+ justify-content: flex-start;
+ }
+ .el-form-item__content {
+ .el-input {
+ width: 100%;
+ }
}
}
}
diff --git a/src/views/aftersales/aftersalesWorkOrderAdd.vue b/src/views/aftersales/aftersalesWorkOrderAdd.vue
index 0e61a590..85672ded 100644
--- a/src/views/aftersales/aftersalesWorkOrderAdd.vue
+++ b/src/views/aftersales/aftersalesWorkOrderAdd.vue
@@ -840,7 +840,7 @@ const ruleForm = reactive({
],
orderCode: [
{ required: true, message: '请输入订单自编号', trigger: ['blur', 'change'] },
- { max: 30, message: '订单自编号最多30位', trigger: 'change' },
+ { max: 70, message: '订单自编号最多70位', trigger: 'change' },
],
first: [
{ required: false, message: '请输入一级品', trigger: ['blur', 'change'] },
diff --git a/src/views/aftersales/aftersalesWorkOrderend.vue b/src/views/aftersales/aftersalesWorkOrderend.vue
index f1dd5ab3..42ca2e15 100644
--- a/src/views/aftersales/aftersalesWorkOrderend.vue
+++ b/src/views/aftersales/aftersalesWorkOrderend.vue
@@ -682,7 +682,7 @@
v-if="PermissionButton.Arbitration_completed"
type="primary"
class="button"
- @click="CustomerServiceCompleted"
+ @click="ArbitrationSubmission"
>客服仲裁完结
{
- if (UserPermissions.value == Useridentity.Warehouse_customer_service && endFrom.value.arbitrate) {
+ if (endFrom.value.arbitrate) {
+ //已经完结了的,可以给仓库客服展示
return true;
}
-
+ // 否则只能总部客服和经理展示
if (
UserPermissions.value == Useridentity.Headquarters_customer_service ||
UserPermissions.value == Useridentity.Headquarters_Manager
@@ -1275,6 +1276,10 @@ const CompletedPresentation = () => {
UserPermissions.value == Useridentity.Headquarters_customer_service ||
UserPermissions.value == Useridentity.Headquarters_Manager
) {
+ // 客服介入
+ if (['70'].includes($route.query.workOrderStatus)) {
+ return false;
+ }
if (['30'].includes($route.query.workOrderStatus)) {
return false;
}
@@ -1323,13 +1328,12 @@ const Processingresultmodification = () => {
// 客服仲裁完结
const Arbitrationcompleted = () => {
- return false
if (
UserPermissions.value == Useridentity.Headquarters_customer_service ||
UserPermissions.value == Useridentity.Headquarters_Manager
) {
//总部客服、总部客服经理
- if ($route.query.workOrderStatus == '10') {
+ if (['70'].includes($route.query.workOrderStatus)) {
return true;
}
}
@@ -1338,6 +1342,16 @@ const Arbitrationcompleted = () => {
// 处理结果是否可以填写
const Processingresultdisabled = () => {
+ // 总部仲裁中
+ if (['70'].includes($route.query.workOrderStatus)) {
+ if (
+ UserPermissions.value == Useridentity.Headquarters_customer_service ||
+ UserPermissions.value == Useridentity.Headquarters_Manager
+ ) {
+ return true;
+ }
+ }
+
if (
UserPermissions.value == Useridentity.Warehouse_customer_service ||
UserPermissions.value == Useridentity.Headquarters_customer_service ||
@@ -1641,7 +1655,7 @@ const onLoad = async () => {
});
}
console.log(endFrom.value, '表单信息');
- await getDeptWarehouse({}).then(res => {
+ await getDeptWarehouse({}).then(res => {
// 验证本地仓库用于回复选择,自己不能选择自己仓库
console.log(res, '处理方');
console.log(localStorage.getItem('WarehouseName'), '当前本地仓库');
@@ -2608,7 +2622,14 @@ const CustomerServiceCompleted = () => {
});
$useStore.commit('DEL_TAG_CURRENT');
};
-
+// 客服仲裁完结提交
+const ArbitrationSubmission = () => {
+ ElMessage({
+ message: '功能维护中...',
+ type: 'warning',
+ });
+ return;
+};
// 处理结果打回
const resultreturnedFun = () => {
BatchFrom.value.businessDepartment = [];
@@ -2702,7 +2723,7 @@ const BatchReturn = () => {
})
.catch(() => {});
};
-// 待审核确认审核(经理审核)
+// 待审核确认审核(经理审核或总部)
const ResultConfirmation = async () => {
ElMessageBox.confirm('是否确认审核?请注意查验数据正确性!', '提示', {
confirmButtonText: '确认',
diff --git a/src/views/basicdata/warehouse/tray/basicdataTrayedt.vue b/src/views/basicdata/warehouse/tray/basicdataTrayedt.vue
index 6e25e597..d0961269 100644
--- a/src/views/basicdata/warehouse/tray/basicdataTrayedt.vue
+++ b/src/views/basicdata/warehouse/tray/basicdataTrayedt.vue
@@ -657,10 +657,21 @@ export default {
sortable: true,
head: false,
},
+ {
+ prop: 'mallName',
+ label: '商场名称',
+ type: 1,
+ values: '',
+ width: '150',
+ checkarr: [],
+ fixed: false,
+ sortable: true,
+ head: false,
+ },
{
prop: 'isFleeingName',
label: '是否窜货',
- type: 30,
+ type: 1,
values: '',
width: '80',
checkarr: [
@@ -682,6 +693,8 @@ export default {
sortable: true,
head: false,
},
+
+
{
prop: 'firsts',
label: '一级品类',
diff --git a/src/views/distribution/deliverylist/distributionDeliveryListdis.vue b/src/views/distribution/deliverylist/distributionDeliveryListdis.vue
index 0e76f627..1dceea59 100644
--- a/src/views/distribution/deliverylist/distributionDeliveryListdis.vue
+++ b/src/views/distribution/deliverylist/distributionDeliveryListdis.vue
@@ -323,6 +323,7 @@ import { getDictionaryBiz } from '@/api/system/dict';
import { addIncrement } from '@/api/distribution/distributionStockArticle';
import { getVehicleList } from '@/api/basicdata/basicdataVehicle';
import { getDriverList } from '@/api/basicdata/basicdataDriverArtery';
+import dayjs from 'dayjs';
import print from '@/utils/print';
import {
downloadXls,
@@ -331,12 +332,13 @@ import {
handleSelectQuery,
setNodeHeight,
} from '@/utils/util';
-import { ElMessage, ElMessageBox } from 'element-plus';
+import { ElMessage, ElMessageBox, tourEmits } from 'element-plus';
import * as XLSX from 'xlsx';
export default {
data() {
return {
height: 0,
+ currentdate:true,
// 弹框标题
title: '',
// 是否展示弹框
@@ -984,10 +986,25 @@ export default {
this.loadingObj.pageLoading = false;
}
},
+ Getcurrentdate() {
+ // 获取当前日期
+ const currentDate = dayjs();
+ // 计算一个月前的日期
+ const startDate = currentDate.subtract(1, 'month');
+ // 格式化日期为 'YYYY-MM-DD'
+ const formatDate = date => date.format('YYYY-MM-DD');
+ this.query.taskTimeArr = [];
+ this.query.taskTimeArr[0] = formatDate(startDate); // 一个月前的日期
+ this.query.taskTimeArr[1] = formatDate(currentDate); // 当前日期
+ },
- onLoad(page, params = {}) {
+ async onLoad(page, params = {}) {
this.loading = true;
this.query.type = '1';
+ if(this.currentdate){
+ await this.Getcurrentdate()
+ }
+
const submitData = { ...params, ...this.query };
if (getObjType(this.query.taskTimeArr) === 'array') {
@@ -1024,6 +1041,7 @@ export default {
this.page.total = data.total;
this.data = data.records;
// data.records
+ this.currentdate = false;
this.loading = false;
this.selectionClear();
});
diff --git a/src/views/distribution/deliverylist/distributionDeliveryListmar.vue b/src/views/distribution/deliverylist/distributionDeliveryListmar.vue
index 39c41bfa..54e75fc9 100644
--- a/src/views/distribution/deliverylist/distributionDeliveryListmar.vue
+++ b/src/views/distribution/deliverylist/distributionDeliveryListmar.vue
@@ -223,6 +223,7 @@ import {
printBatch,
getDeliveryListExport,
} from '@/api/distribution/distributionDeliveryList';
+import dayjs from 'dayjs';
import option from '@/option/distribution/distributionDeliveryList';
// import distributionDeliveryListmar from '@/components/distributionDeliveryListmar/distributionDeliveryListmar.vue';
import { mapGetters } from 'vuex';
@@ -248,6 +249,7 @@ export default {
data() {
return {
height: 0,
+ currentdate:true,
dydialogVisible: false,
// 弹框标题
title: '',
@@ -773,9 +775,24 @@ export default {
this.page.pageSize = pageSize;
this.onLoad(this.page);
},
- onLoad(page, params = {}) {
+ Getcurrentdate() {
+ // 获取当前日期
+ const currentDate = dayjs();
+ // 计算一个月前的日期
+ const startDate = currentDate.subtract(1, 'month');
+ // 格式化日期为 'YYYY-MM-DD'
+ const formatDate = date => date.format('YYYY-MM-DD');
+ this.query.taskTimeArr = [];
+ this.query.taskTimeArr[0] = formatDate(startDate); // 一个月前的日期
+ this.query.taskTimeArr[1] = formatDate(currentDate); // 当前日期
+ },
+ async onLoad(page, params = {}) {
this.loading = true;
this.query.type = '2';
+ if(this.currentdate){
+ await this.Getcurrentdate()
+ }
+
const submitData = { ...params, ...this.query };
if (getObjType(this.query.taskTimeArr) === 'array') {
@@ -812,6 +829,7 @@ export default {
this.page.total = data.total || 0;
this.data = data.records || [];
this.loading = false;
+ this.currentdate=false;
this.selectionClear();
});
getstatistics(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(
diff --git a/src/views/distribution/inventory/delivery/distributionStockArticle.vue b/src/views/distribution/inventory/delivery/distributionStockArticle.vue
index 474f3993..bfb56f17 100644
--- a/src/views/distribution/inventory/delivery/distributionStockArticle.vue
+++ b/src/views/distribution/inventory/delivery/distributionStockArticle.vue
@@ -1504,32 +1504,20 @@ export default {
}
},
- async openDialog(title, input) {
+ openDialog(title, input) {
this.popupTitle = title;
- console.log(input, '输入框值1');
if (input) {
- const formattedInput = await input.split(',').join('\n');
- console.log(formattedInput, '输入框值2');
-
- this.searchInput = formattedInput; // 赋值给 inputAll
+ this.searchInput = input.split(',').join('\n');
} else {
this.searchInput = '';
}
- console.log(this.searchInput, '输入框值3');
this.dialogVisible = true;
},
handleSearchSubmit(value) {
- const lines = value
- .split('\n') // 按换行分割
- .map(line => line.trim()) // 移除每一行前后的空格
- .filter(line => line !== ''); // 过滤掉空行
-
- const joinedLines = lines.join(','); // 使用逗号连接,无空格
-
if (this.popupTitle == '订单自编号搜索') {
- this.query.orderCodeNum = joinedLines; //搜索框值
+ this.query.orderCodeNum = value; //搜索框值
} else if (this.popupTitle == '运单号搜索') {
- this.query.waybillNum = joinedLines; //搜索框值
+ this.query.waybillNum = value; //搜索框值
}
this.dialogVisible = false;
},
diff --git a/src/views/warehouse/parcelList/distributionParcelList.vue b/src/views/warehouse/parcelList/distributionParcelList.vue
index 62a5477b..20d472f3 100644
--- a/src/views/warehouse/parcelList/distributionParcelList.vue
+++ b/src/views/warehouse/parcelList/distributionParcelList.vue
@@ -12,6 +12,7 @@
range-separator="至"
start-placeholder="开始时间"
end-placeholder="结束时间"
+ value-format="YYYY-MM-DD"
/>
@@ -23,6 +24,7 @@
range-separator="至"
start-placeholder="开始时间"
end-placeholder="结束时间"
+ value-format="YYYY-MM-DD"
/>
@@ -33,6 +35,7 @@
unlink-panels
range-separator="至"
start-placeholder="开始时间"
+ value-format="YYYY-MM-DD"
end-placeholder="结束时间"
/>
@@ -745,10 +748,6 @@ export default {
console.log(res, '获取到的页面初始值');
for (let index = 0; index < data.records.length; index++) {
const element = data.records[index];
- if (element.warehouseEntryTimeEnd) {
- element.warehouseEntryTimeEnd = this.formatDateTime(element.warehouseEntryTimeEnd);
- }
-
element.conditionsType = element.conditions === 1 ? '定制品' : '库存品';
}
this.page.total = data.total;
@@ -973,21 +972,28 @@ export default {
},
searchChange() {
if (
- this.warehouseEntryTimeEnd.length === 0 &&
- this.loadingTime.length === 0 &&
- this.signingTime.length === 0
- )
+ !this.warehouseEntryTimeEnd?.length &&
+ !this.loadingTime.length &&
+ !this.signingTime.length
+ ) {
return this.$message.warning('请选择时间!!!');
+ }
- /** 入库时间 */
- this.query.startWarehouseEntryTimeEnd = this.warehouseEntryTimeEnd[0];
- this.query.lastWarehouseEntryTimeEnd = this.warehouseEntryTimeEnd[1];
- /** 装车时间 */
- this.query.startLoadingTime = this.loadingTime[0];
- this.query.lastLoadingTime = this.loadingTime[1];
- /** 签收时间 */
- this.query.startSigningTime = this.signingTime[0];
- this.query.lastSigningTime = this.signingTime[1];
+ if (this.warehouseEntryTimeEnd?.length) {
+ /** 入库时间 */
+ this.query.startWarehouseEntryTimeEnd = this.warehouseEntryTimeEnd[0];
+ this.query.lastWarehouseEntryTimeEnd = this.warehouseEntryTimeEnd[1];
+ }
+ if (this.loadingTime?.length) {
+ /** 装车时间 */
+ this.query.startLoadingTime = this.loadingTime[0];
+ this.query.lastLoadingTime = this.loadingTime[1];
+ }
+ if (this.signingTime?.length) {
+ /** 签收时间 */
+ this.query.startSigningTime = this.signingTime[0];
+ this.query.lastSigningTime = this.signingTime[1];
+ }
this.onLoad(this.page);
},
@@ -1103,16 +1109,6 @@ export default {
this.page.pageSize = pageSize;
this.onLoad(this.page);
},
- formatDateTime(dateTimeString) {
- // 检查时间字符串是否以 "00:00:00" 结束
- if (dateTimeString.endsWith('00:00:00')) {
- // 如果是,去除时间部分(包括前面的空格)
- return dateTimeString.slice(0, -9);
- } else {
- // 如果不是,返回原始字符串
- return dateTimeString;
- }
- },
},
};
diff --git a/src/views/waybill/WaybillOrderList.vue b/src/views/waybill/WaybillOrderList.vue
index bddcec9d..01936534 100644
--- a/src/views/waybill/WaybillOrderList.vue
+++ b/src/views/waybill/WaybillOrderList.vue
@@ -471,28 +471,20 @@ const permissionObj = reactive({
}),
});
const dialogVisible = ref(false);
-const popupTitle = ref('搜索弹窗');
+const popupTitle = ref('');
const searchInput = ref('');
const openDialog = (title, input) => {
popupTitle.value = title;
- console.log(input, 'input');
if (input) {
- const formattedInput = input.split(',').join('\n');
- searchInput.value = formattedInput; // 赋值给 inputAll
+ searchInput.value = input.split(',').join('\n'); // 赋值给 inputAll
} else {
searchInput.value = '';
}
dialogVisible.value = true;
};
const handleSearchSubmit = value => {
- const lines = value
- .split('\n') // 按换行分割
- .map(line => line.trim()) // 移除每一行前后的空格
- .filter(line => line !== ''); // 过滤掉空行
-
- const joinedLines = lines.join(','); // 使用逗号连接,无空格
if (popupTitle.value == '运单号搜索') {
- query.value.waybillNoList = joinedLines; //搜索框值
+ query.value.waybillNoList = value; //搜索框值
}
dialogVisible.value = false;
};
@@ -1121,5 +1113,4 @@ getListName({ name: '' }).then(res => {
.imgDialogVisible .el-dialog__body {
padding: 0;
}
-