Browse Source

Merge branch 'dev' into pre-production

pre-production
pref_mail@163.com 4 months ago
parent
commit
1c6a887f6d
  1. 3
      package.json
  2. 9
      src/api/aftersales/aftersalesWorkOrder.js
  3. 36
      src/api/reportforms/index.js
  4. 43
      src/api/wel/index.js
  5. 2
      src/option/aftersales/vueTvemp.js
  6. 19
      src/option/distribution/distributionStockArticleSelf.js
  7. 365
      src/option/reportforms/DeliveryDetailsReport.js
  8. 215
      src/option/reportforms/DeliveryStatisticsReport.js
  9. 19
      src/option/waybill/TemporaryStorageList.js
  10. 18
      src/router/views/index.js
  11. 25
      src/views/aftersales/aftersalesWorkOrder.vue
  12. 6
      src/views/aftersales/aftersalesWorkOrderAdd.vue
  13. 2
      src/views/basicdata/warehouse/warehouse/basicdataWarehouse.vue
  14. 11
      src/views/cost/Deliverycostmanagement/Financialreview.vue
  15. 48
      src/views/cost/Deliverycostmanagement/OrderTotalCostDetail.vue
  16. 3
      src/views/cost/storagecost/Monthlyorderwarehousing.vue
  17. 9
      src/views/cost/storagecost/OrderTotalWarehouse.vue
  18. 596
      src/views/cost/storagecost/Transferwarehousestatistics.vue
  19. 6
      src/views/cost/storagecost/Warehouserentalmanagement.vue
  20. 2104
      src/views/desk/DataBoard.vue
  21. 66
      src/views/distribution/artery/TripartiteTransfer.vue
  22. 2
      src/views/distribution/artery/VehicleStowageDetails.vue
  23. 8
      src/views/distribution/deliverylist/distributionDeliveryList.vue
  24. 18
      src/views/distribution/deliverylist/distributionDeliveryListdis.vue
  25. 20
      src/views/distribution/deliverylist/distributionDeliveryListmar.vue
  26. 16
      src/views/distribution/inventory/CreateOrder.vue
  27. 6
      src/views/distribution/inventory/delivery/distributionStockArticle.vue
  28. 7
      src/views/distribution/inventory/delivery/distributionStockArticleDiscuss.vue
  29. 7
      src/views/distribution/inventory/delivery/distributionStockArticleMarket.vue
  30. 42
      src/views/distribution/inventory/delivery/distributionStockArticleSelf.vue
  31. 18
      src/views/distribution/inventory/distrilbutionBillLadingList.vue
  32. 361
      src/views/reportforms/DeliveryDetailsReport.vue
  33. 565
      src/views/reportforms/DeliveryStatisticsReport.vue
  34. 16
      src/views/waybill/CreateZeroOrder.vue
  35. 54
      src/views/waybill/TemporaryStorageList.vue
  36. 46
      src/views/waybill/orderPackageList.vue
  37. 1798
      src/views/wel/index.vue

3
package.json

@ -18,6 +18,7 @@
"axios": "^0.21.1",
"crypto-js": "^4.1.1",
"dayjs": "^1.10.6",
"echarts": "^5.5.1",
"element-plus": "^2.3.1",
"file-saver": "^2.0.5",
"html2canvas": "^1.4.1",
@ -50,4 +51,4 @@
"vite-plugin-vue-setup-extend": "^0.4.0",
"xlsx": "^0.18.5"
}
}
}

9
src/api/aftersales/aftersalesWorkOrder.js

@ -500,6 +500,15 @@ export const $_exportWorkOrder2 = (params) => {
responseType: 'blob',
})
}
// 完结导出
export const $_exportWorkOrder4 = (params) => {
return request({
url: '/api/logpm-aftersales/aftersalesWorkOrder/exportWorkOrder4',
method: 'get',
params,
responseType: 'blob',
})
}
// 处理完毕
export const $_exportWorkOrder3 = (params) => {
return request({

36
src/api/reportforms/index.js

@ -190,3 +190,39 @@ export const $_exportStockOrder = params => {
responseType: 'blob',
});
};
// 配送统计报表
export const $_getDeliveryStatisticsReport = params => {
return request({
url: '/api/logpm-report/qualityDispatch/number',
method: 'get',
params,
});
};
// 配送统计报表导出
export const $_expDeliveryStatisticsReport = params => {
return request({
url: '/api/logpm-report/qualityDispatch/exporNumber',
method: 'get',
params,
responseType: 'blob',
});
};
// 配送统计报表详情
export const $_getDeliveryDetailsReport = params => {
return request({
url: '/api/logpm-report/qualityDispatch/task',
method: 'get',
params,
});
};
// 配送统计报表详情导出
export const $_expDeliveryDetailsReport = params => {
return request({
url: '/api/logpm-report/qualityDispatch/exporTask',
method: 'get',
params,
responseType: 'blob',
});
};

43
src/api/wel/index.js

@ -18,9 +18,9 @@ export const postAllocationData = data => {
* @param {Object} data
* @returns
*/
export const postOpenOrderDataByWarehouseId = data => {
export const postAllocationDataByWarehouseId = data => {
return request({
url: '/api/logpm-report/warehouseIndex/openOrderDataByWarehouseId',
url: '/api/logpm-report/warehouseIndex/allocationDataByWarehouseId',
method: 'post',
data,
});
@ -39,6 +39,19 @@ export const postHandOrderData = data => {
});
};
/**
* 当前在库数据 -- 对比数据
* @param {Object} data
* @returns
*/
export const postHandOrderDataByWarehouseId = data => {
return request({
url: '/api/logpm-report/warehouseIndex/handOrderDataByWarehouseId',
method: 'post',
data,
});
};
/**
* 开单数据
* @param {Object} data
@ -52,6 +65,19 @@ export const postOpenOrderData = data => {
});
};
/**
* 开单数据 -- 对比数据
* @param {Object} data
* @returns
*/
export const postOpenOrderDataByWarehouseId = data => {
return request({
url: '/api/logpm-report/warehouseIndex/openOrderDataByWarehouseId',
method: 'post',
data,
});
};
/**
* 开单收入数据
* @param {Object} data
@ -78,6 +104,19 @@ export const postTrunklineCarsData = data => {
});
};
/**
* 干线车次数据 -- 对比数据
* @param {Object} data
* @returns
*/
export const postTrunklineCarsDataByWarehouseId = data => {
return request({
url: '/api/logpm-report/warehouseIndex/trunklineCarsDataByWarehouseId',
method: 'post',
data,
});
};
/**
* 干线发运数据
* @param {Object} data

2
src/option/aftersales/vueTvemp.js

@ -473,7 +473,7 @@ export const columnList = [
{
prop: 'ceator',
label: '创建人',
type: 1,
type: 2,
values: '',
width: '150',
checkarr: [],

19
src/option/distribution/distributionStockArticleSelf.js

@ -201,6 +201,25 @@ export const columnList = [
fixed: false,
sortable: true,
},
{
prop: 'isTimeOutName',
label: '超时状态',
type: 3,
values: '',
width: '100',
checkarr: [
{
value: '0',
label: '未超时',
},
{
value: '1',
label: '超时',
},
],
fixed: false,
sortable: true,
},
{
prop: 'warehouse',
label: '所在仓库',

365
src/option/reportforms/DeliveryDetailsReport.js

@ -0,0 +1,365 @@
export const columnList = [
{
prop: '',
label: '复选框',
type: 0,
width: 55,
fixed: true,
},
{
prop: '',
label: '序号',
type: 12,
values: '',
width: 55,
fixed: true,
},
{
prop: 'warehouseName',
label: '仓库',
type: 1,
values: '',
width: '180',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'deliveryType',
label: '配送类型',
type: 3,
values: '',
width: '150',
checkarr: [
{
label: '商配',
value: '商配'
},
{
label: '市配',
value: '市配'
}
],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'reviewStatus',
label: '文员复核状态',
type: 3,
values: '',
width: '150',
checkarr: [
{
label: '已复核',
value: '已复核'
},
{
label: '未复核',
value: '未复核'
}
],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'planReservationCode',
label: '预约单编号',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'planTrainNumber',
label: '车次号',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'mallName',
label: '商场/承运商',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'reservationConsignee',
label: '收货人',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'driverName',
label: '司机/提货人',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'vehicleName',
label: '车辆',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'deliveryTime',
label: '配送日期',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'deliveryCreateUserName',
label: '任务创建人',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'planNum',
label: '计划件数',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
isshowSummary: true,//开启统计
},
{
prop: 'loadNum',
label: '装车件数',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
isshowSummary: true,//开启统计
},
{
prop: 'signNum',
label: '签收件数',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
isshowSummary: true,//开启统计
},
{
prop: 'planStockNum',
label: '库存品计划数',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
isshowSummary: true,//开启统计
},
{
prop: 'loadStockNum',
label: '库存品装车数',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
isshowSummary: true,//开启统计
},
{
prop: 'signStockNum',
label: '库存品签收数',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
isshowSummary: true,//开启统计
},
// {
// prop: 'signStatus',
// label: '签收状态',
// type: 1,
// values: '',
// width: '150',
// checkarr: [],
// fixed: false,
// sortable: true,
// head: false,
// },
{
prop: 'signTime',
label: '签收时间',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'signUserName',
label: '签收人',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'reviewUserName',
label: '审核人',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'reviewTime',
label: '审核时间',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'exceptionLoadNum',
label: '异常装车数',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
isshowSummary: true,//开启统计
},
{
prop: 'exceptionSignNum',
label: '异常签收数',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
isshowSummary: true,//开启统计
},
{
prop: 'deliveryMode',
label: '送货方式',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'startCarTime',
label: '发车时间',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'arriveCarTime',
label: '到达时间',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'unLoadNum',
label: '卸车件数',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
isshowSummary: true,//开启统计
},
// {
// prop: 'createUserName',
// label: '操作',
// type: 6,
// values: '',
// width: '200',
// checkarr: [],
// fixed: 'right',
// sortable: false,
// },
];

215
src/option/reportforms/DeliveryStatisticsReport.js

@ -0,0 +1,215 @@
export const columnList = [
{
prop: '',
label: '复选框',
type: 0,
width: 55,
fixed: true,
},
{
prop: '',
label: '序号',
type: 12,
values: '',
width: 55,
fixed: true,
},
{
prop: 'warehouseName',
label: '仓库',
type: 3,
values: '',
width: '180',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'deliveryType',
label: '配送类型',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: true,
},
{
prop: 'planNum',
label: '预约总数',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
isshowSummary: true, //开启统计
},
{
prop: 'loadNum',
label: '装车总数',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
isshowSummary: true, //开启统计
},
{
prop: 'signNum',
label: '签收总数',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
isshowSummary: true, //开启统计
},
{
prop: 'signRate',
label: '签收率',
type: 6,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'planStockNum',
label: '预约库存品数量',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
isshowSummary: true, //开启统计
},
{
prop: 'stockingQuantity',
label: '库存品备货件数',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
isshowSummary: true, //开启统计
},
{
prop: 'loadStockNum',
label: '库存品装车数',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
isshowSummary: true, //开启统计
},
{
prop: 'signStockNum',
label: '库存品签收数',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
isshowSummary: true, //开启统计
},
{
prop: 'signStockRate',
label: '库存品签收率',
type: 6,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'exceptionNum',
label: '异常数',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
isshowSummary: true, //开启统计
},
{
prop: 'planAccuracy',
label: '计划准确率',
type: 6,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'customerCount',
label: '客户数',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
isshowSummary: true, //开启统计
},
{
prop: 'reviewCustomerCount',
label: '已审核客户数',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
isshowSummary: true, //开启统计
},
{
prop: 'reviewRate',
label: '审核率',
type: 6,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'createUserName',
label: '操作',
type: 6,
values: '',
width: '200',
checkarr: [],
fixed: 'right',
sortable: false,
},
];

19
src/option/waybill/TemporaryStorageList.js

@ -105,6 +105,25 @@ export const columnList = [
fixed: false,
sortable: true,
},
{
prop: 'isTimeOutName',
label: '超时状态',
type: 14,
values: '',
width: '130',
checkarr: [
{
label: '超时',
value: 1,
},
{
label: '未超时',
value: 0,
},
],
fixed: false,
sortable: true,
},
{
prop: 'totalNum',
label: '数量',

18
src/router/views/index.js

@ -1812,7 +1812,7 @@ export default [
},
path: '/distribution/checkInventoryTask/createTaskTemp',
name: '盘点旧版',
component: () => import('@/views/distribution/checkInventoryTask/createTasktemp.vue'),
component: () => import('@/views/distribution/checkInventoryTask/createTaskTemp.vue'),
},
],
},
@ -1865,4 +1865,20 @@ export default [
},
],
},
{
path: '/reportforms/DeliveryDetailsReport',
component: Layout,
redirect: '/reportforms/DeliveryDetailsReport',
children: [
{
meta: {
i18n: 'dict',
keepAlive: true,
},
path: '/reportforms/DeliveryDetailsReport',
name: '配送明细详情报表',
component: () => import('@/views/reportforms/DeliveryDetailsReport.vue'),
},
],
},
];

25
src/views/aftersales/aftersalesWorkOrder.vue

@ -636,6 +636,7 @@ import {
$_exportWorkOrder1,
$_exportWorkOrder2,
$_exportWorkOrder3,
$_exportWorkOrder4,
} from '@/api/aftersales/aftersalesWorkOrder';
import {
columnList,
@ -2830,6 +2831,10 @@ const exportReport = () => {
//
ExportClaimAmount(dataID);
break;
case 6:
//
CompleteExport(dataID);
break;
default:
ExportAll(dataID);
break;
@ -2934,6 +2939,26 @@ const ExportClaimAmount = async dataID => {
} finally {
}
};
//
const CompleteExport = async dataID => {
try {
let res = await $_exportWorkOrder4(dataID);
const currentDate = new Date();
const formattedDate = `${currentDate.getFullYear()}${(currentDate.getMonth() + 1)
.toString()
.padStart(2, '0')}${currentDate.getDate().toString().padStart(2, '0')}${currentDate
.getHours()
.toString()
.padStart(2, '0')}${currentDate.getMinutes().toString().padStart(2, '0')}${currentDate
.getSeconds()
.toString()
.padStart(2, '0')}`;
downloadXls(res.data, `导出工单数据${formattedDate}.xlsx`);
} catch (e) {
console.log(e);
} finally {
}
};
//
const ProcessedExported = async dataID => {
try {

6
src/views/aftersales/aftersalesWorkOrderAdd.vue

@ -1010,11 +1010,15 @@ const DiscoveringNodesChange = async value => {
typeServiceName: form.value.basis.typeServiceName, //
TabactiveName: form.value.basis.TabactiveName, //
};
form.value.deliver = [];
if (value == '3') {
form.value.basis.processorEntityList = [];
} else {
delete form.value.basis.processorEntityList;
}
if (value == '5' || value == '7') {
form.value.deliver = [];
}
console.log(form.value.basis, 'form.value.basis');
//
form.value.Proportion = 0;
@ -1385,7 +1389,7 @@ const ChangePackageInfo = async item => {
console.log(form.value.Trainoptions, 'form.value.Trainoptions');
}
//
if (['5'].includes(form.value.basis.discoveryNode)) {
if (['5', '7'].includes(form.value.basis.discoveryNode)) {
let addedTrainNumbers = []; //
res.data.data.forEach(item => {
if (item.deliver && item.deliver.length) {

2
src/views/basicdata/warehouse/warehouse/basicdataWarehouse.vue

@ -260,7 +260,7 @@
</el-select>
</el-form-item>
<el-form-item label="租金单价">
<el-form-item label="仓库月租金">
<el-input-number
style="width: 100%"
v-model="Addform.unitPrice"

11
src/views/cost/Deliverycostmanagement/Financialreview.vue

@ -174,6 +174,7 @@ const $router = useRouter(); //跳转
const $useStore = useStore(); //
const $route = useRoute(); //
const toexaminedialog = ref(false);
const activeName = ref('first');
const form = ref({
a: 0,
});
@ -216,7 +217,7 @@ const details = reactive({
columnList,
/** 列表数据 */
data: [{}],
data: [],
/** 页面loading */
loadingObj: {
/** 列表加载loading */
@ -291,7 +292,9 @@ const timesc = (index, row) => {
delete details.query[row.prop];
}
};
const handleClick = () => {
onLoad();
};
/** 表格表头输入框搜索 */
const btnsc = val => {
console.log(val);
@ -307,7 +310,7 @@ const selectionChange = list => {
};
//
const searchChange = () => {
details.search = false; //
onLoad();
};
//
const sizeChange = val => {
@ -321,7 +324,7 @@ const currentChange = val => {
};
//
const searchChangeS = () => {
details.search = false; //
onLoad();
};
//
const searchHide = () => {

48
src/views/cost/Deliverycostmanagement/OrderTotalCostDetail.vue

@ -103,13 +103,16 @@
<script setup>
import { ref, reactive, toRefs, computed, onMounted, nextTick, watch } from 'vue';
import { columnList } from '@/option/storagecost/OrderTotalCostDetail.js';
import { $_getMyWarehouseList,$_OrderTotalCostDetail ,$_expenseDispatchOrderDetail} from '@/api/storagecost/index.js';
import {
$_getMyWarehouseList,
$_OrderTotalCostDetail,
$_expenseDispatchOrderDetail,
} from '@/api/storagecost/index.js';
import { getDictionaryBiz } from '@/api/system/dict'; //
import { processRowProperty, setNodeHeight } from '@/utils/util';
import functions from '@/utils/functions.js';
import { ElMessageBox, ElMessage } from 'element-plus';
import { downloadXls } from '@/utils/util';
import { downloadXls ,handleClearTableQuery} from '@/utils/util';
import { useStore } from 'vuex';
import dayjs from 'dayjs';
import error from '@/error';
@ -249,8 +252,15 @@ const selectionChange = list => {
};
//
const searchChange = () => {
details.search = false; //
onLoad(queryTop.value);
};
//
const searchReset=()=>{
details.query={};
queryTop.value={};
handleClearTableQuery(details.columnList);
onLoad()
}
//
const sizeChange = val => {
details.page.pageSize = val;
@ -263,7 +273,7 @@ const currentChange = val => {
};
//
const searchChangeS = () => {
onLoad()
onLoad();
};
//
const searchHide = () => {
@ -285,24 +295,27 @@ function updateDictionary(targetArray, dictionaryType) {
});
}
//
const onLoad = value => {
const onLoad = value => {
let data = {
current: details.page.currentPage,
size: details.page.pageSize,
...details.query,
...value,
};
details.loadingObj.list=true
$_OrderTotalCostDetail(data).then(res => {
if (res.data.code == 200) {
details.data = res.data.data.records || [];
details.page.total = res.data.data.total; //
}
}).catch(error=>{
console.log(error);
}).finally(()=>{
details.loadingObj.list=false
});
details.loadingObj.list = true;
$_OrderTotalCostDetail(data)
.then(res => {
if (res.data.code == 200) {
details.data = res.data.data.records || [];
details.page.total = res.data.data.total; //
}
})
.catch(error => {
console.log(error);
})
.finally(() => {
details.loadingObj.list = false;
});
};
const PageOnload = () => {
onLoad(); //
@ -335,7 +348,6 @@ const exportExcel = () => {
})
.catch(() => {});
};
</script>
<style scoped lang="scss">

3
src/views/cost/storagecost/Monthlyorderwarehousing.vue

@ -32,11 +32,12 @@
type="year"
placeholder="请选择年份"
value-format="YYYY"
/>
</el-form-item>
<el-form-item label="结算月">
<el-select v-model="queryTop.costSettlementMonth" placeholder="请选择月份">
<el-select v-model="queryTop.costSettlementMonth" placeholder="请选择月份" style="min-width: 80px">
<el-option
v-for="item in monthList"
:key="item.value"

9
src/views/cost/storagecost/OrderTotalWarehouse.vue

@ -35,7 +35,7 @@
</el-form-item>
<el-form-item label="结算月">
<el-select v-model="queryTop.costSettlementMonth" placeholder="请选择月份">
<el-select v-model="queryTop.costSettlementMonth" placeholder="请选择月份" style="min-width: 80px">
<el-option
v-for="item in monthList"
:key="item.value"
@ -276,6 +276,13 @@ const selectionChange = list => {
console.log(list);
details.selectionList = list;
};
//
const searchReset=()=>{
queryTop.value = {};
details.query={}
details.data=[]
onLoad();
}
//
const searchChange = () => {
if (queryTop.value.warehouse?.length) {

596
src/views/cost/storagecost/Transferwarehousestatistics.vue

@ -1,12 +1,12 @@
<template>
<basic-container>
<!-- 首页表格 -->
<div class="avue-crud">
<!-- 搜索模块 -->
<el-row v-if="search">
<!-- 查询模块 -->
<el-form :inline="true" :model="queryTop" class="el-fr-d">
<div>
<basic-container>
<!-- 首页表格 -->
<div class="avue-crud">
<!-- 搜索模块 -->
<el-row v-if="search">
<!-- 查询模块 -->
<el-form :inline="true" :model="queryTop" class="el-fr-d">
<div>
<el-form-item label="中转仓">
<el-select
v-model="queryTop.warehouse"
@ -32,7 +32,11 @@
</el-form-item>
<el-form-item label="结算月">
<el-select v-model="queryTop.costSettlementMonth" placeholder="请选择月份">
<el-select
v-model="queryTop.costSettlementMonth"
placeholder="请选择月份"
style="min-width: 80px"
>
<el-option
v-for="item in monthList"
:key="item.value"
@ -42,238 +46,253 @@
</el-select>
</el-form-item>
</div>
<!-- 查询按钮 -->
<el-form-item class="el-btn">
<el-button type="primary" icon="el-icon-search" @click="searchChange"> </el-button>
<el-button icon="el-icon-delete" @click="searchReset()"> </el-button>
</el-form-item>
</el-form>
</el-row>
<!-- 控件模块 -->
<el-row>
<div class="avue-crud__header">
<!-- 头部左侧按钮模块 -->
<div class="avue-crud__left">
<el-button type="primary" @click="AddInfo"><el-icon><Plus /></el-icon></el-button>
<el-button type="primary" @click="AddInfo"><el-icon><Download /></el-icon></el-button>
</div>
<!-- 头部右侧按钮模块 -->
<div class="avue-crud__right">
<el-button icon="el-icon-refresh" @click="searchChangeS" circle></el-button>
<el-button icon="Operation" @click="showdrawer(true)" circle></el-button>
<el-button icon="Search" @click="searchHide" circle></el-button>
</div>
</div>
</el-row>
<!-- 首页表格 -->
<el-row>
<!-- 列表模块 -->
<tablecmt
class="tableNode"
:columnList="details.columnList"
:tableData="data"
:loading="loadingObj.list"
@inputTxt="inputsc"
@timeCheck="timesc"
@btnCheck="btnsc"
@selectCheck="selectsc"
@selection="selectionChange"
>
<template #default="slotProps">
<template v-if="slotProps.scope.column.label === '操作'">
<div class="ElBtnClass">
<el-button @click="view(slotProps.scope)">查看</el-button>
</div>
</template>
</template>
</tablecmt>
</el-row>
<!-- 分页模块 -->
<el-row class="el-fy">
<div class="avue-crud__pagination flex-c-sb" style="width: 100%">
<div></div>
<el-pagination
align="right"
background
@size-change="sizeChange"
@current-change="currentChange"
:current-page="page.currentPage"
:page-sizes="[30, 50, 80, 120]"
:page-size="page.pageSize"
layout="total, sizes, prev, pager, next, jumper"
:total="page.total"
<!-- 查询按钮 -->
<el-form-item class="el-btn">
<el-button type="primary" icon="el-icon-search" @click="searchChange"> </el-button>
<el-button icon="el-icon-delete" @click="searchReset()"> </el-button>
</el-form-item>
</el-form>
</el-row>
<!-- 控件模块 -->
<el-row>
<div class="avue-crud__header">
<!-- 头部左侧按钮模块 -->
<div class="avue-crud__left">
<el-button type="primary" @click="AddInfo"
><el-icon><Plus /></el-icon></el-button
>
<el-button type="primary" @click="AddInfo"
><el-icon><Download /></el-icon></el-button
>
</el-pagination>
</div>
</el-row>
</div>
</basic-container>
<!-- 列表配置显示 -->
<edittablehead
@closce="showdrawer"
:drawerShow="drawerShow"
:columnList="details.columnList"
v-model="details.columnList"
></edittablehead>
</template>
<script setup>
import { ref, reactive, toRefs, computed, onMounted, nextTick, watch } from 'vue';
import { columnList } from '@/option/storagecost/Transferwarehousestatistics.js';
import {
$_getMyWarehouseList
} from '@/api/storagecost/index.js';
import { getDictionaryBiz } from '@/api/system/dict'; //
import { processRowProperty,setNodeHeight } from '@/utils/util';
import functions from '@/utils/functions.js';
import { ElMessageBox,ElMessage } from 'element-plus';
import { downloadXls } from '@/utils/util';
import { useStore } from 'vuex';
import dayjs from 'dayjs';
const $router = useRouter();//
const $useStore = useStore();//
const $route = useRoute();//
const queryTop=ref({})
const warehouseList=ref([])
const monthList=ref([])
const details = reactive({
/** 是否开启搜索 */
search: false,
/** 表格搜索条件 */
query: {},
/** 时间快捷选择设置 */
shortcuts: [
{
text: '最近一周',
value: () => {
const end = new Date();
const start = new Date();
start.setTime(start.getTime() - 3600 * 1000 * 24 * 7);
return [start, end];
},
},
{
text: '最近一个月',
value: () => {
const end = new Date();
const start = new Date();
start.setTime(start.getTime() - 3600 * 1000 * 24 * 30);
return [start, end];
},
},
{
text: '最近三个月',
value: () => {
const end = new Date();
const start = new Date();
start.setTime(start.getTime() - 3600 * 1000 * 24 * 90);
return [start, end];
},
<!-- 头部右侧按钮模块 -->
<div class="avue-crud__right">
<el-button icon="el-icon-refresh" @click="searchChangeS" circle></el-button>
<el-button icon="Operation" @click="showdrawer(true)" circle></el-button>
<el-button icon="Search" @click="searchHide" circle></el-button>
</div>
</div>
</el-row>
<!-- 首页表格 -->
<el-row>
<!-- 列表模块 -->
<tablecmt
class="tableNode"
:columnList="details.columnList"
:tableData="data"
:loading="loadingObj.list"
@inputTxt="inputsc"
@timeCheck="timesc"
@btnCheck="btnsc"
@selectCheck="selectsc"
@selection="selectionChange"
>
<template #default="slotProps">
<template v-if="slotProps.scope.column.label === '操作'">
<div class="ElBtnClass">
<el-button @click="view(slotProps.scope)">查看</el-button>
</div>
</template>
</template>
</tablecmt>
</el-row>
<!-- 分页模块 -->
<el-row class="el-fy">
<div class="avue-crud__pagination flex-c-sb" style="width: 100%">
<div></div>
<el-pagination
align="right"
background
@size-change="sizeChange"
@current-change="currentChange"
:current-page="page.currentPage"
:page-sizes="[30, 50, 80, 120]"
:page-size="page.pageSize"
layout="total, sizes, prev, pager, next, jumper"
:total="page.total"
>
</el-pagination>
</div>
</el-row>
</div>
</basic-container>
<!-- 列表配置显示 -->
<edittablehead
@closce="showdrawer"
:drawerShow="drawerShow"
:columnList="details.columnList"
v-model="details.columnList"
></edittablehead>
</template>
<script setup>
import { ref, reactive, toRefs, computed, onMounted, nextTick, watch } from 'vue';
import { columnList } from '@/option/storagecost/Transferwarehousestatistics.js';
import { $_getMyWarehouseList } from '@/api/storagecost/index.js';
import { getDictionaryBiz } from '@/api/system/dict'; //
import { processRowProperty, setNodeHeight } from '@/utils/util';
import { ElMessageBox, ElMessage } from 'element-plus';
import { downloadXls } from '@/utils/util';
import { useStore } from 'vuex';
import dayjs from 'dayjs';
const $router = useRouter(); //
const $useStore = useStore(); //
const $route = useRoute(); //
const queryTop = ref({});
const warehouseList = ref([]);
const monthList = ref([]);
const details = reactive({
/** 是否开启搜索 */
search: false,
/** 表格搜索条件 */
query: {},
/** 时间快捷选择设置 */
shortcuts: [
{
text: '最近一周',
value: () => {
const end = new Date();
const start = new Date();
start.setTime(start.getTime() - 3600 * 1000 * 24 * 7);
return [start, end];
},
],
/** 列表 */
columnList,
/** 列表数据 */
data: [],
/** 页面loading */
loadingObj: {
/** 列表加载loading */
list: false,
packageListLoading: false,
},
/** 列表复选框选中的数据 */
selectionList: [],
/** 是否显示设置表格 */
drawerShow: false,
/** 分页参数 */
page: {
currentPage: 1,
pageSize: 50,
total: 0,
},
/** 弹出层显示 */
popUpShow: {
/** 包件明细 */
packageOrderListlVisited: false,
/** 二维码 */
QRCodeVisible: false,
/** 修改客户信息 */
editClientInfoVisible: false,
{
text: '最近一个月',
value: () => {
const end = new Date();
const start = new Date();
start.setTime(start.getTime() - 3600 * 1000 * 24 * 30);
return [start, end];
},
},
/** 列表Dom节点 */
listNode: '',
form: {},
/** 全屏 */
fullscreenObj: {
/** 包明细 */
packageOrderListlVisited: false,
{
text: '最近三个月',
value: () => {
const end = new Date();
const start = new Date();
start.setTime(start.getTime() - 3600 * 1000 * 24 * 90);
return [start, end];
},
},
});
const {
search,
query,
shortcuts,
data,
loadingObj,
selectionList,
drawerShow,
page,
trickleLoadingPage,
zeroAdditionalRecordingInfo,
popUpShow,
recorddata,
} = toRefs(details);
],
/** 列表 */
columnList,
/** 展开列表控件 */
const showdrawer = _flag => {
details.drawerShow = _flag;
};
/** 表格表头输入框搜索 */
const inputsc = (index, row) => {
details.query[row.prop] = index;
processRowProperty(index, row, details);
test(details.query);
};
//
const test=(val)=>{
/** 列表数据 */
data: [],
/** 页面loading */
loadingObj: {
/** 列表加载loading */
list: false,
packageListLoading: false,
},
/** 列表复选框选中的数据 */
selectionList: [],
/** 是否显示设置表格 */
drawerShow: false,
/** 分页参数 */
page: {
currentPage: 1,
pageSize: 50,
total: 0,
},
/** 弹出层显示 */
popUpShow: {
/** 包件明细 */
packageOrderListlVisited: false,
/** 二维码 */
QRCodeVisible: false,
/** 修改客户信息 */
editClientInfoVisible: false,
},
/** 列表Dom节点 */
listNode: '',
form: {},
/** 全屏 */
fullscreenObj: {
/** 包明细 */
packageOrderListlVisited: false,
},
});
const {
search,
query,
shortcuts,
data,
loadingObj,
selectionList,
drawerShow,
page,
trickleLoadingPage,
zeroAdditionalRecordingInfo,
popUpShow,
recorddata,
} = toRefs(details);
/** 展开列表控件 */
const showdrawer = _flag => {
details.drawerShow = _flag;
};
/** 表格表头输入框搜索 */
const inputsc = (index, row) => {
details.query[row.prop] = index;
processRowProperty(index, row, details);
test(details.query);
};
//
const test = val => {};
/** 表格表头时间选择 */
const timesc = (index, row) => {
console.log(index, row);
if (!!index) {
index = dayjs(index).format('YYYY-MM-DD');
}
/** 表格表头时间选择 */
const timesc = (index, row) => {
console.log(index, row);
if (!!index) {
index = dayjs(index).format('YYYY-MM-DD');
}
details.query[row.prop] = index;
if (!index) {
delete details.query[row.prop];
details.query[row.prop] = index;
if (!index) {
delete details.query[row.prop];
}
};
/** 表格表头输入框搜索 */
const btnsc = val => {
console.log(val);
};
/** 表格表头下拉框选择 */
const selectsc = (index, row) => {
processRowProperty(index, row, details);
};
/** 表格表头复选框选择 */
const selectionChange = list => {
console.log(list);
details.selectionList = list;
};
//
const searchChange = () => {
if (queryTop.value.warehouse?.length) {
queryTop.value.warehouseName = queryTop.value.warehouse.join(',');
} else {
delete details.query.warehouseName;
delete queryTop.value.warehouseName;
}
if (queryTop.value.costSettlementMonth) {
if (!queryTop.value.costSettlementYear) {
ElMessage({
message: '请选择年份',
type: 'warning',
});
return;
}
};
/** 表格表头输入框搜索 */
const btnsc = val => {
console.log(val);
};
/** 表格表头下拉框选择 */
const selectsc = (index, row) => {
processRowProperty(index, row, details);
};
/** 表格表头复选框选择 */
const selectionChange = list => {
console.log(list);
details.selectionList = list;
};
//
const searchChange = () => {
details.search = false; //
};
}
details.query = { ...details.query, ...queryTop.value };
delete details.query.warehouse; //
onLoad();
};
//
const sizeChange = val => {
details.page.pageSize = val;
@ -284,31 +303,31 @@ const currentChange = val => {
details.page.currentPage = val;
onLoad();
};
//
const searchChangeS = () => {
details.search = false; //
};
//
const searchHide = () => {
console.log(details);
details.search = !details.search;
const _node = document.querySelector('.tableNode');
setNodeHeight(_node, '', true);
};
//
function updateDictionary(targetArray, dictionaryType) {
getDictionaryBiz(dictionaryType).then(res => {
console.log(res, '字典');
res.data.data.forEach(item => {
targetArray.push({
value: item.dictKey,
label: item.dictValue,
});
//
const searchChangeS = () => {
details.search = false; //
};
//
const searchHide = () => {
console.log(details);
details.search = !details.search;
const _node = document.querySelector('.tableNode');
setNodeHeight(_node, '', true);
};
//
function updateDictionary(targetArray, dictionaryType) {
getDictionaryBiz(dictionaryType).then(res => {
console.log(res, '字典');
res.data.data.forEach(item => {
targetArray.push({
value: item.dictKey,
label: item.dictValue,
});
});
}
//
const monthFn = () => {
});
}
//
const monthFn = () => {
for (let i = 0; i < 12; i++) {
monthList.value.push({
value: i + 1,
@ -316,7 +335,7 @@ const currentChange = val => {
});
}
};
//
//
const MyWarehouseList = () => {
$_getMyWarehouseList().then(res => {
console.log(res, '仓库列表');
@ -329,44 +348,43 @@ const MyWarehouseList = () => {
});
};
//
const onLoad=()=>{
const onLoad = () => {
}
};
const PageOnload = () => {
onLoad(); //
MyWarehouseList(); //
monthFn()
monthFn();
};
//
PageOnload();
//
</script>
<style scoped lang="scss">
.ElBtnClass button {
border: none;
padding: 0;
background-color: transparent;
}
:deep(.el-card) {
height: 100%;
}
:deep(.el-card__body) {
height: 100%;
display: flex;
flex-direction: column;
}
.el-fy {
flex: 1;
display: flex;
align-items: flex-end;
margin-bottom: 10px;
}
.avue-crud {
height: 100%;
display: flex;
flex-direction: column;
}
</style>
//
</script>
<style scoped lang="scss">
.ElBtnClass button {
border: none;
padding: 0;
background-color: transparent;
}
:deep(.el-card) {
height: 100%;
}
:deep(.el-card__body) {
height: 100%;
display: flex;
flex-direction: column;
}
.el-fy {
flex: 1;
display: flex;
align-items: flex-end;
margin-bottom: 10px;
}
.avue-crud {
height: 100%;
display: flex;
flex-direction: column;
}
</style>

6
src/views/cost/storagecost/Warehouserentalmanagement.vue

@ -424,6 +424,12 @@ const currentChange = val => {
const searchChangeS = () => {
details.search = false; //
};
const searchReset=() => {
details.query = {};
queryTop.value={}
details.data=[]
onLoad();
}
//
const searchHide = () => {
console.log(details);

2104
src/views/desk/DataBoard.vue

File diff suppressed because it is too large Load Diff

66
src/views/distribution/artery/TripartiteTransfer.vue

@ -164,6 +164,11 @@
>
</el-button>
<!-- 取消配载 -->
<!-- <el-button type="primary" icon="CircleClose" @click="handleCancelCarsLoad">
取消配载
</el-button> -->
</div>
<!-- 头部右侧按钮模块 -->
<div class="avue-crud__right">
@ -490,6 +495,7 @@ import {
} from '@/api/distribution/TripartiteTransfer.js';
import {
postFindLoadingListData,
postCancelCarsLoadByLoadId,
postRemoveCarsLoadScan,
postUpdateLoadScanFinalNodeIdById,
} from '@/api/distribution/VehicleStowage';
@ -1258,6 +1264,66 @@ const handleSubmitCloseAnAccount = async () => {
}
};
/** 取消配载 */
const handleCancelCarsLoad = () => {
if (!ChecksWhetherTheWarehouseIsSelected())
return ElMessage.warning('多仓权限无法操作,请选择仓库');
if (details.selectionList.length === 0) {
return ElMessage({
message: '请选择需要取消的数据',
type: 'warning',
});
} else if (details.selectionList.length !== 1) {
return ElMessage({
message: '仅支持单条数据操作',
type: 'warning',
});
}
ElMessageBox.confirm('确认取消配载吗?', '提示', {
confirmButtonText: '确认',
cancelButtonText: '取消',
type: 'warning',
}).then(async () => {
const ids = [];
const _flag = details.selectionList.every(val => {
ids.push(val.id);
console.log('val :>> ', val);
return Number(val.loadStatus) === 0;
});
if (!_flag)
return ElMessage({
message: '车辆已发车, 无法取消配载计划',
type: 'warning',
});
try {
details.loadingObj.pageLoading = true;
const submitData = {
loadId: ids.join(','),
startCarType: '1',
};
const res = await postCancelCarsLoadByLoadId(submitData);
const { code } = res.data;
if (code !== 200) {
return;
}
ElMessage({
type: 'success',
message: '取消配载成功',
});
initOnload();
} catch (error) {
console.log('error :>> ', error);
} finally {
details.loadingObj.pageLoading = false;
}
});
};
/**
* 是否开启床车明细全屏
* @params(_type) 开启或关闭

2
src/views/distribution/artery/VehicleStowageDetails.vue

@ -1061,7 +1061,7 @@ const handleCostApportionments = async () => {
for (let i = 0; i < details.oldData.length; i++) {
const value = details.oldData[i];
if (!value.checkUserName) {
if (Number(value.checkStatus) === 0) {
_flag = true;
break;
}

8
src/views/distribution/deliverylist/distributionDeliveryList.vue

@ -1058,13 +1058,17 @@ export default {
//
const currentDate = dayjs();
//
const startDate = currentDate.subtract(1, 'month');
//
const startDate = currentDate.startOf('month');
//
const endDate = currentDate.endOf('month');
// 'YYYY-MM-DD'
const formatDate = date => date.format('YYYY-MM-DD');
this.Deliverydate = [];
this.Deliverydate[0] = formatDate(startDate); //
this.Deliverydate[1] = formatDate(currentDate); //
this.Deliverydate[1] = formatDate(endDate); //
},
async onLoad(page, params = {}) {
this.loading = true;
if (this.currentdate) {

18
src/views/distribution/deliverylist/distributionDeliveryListdis.vue

@ -338,7 +338,7 @@ export default {
data() {
return {
height: 0,
currentdate:true,
currentdate: true,
//
title: '',
//
@ -989,22 +989,24 @@ export default {
Getcurrentdate() {
//
const currentDate = dayjs();
//
const startDate = currentDate.subtract(1, 'month');
//
const startDate = currentDate.startOf('month');
//
const endDate = currentDate.endOf('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); //
this.query.taskTimeArr[1] = formatDate(endDate); //
},
async onLoad(page, params = {}) {
async onLoad(page, params = {}) {
this.loading = true;
this.query.type = '1';
if(this.currentdate){
await this.Getcurrentdate()
if (this.currentdate) {
await this.Getcurrentdate();
}
const submitData = { ...params, ...this.query };
if (getObjType(this.query.taskTimeArr) === 'array') {

20
src/views/distribution/deliverylist/distributionDeliveryListmar.vue

@ -249,7 +249,7 @@ export default {
data() {
return {
height: 0,
currentdate:true,
currentdate: true,
dydialogVisible: false,
//
title: '',
@ -778,21 +778,23 @@ export default {
Getcurrentdate() {
//
const currentDate = dayjs();
//
const startDate = currentDate.subtract(1, 'month');
//
const startDate = currentDate.startOf('month');
//
const endDate = currentDate.endOf('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); //
this.query.taskTimeArr[1] = formatDate(endDate); //
},
async onLoad(page, params = {}) {
async onLoad(page, params = {}) {
this.loading = true;
this.query.type = '2';
if(this.currentdate){
await this.Getcurrentdate()
if (this.currentdate) {
await this.Getcurrentdate();
}
const submitData = { ...params, ...this.query };
if (getObjType(this.query.taskTimeArr) === 'array') {
@ -829,7 +831,7 @@ export default {
this.page.total = data.total || 0;
this.data = data.records || [];
this.loading = false;
this.currentdate=false;
this.currentdate = false;
this.selectionClear();
});
getstatistics(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(

16
src/views/distribution/inventory/CreateOrder.vue

@ -228,7 +228,12 @@
<el-table
:data="details.shipperNameOptions"
style="width: 100%"
@row-click="handleChooseShipper"
@row-click="
(column, prop, order) => {
handleChooseShipper(column, prop, order);
handleFindPrice();
}
"
v-loading="details.loadingObj.consignerLoading"
>
<el-table-column prop="clientName" label="发货单位" width="130" />
@ -253,7 +258,12 @@
<el-table
:data="details.shipperMobileOptions"
style="width: 100%"
@row-click="handleChooseShipper"
@row-click="
(column, prop, order) => {
handleChooseShipper(column, prop, order);
handleFindPrice();
}
"
v-loading="details.loadingObj.consignerLoading"
>
<el-table-column prop="clientName" label="发货单位" width="130" />
@ -327,6 +337,7 @@
@row-click="
(column, prop, order) => {
handleChooseConsigner(column, prop, order);
handleFindPrice();
}
"
v-loading="details.loadingObj.consignerLoading"
@ -356,6 +367,7 @@
@row-click="
(column, prop, order) => {
handleChooseConsigner(column, prop, order);
handleFindPrice();
}
"
v-loading="details.loadingObj.consignerLoading"

6
src/views/distribution/inventory/delivery/distributionStockArticle.vue

@ -733,7 +733,13 @@ import { deepClone, setNodeHeight, hanleTextLineFeed } from '@/utils/util.js';
import { ElMessage, ElMessageBox } from 'element-plus';
import MultiConditionSearch from '@/components/MultiConditionSearch/MultiConditionSearch.vue';
const _newCol = deepClone(columnList);
for (let i = 0; i < _newCol.length; i++) {
const val = _newCol[i];
if (val.label !== '超时状态') continue;
_newCol.splice(i, 1);
break;
}
export default {
components: {
MultiConditionSearch,

7
src/views/distribution/inventory/delivery/distributionStockArticleDiscuss.vue

@ -471,6 +471,13 @@ import { columnList } from '@/option/distribution/distributionStockArticleSelf';
import { deepClone, hanleTextLineFeed } from '@/utils/util.js';
import { ElMessage, ElMessageBox } from 'element-plus';
const _newCol = deepClone(columnList);
for (let i = 0; i < _newCol.length; i++) {
const val = _newCol[i];
if (val.label !== '超时状态') continue;
_newCol.splice(i, 1);
break;
}
export default {
data() {
return {

7
src/views/distribution/inventory/delivery/distributionStockArticleMarket.vue

@ -464,6 +464,13 @@ import {
handleSelectQuery,
} from '@/utils/util.js';
const _newCol = deepClone(columnList);
for (let i = 0; i < _newCol.length; i++) {
const val = _newCol[i];
if (val.label !== '超时状态') continue;
_newCol.splice(i, 1);
break;
}
export default {
data() {

42
src/views/distribution/inventory/delivery/distributionStockArticleSelf.vue

@ -121,6 +121,7 @@
:columnList="columnList"
:tableData="data"
:loading="loading"
:tableRowClassName="handleSetRowClassName"
@inputTxt="inputsc"
@timeCheck="timesc"
@btnCheck="btnsc"
@ -783,6 +784,25 @@ export default {
downloadXls(res.data, '自提订单数据.xlsx');
});
},
handleSetRowClassName(row, rowIndex) {
console.log('row.warehouseEntryTime :>> ', row.warehouseEntryTime);
if (!row.warehouseEntryTime) return 'timeOut';
// -- , 24, 2
// -
const time = Date.now() - new Date(row.warehouseEntryTime).getTime();
console.log('time :>> ', time);
//
const WarningTime = 1000 * 60 * 60 * 24 * 2 - 1000 * 60 * 60 * 2;
console.log('WarningTime :>> ', WarningTime);
//
const timeOut = 1000 * 60 * 60 * 24 * 2;
console.log('timeOut :>> ', timeOut);
if (time > timeOut) return 'timeOut';
else if (time > WarningTime && time < timeOut) return 'WarningTime';
},
/*getMethodName(row,num){
console.log("名称选择事件",row);
switch (num) {
@ -1619,6 +1639,7 @@ export default {
item.availableQuantity = nuMap[item.availableQuantity] || item.availableQuantity;
item.notReceived = parseInt(item.totalNumber) - parseInt(item.incomingNum);
item.isZeroName = Number(item.isZero) === 0 ? '否' : '是';
item.isTimeOutName = Number(item.isTimeOut) === 0 ? '未超时' : '超时';
item.completeSetName = Number(item.completeSet) === 2 ? '已齐套' : '未齐套';
}
@ -1825,4 +1846,25 @@ export default {
.el_textBtn {
font-weight: bold;
}
//
:deep(.el-table) {
tr {
&.WarningTime {
color: #e6a23c !important;
.el-text {
color: #e6a23c !important;
}
}
&.timeOut {
color: #f56c6c !important;
.el-text {
color: #f56c6c !important;
}
}
}
}
</style>

18
src/views/distribution/inventory/distrilbutionBillLadingList.vue

@ -271,6 +271,7 @@ export default {
data() {
return {
Deliverytime: [], //
currentdate: true,
columnList: [
{
prop: '',
@ -1129,9 +1130,25 @@ export default {
let formattedDate = formatter.format(date);
return formattedDate.replace(/\//g, '-');
},
Getcurrentdate() {
//
const currentDate = dayjs();
//
const startDate = currentDate.startOf('month');
//
const endDate = currentDate.endOf('month');
// 'YYYY-MM-DD'
const formatDate = date => date.format('YYYY-MM-DD');
this.Deliverytime = [];
this.Deliverytime[0] = formatDate(startDate); //
this.Deliverytime[1] = formatDate(endDate); //
},
async onLoad(page, params = {}) {
try {
this.loading = true;
if (this.currentdate) {
await this.Getcurrentdate();
}
if (this.stockupDate?.length) {
let startDate = this.stockupDate[0];
let entDate = this.stockupDate[1];
@ -1205,6 +1222,7 @@ export default {
console.log('error :>> ', error);
} finally {
this.loading = false;
this.currentdate = false;
}
},
},

361
src/views/reportforms/DeliveryDetailsReport.vue

@ -0,0 +1,361 @@
<template>
<basic-container>
<!-- 首页表格 -->
<div class="avue-crud" v-loading="Pageloading" element-loading-text="Loading...">
<!-- 搜索模块 -->
<div v-h5uShow="search">
<!-- 查询模块 -->
<el-form :inline="true" :model="TopQuery" class="el-fr-d">
<!-- 查询按钮 -->
<el-form-item class="el-btn">
<!-- <el-button type="primary" icon="el-icon-search" @click="searchChange"> </el-button> -->
<el-button icon="el-icon-delete" @click="searchReset()"> </el-button>
</el-form-item>
</el-form>
</div>
<!-- 控件模块 -->
<el-row>
<div class="avue-crud__header">
<!-- 头部左侧按钮模块 -->
<div class="avue-crud__left">
<el-button type="primary" @click="exportReport"
><el-icon><Download /></el-icon></el-button
>
</div>
<!-- 头部右侧按钮模块 -->
<div class="avue-crud__right">
<el-button icon="el-icon-refresh" @click="searchChangeS" circle></el-button>
<el-button icon="Operation" @click="showdrawer(true)" circle></el-button>
<el-button icon="Search" @click="searchHide" circle></el-button>
</div>
</div>
</el-row>
<!-- 首页表格 -->
<el-row>
<!-- 列表模块 -->
<tablecmt
class="tableNode"
:columnList="details.columnList"
:tableData="data"
:loading="loadingObj.list"
@inputTxt="inputsc"
@timeCheck="timesc"
@selectCheck="selectsc"
@selection="selectionChange"
>
<template #default="slotProps">
<template v-if="slotProps.scope.column.label === '操作'">
<div class="ElBtnClass">
<el-text @click="view(slotProps.scope)">查看</el-text>
</div>
</template>
</template>
</tablecmt>
</el-row>
<!-- 分页模块 -->
<el-row class="el-fy">
<div class="avue-crud__pagination flex-c-sb" style="width: 100%">
<div></div>
<el-pagination
align="right"
background
@size-change="sizeChange"
@current-change="currentChange"
:current-page="page.currentPage"
:page-sizes="[30, 50, 80, 120]"
:page-size="page.pageSize"
layout="total, sizes, prev, pager, next, jumper"
:total="page.total"
>
</el-pagination>
</div>
</el-row>
</div>
</basic-container>
<!-- 列表配置显示 -->
<edittablehead
@setcolum="setnewcolum"
@closce="showdrawer"
:drawerShow="drawerShow"
:columnList="details.columnList"
v-model="details.columnList"
></edittablehead>
</template>
<script>
//
export default {
name: '/reportforms/DeliveryDetailsReport',
};
</script>
<script setup>
import { ref, reactive, toRefs, computed, onMounted, nextTick, watch } from 'vue';
import { processRowPropertyName, setNodeHeight } from '@/utils/util';
import { columnList } from '@/option/reportforms/DeliveryDetailsReport.js';
import { ElMessageBox, ElMessage } from 'element-plus';
import { downloadXls, handleClearTableQuery } from '@/utils/util';
import { useStore } from 'vuex';
import { getDictionaryBiz } from '@/api/system/dict';
import dayjs from 'dayjs';
import { $_getDeliveryDetailsReport, $_expDeliveryDetailsReport } from '@/api/reportforms/index.js';
const $router = useRouter(); //
const $useStore = useStore(); //
const $route = useRoute(); //
const TopQuery = ref({}); //
const Pageloading = ref(false);
const details = reactive({
/** 是否开启搜索 */
search: false,
/** 表格搜索条件 */
query: {},
defaultTime2: [new Date(2000, 1, 1, 0, 0, 0), new Date(2000, 2, 1, 23, 59, 59)], // '12:00:00', '08:00:00'
/** 时间快捷选择设置 */
shortcuts: [
{
text: '最近一周',
value: () => {
const end = new Date();
const start = new Date();
start.setTime(start.getTime() - 3600 * 1000 * 24 * 7);
return [start, end];
},
},
{
text: '最近一个月',
value: () => {
const end = new Date();
const start = new Date();
start.setTime(start.getTime() - 3600 * 1000 * 24 * 30);
return [start, end];
},
},
{
text: '最近三个月',
value: () => {
const end = new Date();
const start = new Date();
start.setTime(start.getTime() - 3600 * 1000 * 24 * 90);
return [start, end];
},
},
],
/** 时间选择器数据 */
stockupDate: [],
/** 列表 */
columnList,
/** 列表数据 */
data: [{}],
/** 页面loading */
loadingObj: {
/** 列表加载loading */
list: false,
packageListLoading: false,
},
/** 列表复选框选中的数据 */
selectionList: [],
/** 是否显示设置表格 */
drawerShow: false,
/** 分页参数 */
page: {
currentPage: 1,
pageSize: 50,
total: 0,
},
/** 弹出层显示 */
popUpShow: {
/** 包件明细 */
packageOrderListlVisited: false,
/** 二维码 */
QRCodeVisible: false,
/** 修改客户信息 */
editClientInfoVisible: false,
},
/** 列表Dom节点 */
listNode: '',
form: {},
/** 全屏 */
fullscreenObj: {
/** 包明细 */
packageOrderListlVisited: false,
},
});
const {
search,
query,
shortcuts,
stockupDate,
data,
loadingObj,
selectionList,
drawerShow,
page,
trickleLoadingPage,
zeroAdditionalRecordingInfo,
popUpShow,
recorddata,
defaultTime2,
} = toRefs(details);
/** 展开列表控件 */
const showdrawer = _flag => {
details.drawerShow = _flag;
};
/** 表格表头输入框搜索 */
const inputsc = (index, row) => {
processRowPropertyName(index, row, details.query);
onLoad();
};
/** 表格表头时间选择 */
const timesc = (index, row) => {
console.log(index, row);
if (!!index) {
index = dayjs(index).format('YYYY-MM-DD');
}
details.query[row.prop] = index;
if (!index) {
delete details.query[row.prop];
}
onLoad();
};
/** 表格表头下拉框选择 */
const selectsc = (index, row) => {
processRowPropertyName(index, row, details.query);
onLoad();
};
/** 表格表头复选框选择 */
const selectionChange = list => {
console.log(list);
details.selectionList = list;
};
//
const searchChange = () => {
onLoad();
};
//
const sizeChange = val => {
details.page.pageSize = val;
onLoad();
};
/** 页码改变执行的回调 */
const currentChange = val => {
details.page.currentPage = val;
onLoad();
};
//
const searchChangeS = () => {
details.search = false; //
onLoad();
};
//
const searchReset = () => {
details.query = {};
details.page.currentPage = 1;
handleClearTableQuery(details.columnList);
onLoad();
};
//
const searchHide = () => {
console.log(details);
details.search = !details.search;
const _node = document.querySelector('.tableNode');
setNodeHeight(_node, '', true);
};
//
function updateDictionary(targetArray, dictionaryType) {
getDictionaryBiz(dictionaryType).then(res => {
console.log(res, '字典');
res.data.data.forEach(item => {
targetArray.push({
value: item.dictKey,
label: item.dictValue,
});
});
});
}
//
const onLoad = async () => {
console.log($route, '地址栏数据');
try {
details.loadingObj.list = true;
let submit = {
current: details.page.currentPage,
size: details.page.pageSize,
...$route.query,
...details.query,
};
let res = await $_getDeliveryDetailsReport(submit);
const { code, data } = res.data;
if (code != 200) {
return;
}
details.page.total = data.total;
details.data = data.records;
console.log(res, '列表数据');
} catch (e) {
console.log(e);
} finally {
details.loadingObj.list = false;
}
};
onLoad();
//
const exportReport = () => {
ElMessageBox.confirm('是否导出报表?', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
})
.then(() => {
Pageloading.value = true;
let data = {
...$route.query,
...details.query,
};
delete data.name;
$_expDeliveryDetailsReport(data)
.then(res => {
downloadXls(res.data, `${$route.query.name}配送统计报表数据详情.xlsx`);
})
.catch(() => {})
.finally(() => {
Pageloading.value = false;
});
})
.catch(() => {});
};
</script>
<style scoped lang="scss">
.ElBtnClass button {
border: none;
padding: 0;
background-color: transparent;
}
:deep(.el-card) {
height: 100%;
}
:deep(.el-card__body) {
height: 100%;
display: flex;
flex-direction: column;
}
.el-fy {
flex: 1;
display: flex;
align-items: flex-end;
}
.avue-crud {
height: 100%;
display: flex;
flex-direction: column;
}
</style>

565
src/views/reportforms/DeliveryStatisticsReport.vue

@ -0,0 +1,565 @@
<template>
<basic-container>
<!-- 首页表格 -->
<div class="avue-crud" v-loading="Pageloading" element-loading-text="Loading...">
<!-- 搜索模块 -->
<div v-h5uShow="search">
<!-- 查询模块 -->
<el-form :inline="true" :model="TopQuery" class="el-fr-d">
<el-form-item label="仓库">
<el-select
multiple
v-model="TopQuery.warehouseNameRange"
filterable
clearable
collapse-tags
popper-class="custom-header"
:max-collapse-tags="1"
placeholder="多选仓库搜索"
style="width: 240px"
>
<template #header>
<el-checkbox
v-model="checkAll"
:indeterminate="indeterminate"
@change="handleCheckAll"
>
全选
</el-checkbox>
</template>
<el-option
v-for="item in warehouseList"
:key="item.value"
:label="item.label"
:value="item.value"
/>
</el-select>
</el-form-item>
<el-form-item label="配送类型">
<el-select
v-model="TopQuery.deliveryType"
clearable
popper-class="custom-header"
placeholder="请选择配送类型"
style="width: 240px"
>
<el-option
v-for="item in DeliveryTypeList"
:key="item.value"
:label="item.label"
:value="item.value"
/>
</el-select>
</el-form-item>
<el-form-item label="配送日期">
<el-date-picker
v-model="TopQuery.time"
type="daterange"
unlink-panels
range-separator="至"
start-placeholder="开始时间"
end-placeholder="结束时间"
:shortcuts="shortcuts"
format="YYYY-MM-DD"
value-format="YYYY-MM-DD"
/>
</el-form-item>
<!-- 查询按钮 -->
<el-form-item class="el-btn">
<el-button type="primary" icon="el-icon-search" @click="searchChange"> </el-button>
<el-button icon="el-icon-delete" @click="searchReset()"> </el-button>
</el-form-item>
</el-form>
</div>
<!-- 控件模块 -->
<el-row>
<div class="avue-crud__header">
<!-- 头部左侧按钮模块 -->
<div class="avue-crud__left">
<el-button type="primary" @click="exportReport"
><el-icon><Download /></el-icon></el-button
>
</div>
<!-- 头部右侧按钮模块 -->
<div class="avue-crud__right">
<el-button icon="el-icon-refresh" @click="searchChangeS" circle></el-button>
<el-button icon="Operation" @click="showdrawer(true)" circle></el-button>
<el-button icon="Search" @click="searchHide" circle></el-button>
</div>
</div>
</el-row>
<!-- 首页表格 -->
<el-row>
<!-- 列表模块 -->
<tablecmt
class="tableNode"
:columnList="details.columnList"
:tableData="data"
:loading="loadingObj.list"
@inputTxt="inputsc"
@timeCheck="timesc"
@selectCheck="selectsc"
@selection="selectionChange"
>
<template #default="slotProps">
<template
v-if="
['审核率', '签收率', '库存品签收率', '计划准确率'].includes(
slotProps.scope.column.label
)
"
>
<span
:class="getColorClass(slotProps.scope.column.label, slotProps.scope.row)"
:key="slotProps.scope.column.label"
>
{{ getRateValue(slotProps.scope.column.label, slotProps.scope.row) }}%
</span>
</template>
<template v-else-if="slotProps.scope.column.label === '操作'">
<div class="ElBtnClass">
<el-text @click="view(slotProps.scope.row)">查看</el-text>
</div>
</template>
</template>
</tablecmt>
</el-row>
<!-- 分页模块 -->
<!-- <el-row class="el-fy">
<div class="avue-crud__pagination flex-c-sb" style="width: 100%">
<div></div>
<el-pagination
align="right"
background
@size-change="sizeChange"
@current-change="currentChange"
:current-page="page.currentPage"
:page-sizes="[30, 50, 80, 120]"
:page-size="page.pageSize"
layout="total, sizes, prev, pager, next, jumper"
:total="page.total"
>
</el-pagination>
</div>
</el-row> -->
</div>
</basic-container>
<!-- 列表配置显示 -->
<edittablehead
@setcolum="setnewcolum"
@closce="showdrawer"
:drawerShow="drawerShow"
:columnList="details.columnList"
v-model="details.columnList"
></edittablehead>
</template>
<script setup>
import { ref, reactive, toRefs, computed, onMounted, nextTick, watch } from 'vue';
import { processRowPropertyName, setNodeHeight } from '@/utils/util';
import { columnList } from '@/option/reportforms/DeliveryStatisticsReport.js';
import { ElMessageBox, ElMessage } from 'element-plus';
import { downloadXls, handleClearTableQuery } from '@/utils/util';
import {
$_getDeliveryStatisticsReport,
$_expDeliveryStatisticsReport,
} from '@/api/reportforms/index.js';
import { useStore } from 'vuex';
import { getDictionaryBiz } from '@/api/system/dict';
import dayjs from 'dayjs';
import { $_getMyWarehouseList } from '@/api/reportforms/index.js';
const $router = useRouter(); //
const $useStore = useStore(); //
const $route = useRoute(); //
const checkAll = ref(false);
const Pageloading = ref(false);
const indeterminate = ref(false);
const warehouseList = ref([]);
const queryCarn = ref({});
const DeliveryTypeList = ref([
{
label: '全部',
value: '商配,市配',
},
{
label: '商配',
value: '商配',
},
{
label: '市配',
value: '市配',
},
]);
const TopQuery = ref({
warehouseNameRange: [],
time: [],
}); //
const details = reactive({
/** 是否开启搜索 */
search: false,
/** 表格搜索条件 */
query: {},
defaultTime2: [new Date(2000, 1, 1, 0, 0, 0), new Date(2000, 2, 1, 23, 59, 59)], // '12:00:00', '08:00:00'
/** 时间快捷选择设置 */
shortcuts: [
{
text: '最近一周',
value: () => {
const end = new Date();
const start = new Date();
start.setTime(start.getTime() - 3600 * 1000 * 24 * 7);
return [start, end];
},
},
{
text: '最近一个月',
value: () => {
const end = new Date();
const start = new Date();
start.setTime(start.getTime() - 3600 * 1000 * 24 * 30);
return [start, end];
},
},
{
text: '最近三个月',
value: () => {
const end = new Date();
const start = new Date();
start.setTime(start.getTime() - 3600 * 1000 * 24 * 90);
return [start, end];
},
},
],
/** 时间选择器数据 */
stockupDate: [],
/** 列表 */
columnList,
/** 列表数据 */
data: [],
/** 页面loading */
loadingObj: {
/** 列表加载loading */
list: false,
packageListLoading: false,
},
/** 列表复选框选中的数据 */
selectionList: [],
/** 是否显示设置表格 */
drawerShow: false,
/** 分页参数 */
page: {
currentPage: 1,
pageSize: 50,
total: 0,
},
/** 弹出层显示 */
popUpShow: {
/** 包件明细 */
packageOrderListlVisited: false,
/** 二维码 */
QRCodeVisible: false,
/** 修改客户信息 */
editClientInfoVisible: false,
},
/** 列表Dom节点 */
listNode: '',
form: {},
/** 全屏 */
fullscreenObj: {
/** 包明细 */
packageOrderListlVisited: false,
},
});
const {
search,
query,
shortcuts,
stockupDate,
data,
loadingObj,
selectionList,
drawerShow,
page,
trickleLoadingPage,
zeroAdditionalRecordingInfo,
popUpShow,
recorddata,
defaultTime2,
} = toRefs(details);
/** 展开列表控件 */
const showdrawer = _flag => {
details.drawerShow = _flag;
};
/** 表格表头输入框搜索 */
const inputsc = (index, row) => {
processRowPropertyName(index, row, details.query);
searchChange();
};
/** 表格表头时间选择 */
const timesc = async (index, row) => {
console.log(index, row);
if (!!index) {
index = dayjs(index).format('YYYY-MM-DD');
}
details.query[row.prop] = index;
if (!index) {
delete details.query[row.prop];
}
};
/** 表格表头下拉框选择 */
const selectsc = (index, row) => {
processRowPropertyName(index, row, details.query);
searchChange();
};
/** 表格表头复选框选择 */
const selectionChange = list => {
console.log(list);
details.selectionList = list;
};
//
const searchChange = () => {
console.log(columnList, 'columnList');
//
if (TopQuery.value.warehouseNameRange?.length) {
queryCarn.value.warehouseName = TopQuery.value.warehouseNameRange.join(',');
} else {
delete queryCarn.value.warehouseName;
}
//
if (TopQuery.value.deliveryType) {
queryCarn.value.deliveryType = TopQuery.value.deliveryType;
columnList.find(item => item.prop == 'deliveryType').head = false;
} else {
delete queryCarn.value.deliveryType;
columnList.find(item => item.prop == 'deliveryType').head = true;
}
//
if (TopQuery.value.time?.length) {
queryCarn.value.startTaskTime = TopQuery.value.time[0]; //
queryCarn.value.endTaskTime = TopQuery.value.time[1]; //
} else {
delete queryCarn.value.startTaskTime;
delete queryCarn.value.endTaskTime;
}
onLoad();
};
//
const sizeChange = val => {
details.page.pageSize = val;
onLoad();
};
/** 页码改变执行的回调 */
const currentChange = val => {
details.page.currentPage = val;
onLoad();
};
//
const searchChangeS = () => {
details.search = false; //
onLoad();
};
//
const searchReset = () => {
details.query = {};
queryCarn.value = {};
TopQuery.value = {
time: [],
deliveryType: '',
warehouseNameRange: [],
};
handleClearTableQuery(details.columnList);
details.data = [];
};
//
const searchHide = () => {
console.log(details);
details.search = !details.search;
const _node = document.querySelector('.tableNode');
setNodeHeight(_node, '', true);
};
//
function updateDictionary(targetArray, dictionaryType) {
getDictionaryBiz(dictionaryType).then(res => {
console.log(res, '字典');
res.data.data.forEach(item => {
targetArray.push({
value: item.dictKey,
label: item.dictValue,
});
});
});
}
const handleCheckAll = val => {
console.log(val, 'val');
indeterminate.value = false;
if (val) {
TopQuery.value.warehouseNameRange = warehouseList.value.map(_ => _.value);
} else {
TopQuery.value.warehouseNameRange = [];
}
};
const Dictionaryinitialization = () => {
//
$_getMyWarehouseList().then(res => {
console.log(res, '仓库列表');
if (res.data.data.length) {
console.log(columnList, 'columnList');
res.data.data.forEach(item => {
warehouseList.value.push({
value: item.name,
label: item.name,
});
});
columnList.find(item => item.prop == 'warehouseName').checkarr = warehouseList.value;
}
});
};
Dictionaryinitialization();
//
const onLoad = async () => {
try {
details.loadingObj.list = true;
const submit = {
...details.query,
...queryCarn.value,
};
const res = await $_getDeliveryStatisticsReport(submit);
const { code, data } = res.data;
if (code !== 200) {
return;
}
//
const parsePercentage = value => (value ? Number(value.slice(0, -1)) : 0);
//
for (let i = 0; i < data.records.length; i++) {
const item = data.records[i];
item.reviewRate = parsePercentage(item.reviewRate);
item.signRate = parsePercentage(item.signRate);
item.signStockRate = parsePercentage(item.signStockRate);
item.planAccuracy = parsePercentage(item.planAccuracy);
}
details.data = data.records;
details.page.total = data.total;
} catch (e) {
console.error(e);
} finally {
details.loadingObj.list = false;
}
};
const getColorClass = (label, row) => {
const rateValue = getRateValue(label, row);
return rateValue === 100 ? 'rate-black' : 'rate-red';
};
const getRateValue = (label, row) => {
switch (label) {
case '审核率':
return row.reviewRate;
case '签收率':
return row.signRate;
case '库存品签收率':
return row.signStockRate;
case '计划准确率':
return row.planAccuracy;
default:
return 0;
}
};
//
const view = async row => {
let QueryData = {
deliveryType: row.deliveryType,
warehouseName: row.warehouseName,
name: `${row.warehouseName}-配送详情`,
};
$useStore.commit('DEL_ONCE_TAG', '/reportforms/DeliveryDetailsReport');
if (TopQuery.value.time?.length) {
QueryData.startTaskTime = dayjs(TopQuery.value.time[0]).format('YYYY-MM-DD HH:mm:ss'); //
QueryData.endTaskTime = dayjs(TopQuery.value.time[1]).format('YYYY-MM-DD HH:mm:ss'); //
}
$router.push({
path: '/reportforms/DeliveryDetailsReport',
query: {
...QueryData,
},
});
};
//
const exportReport = () => {
ElMessageBox.confirm('是否导出报表?', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
})
.then(() => {
Pageloading.value = true;
let data = {
...details.query,
...queryCarn.value,
};
$_expDeliveryStatisticsReport(data)
.then(res => {
downloadXls(res.data, `配送统计报表数据.xlsx`);
})
.catch(() => {})
.finally(() => {
Pageloading.value = false;
});
})
.catch(() => {});
};
</script>
<style scoped lang="scss">
.ElBtnClass button {
border: none;
padding: 0;
background-color: transparent;
}
:deep(.el-card) {
height: 100%;
}
:deep(.el-card__body) {
height: 100%;
display: flex;
flex-direction: column;
}
.el-fy {
flex: 1;
display: flex;
align-items: flex-end;
}
.avue-crud {
height: 100%;
display: flex;
flex-direction: column;
}
.el_textBtn {
color: #ff1100 !important ;
}
.rate-black {
color: black !important;
}
.rate-red {
color: red !important;
}
</style>

16
src/views/waybill/CreateZeroOrder.vue

@ -196,7 +196,12 @@
<el-table
:data="details.shipperNameOptions"
style="width: 100%"
@row-click="handleChooseShipper"
@row-click="
(column, prop, order) => {
handleChooseShipper(column, prop, order);
handleFindPrice();
}
"
v-loading="details.loadingObj.consignerLoading"
>
<el-table-column prop="clientName" label="发货单位" width="130" />
@ -221,7 +226,12 @@
<el-table
:data="details.shipperMobileOptions"
style="width: 100%"
@row-click="handleChooseShipper"
@row-click="
(column, prop, order) => {
handleChooseShipper(column, prop, order);
handleFindPrice();
}
"
v-loading="details.loadingObj.consignerLoading"
>
<el-table-column prop="clientName" label="发货单位" width="130" />
@ -295,6 +305,7 @@
@row-click="
(column, prop, order) => {
handleChooseConsigner(column, prop, order);
handleFindPrice();
}
"
v-loading="details.loadingObj.consignerLoading"
@ -324,6 +335,7 @@
@row-click="
(column, prop, order) => {
handleChooseConsigner(column, prop, order);
handleFindPrice();
}
"
v-loading="details.loadingObj.consignerLoading"

54
src/views/waybill/TemporaryStorageList.vue

@ -143,6 +143,7 @@
? loadingObj.haveDataList
: loadingObj.notHaveDataList
"
:tableRowClassName="handleSetRowClassName"
@inputTxt="inputsc"
@timeCheck="timesc"
@btnCheck="btnsc"
@ -150,7 +151,13 @@
@selection="selectionChange"
>
<template #default="slotProps">
<template v-if="slotProps.scope.column.label === '操作'">
<template v-if="slotProps.scope.column.label === '超时状态'">
<el-tag :class="Number(slotProps.scope.row.isTimeOut) === 0 ? 'green' : 'red'">
{{ slotProps.scope.row.isTimeOutName }}
</el-tag>
</template>
<template v-else-if="slotProps.scope.column.label === '操作'">
<el-text
v-if="permissionObj.TemporaryStorageList_packageDetail"
@click="handleShowPackageOrderList(slotProps.scope)"
@ -563,6 +570,7 @@ import {
downloadFileBase64,
handleClearTableQuery,
ChecksWhetherTheWarehouseIsSelected,
handleTranslationDataSeclect,
} from '@/utils/util';
import { columnList } from '@/option/waybill/TemporaryStorageList';
import { useRouter } from 'vue-router';
@ -1026,6 +1034,8 @@ const onLoad = async (params = {} as any, isRefresh?: boolean) => {
value.legacyStatusName = Number(value.legacyStatus) ? '是' : '否';
}
handleTranslationDataSeclect(data.records, details.columnList);
if (status === 'haveData') details.haveDataData = data.records;
else details.notHaveDataData = data.records;
details.page.total = data.total;
@ -1508,6 +1518,27 @@ const handleSubmitCreatePackage = async () => {
}
};
const date = new Date();
/** 设置表格行样式 */
const handleSetRowClassName = (row, rowIndex) => {
if (!row.createTime) return 'timeOut';
// -- , 24, 2
// -
const time = Date.now() - new Date(row.createTime).getTime();
//
const WarningTime = 1000 * 60 * 60 * 22;
//
const timeOut = 1000 * 60 * 60 * 24;
if (time > timeOut) return 'timeOut';
else if (time > WarningTime && time < timeOut) return 'WarningTime';
};
onActivated(() => {
console.log('activated');
console.log('this.$store :>> ', $store);
@ -1689,4 +1720,25 @@ onActivated(() => {
text-align: left !important;
}
}
//
:deep(.el-table) {
tr {
&.WarningTime {
color: #e6a23c !important;
.el-text {
color: #e6a23c !important;
}
}
&.timeOut {
color: #f56c6c !important;
.el-text {
color: #f56c6c !important;
}
}
}
}
</style>

46
src/views/waybill/orderPackageList.vue

@ -13,16 +13,17 @@
<template v-if="item.type === 'input'">
<div class="el_div_input">
<el-input
v-model.trim="query[item.prop]"
:placeholder="`请输入${item.label}`"
clearable
></el-input>
<!-- <el-icon class="el_dy_icon" @click="openDialog('运单号搜索', query.waybillNoList)"
><CirclePlusFilled
/></el-icon> -->
v-model.trim="query[item.prop]"
:placeholder="`请输入${item.label}`"
clearable
></el-input>
<el-icon
v-if="item.label == '订单自编号'"
class="el_dy_icon"
@click="openDialog('订单自编号搜索', query.orderCode)"
><CirclePlusFilled
/></el-icon>
</div>
</template>
<template v-else-if="item.type === 'time'">
@ -58,7 +59,6 @@
<el-button type="primary" icon="Printer" @click="handleBatchBarcode">
批量打印
</el-button>
<!-- <el-button @click="openDialog">打开搜索弹窗</el-button> -->
<!-- 批量入库 -->
<el-button
type="primary"
@ -281,12 +281,11 @@
:html="details.html"
/>
<MultiConditionSearch
v-model:modelValue="dialogVisible"
:title="popupTitle"
v-model:inputValue="searchInput"
@dialogSearchSubmit="handleSearchSubmit"
>
</MultiConditionSearch>
v-model:modelValue="dialogVisible"
:title="popupTitle"
v-model:inputValue="searchInput"
@dialogSearchSubmit="handleSearchSubmit"
/>
<Tableexportcomponent
:menuData="details.packageListColumnList"
:data="details.packageListData"
@ -339,18 +338,25 @@ const Tableexportcomponent = defineAsyncComponent(
() => import('@/components/Tableexportcomponent/Tableexportcomponent.vue')
);
const tcTableexport = ref(false);
const dialogVisible = ref(false);
const popupTitle = ref('搜索弹窗');
const searchInput = ref('');
const openDialog = () => {
const openDialog = (title, input) => {
popupTitle.value = title;
if (input) {
searchInput.value = input.split(',').join('\n');
} else {
searchInput.value = '';
}
dialogVisible.value = true;
};
const handleSearchSubmit = value => {
console.log('搜索内容:', value);
if (popupTitle.value == '订单自编号搜索') {
details.query.orderCode = value; //
}
dialogVisible.value = false;
};

1798
src/views/wel/index.vue

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save