diff --git a/src/api/finance/ReconciliationDepositSlip.js b/src/api/finance/ReconciliationDepositSlip.js index 737c4235..575b37e2 100644 --- a/src/api/finance/ReconciliationDepositSlip.js +++ b/src/api/finance/ReconciliationDepositSlip.js @@ -50,6 +50,19 @@ export const postReal = data => { }); }; +/** + * toB 计算仓储&配送费用 + * @param {*} data + * @returns + */ +export const postCalculateRealCostByWaybillId = data => { + return request({ + url: `/api/logpm-statisticsdata/merchantStatistics/calculateRealCostByWaybillId/${data}`, + method: 'patch', + }); +}; + + /** * 生成对账单 * @param {*} data @@ -62,3 +75,29 @@ export const postCreateReconciliationOrder = data => { data, }); }; + +/** + * toB 批量结算完成 + * @param {*} data + * @returns + */ +export const postCreateFinishWaybillId = data => { + return request({ + url: '/api/logpm-statisticsdata/merchantStatistics/createFinishWaybillId', + method: 'post', + data, + }); +}; + +/** + * toB 生成对账单 + * @param {*} data + * @returns + */ +export const postCreateReconciliationwWaybillId = data => { + return request({ + url: '/api/logpm-statisticsdata/merchantStatistics/createReconciliationwWaybillId', + method: 'post', + data, + }); +}; diff --git a/src/api/storagecost/index.js b/src/api/storagecost/index.js index b5607a17..7cd55139 100644 --- a/src/api/storagecost/index.js +++ b/src/api/storagecost/index.js @@ -2,7 +2,7 @@ import request from '@/axios'; // 月度仓储成本统计表接口 export const $_Getlist = params => { return request({ - url: '/api/logpm-statisticsdata/expenseWarehouseMonth/page', + url: '/api/logpm-statisticsdata/expenseWarehouse/month', method: 'get', params, }); @@ -10,11 +10,22 @@ export const $_Getlist = params => { // 日度仓储成本统计表接口 export const $_GetexpenseWarehouseDay = params => { return request({ - url: '/api/logpm-statisticsdata/expenseWarehouseDay/page', + url: '/api/logpm-statisticsdata/expenseWarehouse/day', method: 'get', params, }); }; + +//日度仓储成本统计导出 +export const $_exporDay = params => { + return request({ + url: '/api/logpm-statisticsdata/expenseWarehouse/exporDay', + method: 'get', + params, + responseType: 'blob', + }); +}; + // 获取仓库 export const $_getMyWarehouseList = params => { return request({ @@ -27,7 +38,7 @@ export const $_getMyWarehouseList = params => { //月度仓储成本统计导出 export const $_expenseWarehouseMonth = params => { return request({ - url: '/api/logpm-statisticsdata/expenseWarehouseMonth/export-expenseWarehouseMonth', + url: '/api/logpm-statisticsdata/expenseWarehouse/exporMonth', method: 'get', params, responseType: 'blob', @@ -54,7 +65,7 @@ export const $_expenseOrderWarehouseMonth = params => { // 订单总仓储成本明细列表 export const $_OrderTotalWarehouse = params => { return request({ - url: '/api/logpm-statisticsdata/expenseOrderWarehouseTotal/page', + url: '/api/logpm-statisticsdata/expenseWarehouse/order', method: 'get', params, }); @@ -62,7 +73,7 @@ export const $_OrderTotalWarehouse = params => { // 订单总仓储成本明细导出 export const $_expenseOrderWarehouseTotal = params => { return request({ - url: '/api/logpm-statisticsdata/expenseOrderWarehouseTotal/export-expenseOrderWarehouseTotal', + url: '/api/logpm-statisticsdata/expenseWarehouse/exporOrder', method: 'get', params, responseType: 'blob', diff --git a/src/components/tablecmt/tablecmt.vue b/src/components/tablecmt/tablecmt.vue index 5c44edf7..e3d07b3e 100644 --- a/src/components/tablecmt/tablecmt.vue +++ b/src/components/tablecmt/tablecmt.vue @@ -381,7 +381,7 @@ const isHaveSelection = ref(false); let selectarr = ref([]); /** 设置每行颜色 */ const tableRowClassName = ({ row, rowIndex }: { row: TableDataType; rowIndex: number }) => { - if (props.tableData.length === selectarr.value.length) return 'table-SelectedRow-bgcolor'; + // if (props.tableData.length === selectarr.value.length) return 'table-SelectedRow-bgcolor'; for (let i = 0; i < selectarr.value.length; i++) { if (selectarr.value[i] === row) return 'table-SelectedRow-bgcolor'; @@ -931,4 +931,39 @@ defineExpose({ handleCheckSelect, handleClearSelect }); font-weight: initial; font-size: 12px; } + +// 表格行样式 +.el-table { + tr { + // 预警 + &.WarningTime { + color: #e6a23c !important; + background-color: #fff3e8; + + .el-text { + color: #e6a23c !important; + // background-color: #fff3e8; + } + + td { + border-color: #fff !important; + } + } + + // 超时 + &.timeOut { + color: #f56c6c !important; + background-color: #feeded; + + .el-text { + color: #f56c6c !important; + // background-color: #feeded; + } + + td { + border-color: #fff !important; + } + } + } +} diff --git a/src/option/finance/ReconciliationDepositSlip.js b/src/option/finance/ReconciliationDepositSlip.js index 73e111b4..bd6188b1 100644 --- a/src/option/finance/ReconciliationDepositSlip.js +++ b/src/option/finance/ReconciliationDepositSlip.js @@ -108,7 +108,7 @@ export const columnList = [ }, { prop: 'typeServiceName', - label: '订单类型', + label: '配送类型', type: 3, values: '', width: '150', @@ -130,6 +130,30 @@ export const columnList = [ sortable: true, head: false, }, + // { + // prop: 'typeServiceName', + // label: '服务类型', + // type: 3, + // values: '', + // width: '150', + // checkarr: [ + // { + // label: '商配', + // value: 1, + // }, + // { + // label: '市配', + // value: 2, + // }, + // { + // label: '自提', + // value: 3, + // }, + // ], + // fixed: false, + // sortable: true, + // head: false, + // }, { prop: 'openTime', label: '开单时间', @@ -245,7 +269,7 @@ export const columnList = [ }, { prop: 'sysTotalFee', - label: '订单开单价', + label: '订单预估总价', type: 1, values: '', width: '130', @@ -268,7 +292,7 @@ export const columnList = [ }, { prop: 'systemFreightPrice', - label: '开单运费', + label: '预估运费', type: 1, values: '', width: '130', @@ -292,7 +316,7 @@ export const columnList = [ }, { prop: 'systemPickupPrice', - label: '开单提货费', + label: '预估提货费', type: 1, values: '', width: '130', @@ -388,7 +412,7 @@ export const columnList = [ }, { prop: 'systemDeliveryFee', - label: '开单配送费', + label: '预估配送费', type: 1, values: '', width: '150', @@ -1017,7 +1041,7 @@ export const columnListB = [ }, { prop: 'sysTotalFee', - label: '订单开单价', + label: '订单预估总价', type: 1, values: '', width: '130', @@ -1041,7 +1065,7 @@ export const columnListB = [ }, { prop: 'systemFreightPrice', - label: '开单运费', + label: '预估运费', type: 1, values: '', width: '130', @@ -1065,7 +1089,7 @@ export const columnListB = [ }, { prop: 'systemPickupPrice', - label: '开单提货费', + label: '预估提货费', type: 1, values: '', width: '130', @@ -1161,7 +1185,7 @@ export const columnListB = [ }, { prop: 'systemDeliveryFee', - label: '开单配送费', + label: '预估配送费', type: 1, values: '', width: '130', diff --git a/src/option/finance/WaybillAudit.js b/src/option/finance/WaybillAudit.js index 7842d58c..c713bb7f 100644 --- a/src/option/finance/WaybillAudit.js +++ b/src/option/finance/WaybillAudit.js @@ -876,6 +876,36 @@ export const columnList = [ sortable: true, head: false, }, + { + prop: 'payStatusName', + label: '收款状态', + type: 1, + values: '', + width: '150', + checkarr: [ + {label: '未收款', value: '10'}, + // {label: '部分收款', value: '20'}, + {label: '已收款', value: '30'}, + ], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'settlementStatusName', + label: '结算状态', + type: 1, + values: '', + width: '150', + checkarr: [ + {label: '未结算', value: '10'}, + // {label: '部分结算', value: '20'}, + {label: '已结算', value: '30'}, + ], + fixed: false, + sortable: true, + head: false, + }, { prop: '', label: '操作', diff --git a/src/option/storagecost/OrderTotalWarehouse.js b/src/option/storagecost/OrderTotalWarehouse.js index d8f8dc3d..28718647 100644 --- a/src/option/storagecost/OrderTotalWarehouse.js +++ b/src/option/storagecost/OrderTotalWarehouse.js @@ -38,18 +38,18 @@ export const columnList = [ }, { prop: 'shipmentNumber', - label: '运单编号', - type: 1, + label: '运单编号 ', + type: 2, values: '', - width: '150', + width: '200', checkarr: [], fixed: false, sortable: true, head: false, }, { - prop: 'receivingUnit', - label: '收货单位', + prop: 'shippingUnit', + label: '发货单位', type: 1, values: '', width: '150', @@ -59,8 +59,8 @@ export const columnList = [ head: false, }, { - prop: 'shippingUnit', - label: '发货单位', + prop: 'receivingUnit', + label: '收货单位', type: 1, values: '', width: '150', @@ -70,9 +70,9 @@ export const columnList = [ head: false, }, { - prop: 'shipmenttype', + prop: 'deliveryType', label: '运单类型', - type: 3, + type: 1, values: '', width: '150', checkarr: [ @@ -90,63 +90,28 @@ export const columnList = [ head: false, }, { - prop: 'servicetype', - label: '服务类型', - type: 1, - values: '', - width: '150', - checkarr: [], - fixed: false, - sortable: true, - head: false, - }, - { - prop: 'totalQuantity', - label: '总件数', - type: 1, - values: '', - width: '150', - checkarr: [], - fixed: false, - sortable: true, - head: false, - }, - { - prop: 'originWarehouse', - label: '发站仓', - type: 1, - values: '', - width: '150', - checkarr: [], - fixed: false, - sortable: true, - head: false, - }, - { - prop: 'consignmentInQuantity', - label: '代入库仓件数', - type: 1, - values: '', - width: '150', - checkarr: [], - fixed: false, - sortable: true, - head: false, - }, - { - prop: 'consignmentInTotalCost', - label: '代入库总成本', - type: 1, + prop: 'reviewStatus', + label: '复核完成状态', + type: 3, values: '', width: '150', - checkarr: [], + checkarr: [ + { + label: '未完成', + value: '未完成', + }, + { + label: '已完成', + value: '已完成', + }, + ], fixed: false, sortable: true, head: false, }, { - prop: 'consignmentOutQuantity', - label: '代出库仓件数', + prop: 'totalNumber', + label: '订单总件数', type: 1, values: '', width: '150', @@ -156,8 +121,8 @@ export const columnList = [ head: false, }, { - prop: 'consignmentOutTotalCost', - label: '代出库总成本', + prop: 'outNumber', + label: '签收复核件数', type: 1, values: '', width: '150', @@ -167,11 +132,11 @@ export const columnList = [ head: false, }, { - prop: 'contractedOperaCost', - label: '代作业总成本', - type: 1, + prop: 'originWarehouse', + label: '发站仓 ', + type: 2, values: '', - width: '150', + width: '200', checkarr: [], fixed: false, sortable: true, @@ -188,28 +153,6 @@ export const columnList = [ sortable: true, head: false, }, - { - prop: 'warehousingCost', - label: '仓储总成本', - type: 1, - values: '', - width: '150', - checkarr: [], - fixed: false, - sortable: true, - head: false, - }, - // { - // prop: 'a17', - // label: '结算时间', - // type: 1, - // values: '', - // width: '150', - // checkarr: [], - // fixed: false, - // sortable: true, - // head: false, - // }, // { // prop: 'createUserName', diff --git a/src/option/storagecost/WarehouseMonthly.js b/src/option/storagecost/WarehouseMonthly.js index 2e790aa1..57a720b3 100644 --- a/src/option/storagecost/WarehouseMonthly.js +++ b/src/option/storagecost/WarehouseMonthly.js @@ -26,7 +26,7 @@ export const columnList = [ head: false, }, { - prop: 'costSettlementTime', + prop: 'statisticalTime', label: '成本结算时间', type: 1, values: '', @@ -36,17 +36,6 @@ export const columnList = [ sortable: true, head: false, }, - { - prop: 'totalArea', - label: '仓库总面积(㎡)', - type: 1, - values: '', - width: '150', - checkarr: [], - fixed: false, - sortable: true, - head: false, - }, { prop: 'monthlyRent', label: '仓库月租金', @@ -59,7 +48,7 @@ export const columnList = [ head: false, }, { - prop: 'totalQuantityIssued', + prop: 'totalOutQuantity', label: '出库总件数', type: 1, values: '', @@ -69,17 +58,6 @@ export const columnList = [ sortable: true, head: false, }, - { - prop: 'customerLeasedArea', - label: '客户租用面积(㎡)', - type: 1, - values: '', - width: '150', - checkarr: [], - fixed: false, - sortable: true, - head: false, - }, { prop: 'customerMonthlyRent', label: '客户月租金', @@ -92,18 +70,7 @@ export const columnList = [ head: false, }, { - prop: 'wholeVehicleCost', - label: '整车单价', - type: 1, - values: '', - width: '150', - checkarr: [], - fixed: false, - sortable: true, - head: false, - }, - { - prop: 'rentedItemsDispatchedQuantity', + prop: 'customerRentalOutQuantity', label: '租用出库件数', type: 1, values: '', @@ -114,7 +81,7 @@ export const columnList = [ head: false, }, { - prop: 'customerRentedItemCostPerUnit', + prop: 'customerRentalUnitCost', label: '客户租用单件成本', type: 1, values: '', @@ -125,7 +92,7 @@ export const columnList = [ head: false, }, { - prop: 'customerTotalLeasingCost', + prop: 'customerTotalRentalCost', label: '客户租用总成本', type: 1, values: '', @@ -135,17 +102,6 @@ export const columnList = [ sortable: true, head: false, }, - { - prop: 'temporaryTurnoverArea', - label: '临时周转面积', - type: 1, - values: '', - width: '150', - checkarr: [], - fixed: false, - sortable: true, - head: false, - }, { prop: 'temporaryTurnoverQuantity', label: '临时周转件数', @@ -158,7 +114,7 @@ export const columnList = [ head: false, }, { - prop: 'temporaryTurnoverCostPerItem', + prop: 'temporaryTurnoverUnitCost', label: '临时周转单件成本', type: 1, values: '', @@ -169,7 +125,7 @@ export const columnList = [ head: false, }, { - prop: 'totalTemporaryTurnoverCost', + prop: 'temporaryTurnoverTotalCost', label: '临时周转总成本', type: 1, values: '', @@ -179,17 +135,6 @@ export const columnList = [ sortable: true, head: false, }, - { - prop: 'drWareDisArea', - label: '干仓配仓储面积(㎡)', - type: 1, - values: '', - width: '150', - checkarr: [], - fixed: false, - sortable: true, - head: false, - }, { prop: 'drWareDisNumber', label: '干仓配件数', @@ -223,50 +168,43 @@ export const columnList = [ sortable: true, head: false, }, - { - prop: 'totalCostOfConsignmentStorage', - label: '代入库总成本', - type: 1, - values: '', - width: '150', - checkarr: [], - fixed: false, - sortable: true, - head: false, - }, - { - prop: 'totalCostOfConsignmentWithdrawal', - label: '代出库总成本', - type: 1, - values: '', - width: '150', - checkarr: [], - fixed: false, - sortable: true, - head: false, - }, - { - prop: 'totalCostOfAgencyOperations', - label: '代作业总成本', - type: 1, - values: '', - width: '150', - checkarr: [], - fixed: false, - sortable: true, - head: false, - }, - { - prop: 'totalWarehouseCost', - label: '仓储总成本', - type: 1, - values: '', - width: '150', - checkarr: [], - fixed: false, - sortable: true, - head: false, - }, + + // { + // prop: 'statisticalMonth', + // label: '统计月', + // type: 1, + // values: '', + // width: '150', + // checkarr: [], + // fixed: false, + // sortable: true, + // head: false, + // }, + + // { + // prop: 'statisticalYear', + // label: '统计年', + // type: 1, + // values: '', + // width: '150', + // checkarr: [], + // fixed: false, + // sortable: true, + // head: false, + // }, + + // { + // prop: 'warehouseCost', + // label: '仓库租赁总成本', + // type: 1, + // values: '', + // width: '150', + // checkarr: [], + // fixed: false, + // sortable: true, + // head: false, + // }, + // { // prop: '', // label: '操作', diff --git a/src/option/storagecost/Warehousedaily.js b/src/option/storagecost/Warehousedaily.js index 78678d63..6522c030 100644 --- a/src/option/storagecost/Warehousedaily.js +++ b/src/option/storagecost/Warehousedaily.js @@ -1,281 +1,351 @@ export const columnList = [ - { - prop: '', - label: '复选框', - type: 0, - width: 55, - fixed: true, - }, - { - prop: '', - label: '序号', - type: 12, - values: '', - width: 55, - fixed: true, - }, - { - prop: 'warehouseName', - label: '目的仓', - type: 2, - values: '', - width: '150', - checkarr: [], - fixed: false, - sortable: true, - head: false, - }, - { - prop: 'costSettlement', - label: '成本结算时间', - type: 1, - values: '', - width: '150', - checkarr: [], - fixed: false, - sortable: true, - head: false, - }, - { - prop: 'totalArea', - label: '仓库总面积(㎡)', - type: 1, - values: '', - width: '150', - checkarr: [], - fixed: false, - sortable: true, - head: false, - }, - { - prop: 'monthlyRent', - label: '仓库日租金', - type: 1, - values: '', - width: '150', - checkarr: [], - fixed: false, - sortable: true, - head: false, - }, - { - prop: 'totalQuantityIssued', - label: '出库总件数', - type: 1, - values: '', - width: '150', - checkarr: [], - fixed: false, - sortable: true, - head: false, - }, - { - prop: 'customerLeasedArea', - label: '客户租用面积(㎡)', - type: 1, - values: '', - width: '150', - checkarr: [], - fixed: false, - sortable: true, - head: false, - }, - { - prop: 'customerMonthlyRent', - label: '客户日租金', - type: 1, - values: '', - width: '150', - checkarr: [], - fixed: false, - sortable: true, - head: false, - }, - { - prop: 'rentedItemsDispatchedQuantity', - label: '租用出库件数', - type: 1, - values: '', - width: '150', - checkarr: [], - fixed: false, - sortable: true, - head: false, - }, - { - prop: 'customerRentedItemCostPerUnit', - label: '客户租用单件成本', - type: 1, - values: '', - width: '150', - checkarr: [], - fixed: false, - sortable: true, - head: false, - }, - { - prop: 'wholeVehicleCost', - label: '整车单价', - type: 1, - values: '', - width: '150', - checkarr: [], - fixed: false, - sortable: true, - head: false, - }, - { - prop: 'customerTotalLeasingCost', - label: '客户租用总成本', - type: 1, - values: '', - width: '150', - checkarr: [], - fixed: false, - sortable: true, - head: false, - }, - { - prop: 'temporaryTurnoverArea', - label: '临时周转面积', - type: 1, - values: '', - width: '150', - checkarr: [], - fixed: false, - sortable: true, - head: false, - }, - { - prop: 'temporaryTurnoverQuantity', - label: '临时周转件数', - type: 1, - values: '', - width: '150', - checkarr: [], - fixed: false, - sortable: true, - head: false, - }, - { - prop: 'temporaryTurnoverCostPerItem', - label: '临时周转单件成本', - type: 1, - values: '', - width: '150', - checkarr: [], - fixed: false, - sortable: true, - head: false, - }, - { - prop: 'totalTemporaryTurnoverCost', - label: '临时周转总成本', - type: 1, - values: '', - width: '150', - checkarr: [], - fixed: false, - sortable: true, - head: false, - }, - { - prop: 'drWareDisArea', - label: '干仓配仓储面积(㎡)', - type: 1, - values: '', - width: '150', - checkarr: [], - fixed: false, - sortable: true, - head: false, - }, - { - prop: 'drWareDisNumber', - label: '干仓配件数', - type: 1, - values: '', - width: '150', - checkarr: [], - fixed: false, - sortable: true, - head: false, - }, - { - prop: 'drWareDisCostPerUnit', - label: '干仓配单件成本', - type: 1, - values: '', - width: '150', - checkarr: [], - fixed: false, - sortable: true, - head: false, - }, - { - prop: 'drWareDisTotalCost', - label: '干仓配仓储总成本', - type: 1, - values: '', - width: '150', - checkarr: [], - fixed: false, - sortable: true, - head: false, - }, - { - prop: 'totalCostOfConsignmentStorage', - label: '代入库总成本', - type: 1, - values: '', - width: '150', - checkarr: [], - fixed: false, - sortable: true, - head: false, - }, - { - prop: 'totalCostOfConsignmentWithdrawal', - label: '代出库总成本', - type: 1, - values: '', - width: '150', - checkarr: [], - fixed: false, - sortable: true, - head: false, - }, - { - prop: 'totalCostOfAgencyOperations', - label: '代作业总成本', - type: 1, - values: '', - width: '150', - checkarr: [], - fixed: false, - sortable: true, - head: false, - }, - { - prop: 'totalWarehouseCost', - label: '仓储总成本', - type: 1, - values: '', - width: '150', - checkarr: [], - fixed: false, - sortable: true, - head: false, - }, - // { - // prop: '', - // label: '操作', - // type: 6, - // values: '', - // width: '200', - // checkarr: [], - // fixed: 'right', - // sortable: false, - // }, - ]; - \ No newline at end of file + { + prop: '', + label: '复选框', + type: 0, + width: 55, + fixed: true, + }, + { + prop: '', + label: '序号', + type: 12, + values: '', + width: 55, + fixed: true, + }, + { + prop: 'warehouseName', + label: '目的仓', + type: 2, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'statisticalTime', + label: '成本结算日期', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'totalArea', + label: '仓库总面积(㎡)', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'rent', + label: '仓库月租金', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'dailyRent', + label: '仓库日租金', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'totalOutQuantity', + label: '出库总件数', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'customerDailyRent', + label: '客户租用日租金', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'customerRentalArea', + label: '客户租用面积(㎡)', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'customerRentalOutQuantity', + label: '租用出库件数', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'customerRentalUnitCost', + label: '租用单件成本', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'customerTotalRentalCost', + label: '租用总成本', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'temporaryTurnoverArea', + label: '临时周转面积', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'temporaryTurnoverQuantity', + label: '临时周转件数', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'temporaryTurnoverUnitCost', + label: '临时周转单件成本', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'temporaryTurnoverTotalCost', + label: '临时周转总成本', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'drWareDisArea', + label: '干仓配仓储面积(㎡)', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'drWareDisNumber', + label: '干仓配件数', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'drWareDisCostPerUnit', + label: '干仓配单件成本', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'drWareDisTotalCost', + label: '干仓配仓储总成本', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + + + + + + + + // { + // prop: 'dayNumber', + // label: '当月天数', + // type: 1, + // values: '', + // width: '150', + // checkarr: [], + // fixed: false, + // sortable: true, + // head: false, + // }, + + // { + // prop: 'warehouseCost', + // label: '仓库租赁总成本', + // type: 1, + // values: '', + // width: '150', + // checkarr: [], + // fixed: false, + // sortable: true, + // head: false, + // }, + + + // { + // prop: 'customerMonthlyRent', + // label: '客户租用月租金', + // type: 1, + // values: '', + // width: '150', + // checkarr: [], + // fixed: false, + // sortable: true, + // head: false, + // }, + + + // { + // prop: 'rent', + // label: '仓库租金', + // type: 1, + // values: '', + // width: '150', + // checkarr: [], + // fixed: false, + // sortable: true, + // head: false, + // }, + // { + // prop: 'statisticalDay', + // label: '统计日', + // type: 1, + // values: '', + // width: '150', + // checkarr: [], + // fixed: false, + // sortable: true, + // head: false, + // }, + + + // { + // prop: 'statisticalYear', + // label: '统计年', + // type: 1, + // values: '', + // width: '150', + // checkarr: [], + // fixed: false, + // sortable: true, + // head: false, + // }, + + + // { + // prop: 'drWareDisNumber', + // label: '干仓配件数', + // type: 1, + // values: '', + // width: '150', + // checkarr: [], + // fixed: false, + // sortable: true, + // head: false, + // }, + // { + // prop: 'drWareDisCostPerUnit', + // label: '干仓配单件成本', + // type: 1, + // values: '', + // width: '150', + // checkarr: [], + // fixed: false, + // sortable: true, + // head: false, + // }, + // { + // prop: 'drWareDisArea', + // label: '干仓配仓储面积', + // type: 1, + // values: '', + // width: '150', + // checkarr: [], + // fixed: false, + // sortable: true, + // head: false, + // }, + // { + // prop: '', + // label: '操作', + // type: 6, + // values: '', + // width: '200', + // checkarr: [], + // fixed: 'right', + // sortable: false, + // }, +]; diff --git a/src/option/waybill/WaybillOrderList.js b/src/option/waybill/WaybillOrderList.js index 2987d539..6f8e99a9 100644 --- a/src/option/waybill/WaybillOrderList.js +++ b/src/option/waybill/WaybillOrderList.js @@ -19,7 +19,7 @@ export const columnList = [ label: '运单号', type: 13, values: '', - width: '150', + width: '120', checkarr: [], fixed: true, sortable: true, @@ -30,7 +30,7 @@ export const columnList = [ label: '订单自编号', type: 2, values: '', - width: '200', + width: '160', checkarr: [], fixed: true, sortable: true, @@ -40,7 +40,7 @@ export const columnList = [ label: '目的仓', type: 2, values: '', - width: '130', + width: '100', checkarr: [], fixed: false, sortable: true, @@ -50,7 +50,7 @@ export const columnList = [ label: '发站仓', type: 2, values: '', - width: '130', + width: '100', checkarr: [], fixed: false, sortable: true, @@ -60,7 +60,7 @@ export const columnList = [ label: '运单状态', type: 3, values: '', - width: '130', + width: '100', checkarr: [ { label: '未入库', value: '0' }, { label: '部分入库', value: '10' }, @@ -93,7 +93,7 @@ export const columnList = [ label: '品牌', type: 2, values: '', - width: '150', + width: '100', checkarr: [], fixed: false, sortable: true, @@ -113,7 +113,7 @@ export const columnList = [ label: '发货人', type: 2, values: '', - width: '130', + width: '100', checkarr: [], fixed: false, sortable: true, @@ -133,7 +133,7 @@ export const columnList = [ label: '发货方地址', type: 1, values: '', - width: '180', + width: '130', checkarr: [], fixed: false, sortable: true, @@ -163,7 +163,7 @@ export const columnList = [ label: '收货人', type: 2, values: '', - width: '150', + width: '100', checkarr: [], fixed: false, sortable: true, @@ -193,7 +193,7 @@ export const columnList = [ label: '到站', type: 2, values: '', - width: '130', + width: '100', checkarr: [], fixed: false, sortable: true, @@ -296,7 +296,7 @@ export const columnList = [ label: '运费', type: 1, values: '', - width: '130', + width: '100', checkarr: [], fixed: false, isshowSummary: true, @@ -307,7 +307,7 @@ export const columnList = [ label: '送货费', type: 1, values: '', - width: '130', + width: '100', checkarr: [], fixed: false, isshowSummary: true, @@ -318,7 +318,7 @@ export const columnList = [ label: '提货费', type: 1, values: '', - width: '130', + width: '100', checkarr: [], fixed: false, isshowSummary: true, @@ -329,7 +329,7 @@ export const columnList = [ label: '仓库管理费', type: 1, values: '', - width: '130', + width: '100', checkarr: [], fixed: false, isshowSummary: true, @@ -340,7 +340,7 @@ export const columnList = [ label: '仓储费', type: 1, values: '', - width: '130', + width: '100', checkarr: [], fixed: false, isshowSummary: true, @@ -351,7 +351,7 @@ export const columnList = [ label: '仓储操作费', type: 1, values: '', - width: '130', + width: '100', checkarr: [], fixed: false, isshowSummary: true, @@ -362,7 +362,7 @@ export const columnList = [ label: '仓储分拣费', type: 1, values: '', - width: '130', + width: '100', checkarr: [], fixed: false, isshowSummary: true, @@ -395,7 +395,7 @@ export const columnList = [ label: '申明价值', type: 1, values: '', - width: '130', + width: '100', checkarr: [], fixed: false, isshowSummary: true, @@ -406,7 +406,7 @@ export const columnList = [ label: '回扣', type: 1, values: '', - width: '130', + width: '100', checkarr: [], fixed: false, isshowSummary: true, @@ -417,7 +417,7 @@ export const columnList = [ label: '支付方式', type: 3, values: '', - width: '130', + width: '100', checkarr: [ { label: '现金', value: 1 }, { label: '银行卡', value: 2 }, @@ -434,7 +434,7 @@ export const columnList = [ label: '付款方式', type: 3, values: '', - width: '130', + width: '100', checkarr: [ { label: '现付', value: 1 }, { label: '到付', value: 2 }, @@ -450,7 +450,7 @@ export const columnList = [ label: '现付', type: 1, values: '', - width: '130', + width: '100', checkarr: [], fixed: false, isshowSummary: true, @@ -461,7 +461,7 @@ export const columnList = [ label: '到付', type: 1, values: '', - width: '130', + width: '100', checkarr: [], fixed: false, isshowSummary: true, @@ -472,7 +472,7 @@ export const columnList = [ label: '月付', type: 1, values: '', - width: '130', + width: '100', checkarr: [], fixed: false, isshowSummary: true, @@ -483,7 +483,7 @@ export const columnList = [ label: '回付', type: 1, values: '', - width: '130', + width: '100', checkarr: [], fixed: false, isshowSummary: true, @@ -494,7 +494,7 @@ export const columnList = [ label: '送货方式', type: 3, values: '', - width: '130', + width: '100', checkarr: [ { label: '自提', value: 1 }, { label: '送货', value: 2 }, @@ -512,7 +512,7 @@ export const columnList = [ label: '紧急度', type: 3, values: '', - width: '130', + width: '100', checkarr: [ { label: '正常', value: 1 }, { label: '急', value: 2 }, @@ -528,7 +528,7 @@ export const columnList = [ label: '回单数', type: 1, values: '', - width: '130', + width: '100', checkarr: [], fixed: false, isshowSummary: true, @@ -539,7 +539,7 @@ export const columnList = [ label: '回单要求', type: 3, values: '', - width: '130', + width: '100', checkarr: [ { label: '签回单', value: 1 }, { label: '签原单', value: 2 }, @@ -561,7 +561,7 @@ export const columnList = [ label: '运输方式', type: 3, values: '', - width: '130', + width: '100', checkarr: [ { label: '公路快运', value: 1 }, { label: '海运', value: 2 }, @@ -588,7 +588,7 @@ export const columnList = [ label: '三方操作费', type: 1, values: '', - width: '130', + width: '100', checkarr: [], fixed: false, isshowSummary: true, @@ -599,7 +599,7 @@ export const columnList = [ label: '经办人', type: 2, values: '', - width: '130', + width: '100', checkarr: [], fixed: false, isshowSummary: false, @@ -882,7 +882,7 @@ export const columnList = [ label: '审核状态', type: 3, values: '', - width: '130', + width: '80', checkarr: [ { label: '待审核', value: '0' }, { label: '已审核', value: '1' }, @@ -907,7 +907,7 @@ export const columnList = [ label: '审核人', type: 1, values: '', - width: '130', + width: '100', checkarr: [], fixed: false, isshowSummary: false, @@ -940,7 +940,7 @@ export const columnList = [ label: '备注', type: 2, values: '', - width: '180', + width: '130', checkarr: [], fixed: false, isshowSummary: false, @@ -984,7 +984,7 @@ export const columnList = [ label: '操作', type: 6, values: '', - width: '250', + width: '150', checkarr: [], fixed: 'right', sortable: false, diff --git a/src/views/cost/storagecost/OrderTotalWarehouse.vue b/src/views/cost/storagecost/OrderTotalWarehouse.vue index 6d504373..ba2d5371 100644 --- a/src/views/cost/storagecost/OrderTotalWarehouse.vue +++ b/src/views/cost/storagecost/OrderTotalWarehouse.vue @@ -7,16 +7,24 @@
- - - + - - - - - - - - -
@@ -58,9 +47,6 @@
- 导入 导出 @@ -136,8 +122,7 @@ import { $_OrderTotalWarehouse, $_expenseOrderWarehouseTotal, } from '@/api/storagecost/index.js'; -import { processRowProperty, setNodeHeight } from '@/utils/util'; -import functions from '@/utils/functions.js'; +import { processRowProperty, setNodeHeight,handleClearTableQuery } from '@/utils/util'; import { ElMessageBox, ElMessage } from 'element-plus'; import { downloadXls } from '@/utils/util'; import { useStore } from 'vuex'; @@ -147,6 +132,8 @@ const $useStore = useStore(); //权限 const $route = useRoute(); //获取地址栏参数 const queryTop = ref({}); const monthList = ref([]); +const warehousecheckAll = ref(false); +const indeterminate = ref(false); const warehouseList = ref([]); const details = reactive({ /** 是否开启搜索 */ @@ -270,6 +257,7 @@ const btnsc = val => { /** 表格表头下拉框选择 */ const selectsc = (index, row) => { processRowProperty(index, row, details); + onLoad(); }; /** 表格表头复选框选择 */ const selectionChange = list => { @@ -277,19 +265,19 @@ const selectionChange = list => { details.selectionList = list; }; // 清空 -const searchReset=()=>{ +const searchReset = () => { queryTop.value = {}; - details.query={} - details.data=[] + details.query = {}; + details.data = []; + handleClearTableQuery(details.columnList); onLoad(); -} +}; // 网页顶部搜索按钮 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) { @@ -315,6 +303,29 @@ const currentChange = val => { details.page.currentPage = val; onLoad(); }; +watch( + () => queryTop.value.warehouse, + val => { + if (!val.length) { + warehousecheckAll.value = false; + indeterminate.value = false; + } else if (val.length === warehouseList.value.length) { + warehousecheckAll.value = true; + indeterminate.value = false; + } else { + indeterminate.value = true; + } + } +); + +const handleCheckAll = val => { + indeterminate.value = false; + if (val) { + queryTop.value.warehouse = warehouseList.value.map(_ => _.value); + } else { + queryTop.value.warehouse = []; + } +}; // 刷新按钮 const searchChangeS = () => { details.search = false; //关闭搜索 @@ -340,7 +351,6 @@ function updateDictionary(targetArray, dictionaryType) { }); } // 页面初始化 -// 页面初始化 const onLoad = value => { let data = { current: details.page.currentPage, @@ -393,10 +403,9 @@ const PageOnload = () => { }; PageOnload(); // 导入 -const ImportExcel=()=>{ - - return -} +const ImportExcel = () => { + return; +}; // 导出 const exportExcel = () => { ElMessageBox.confirm('是否导出数据?', { @@ -413,7 +422,7 @@ const exportExcel = () => { console.log(data, '要提交的数据'); $_expenseOrderWarehouseTotal(data).then(res => { details.loadingObj.list = false; - downloadXls(res.data, `月度订单仓储成本明细.xlsx`); + downloadXls(res.data, `订单仓储成本报表.xlsx`); ElMessage({ message: '导出成功', type: 'success', diff --git a/src/views/cost/storagecost/WarehouseMonthly.vue b/src/views/cost/storagecost/WarehouseMonthly.vue index 667a62b8..977867da 100644 --- a/src/views/cost/storagecost/WarehouseMonthly.vue +++ b/src/views/cost/storagecost/WarehouseMonthly.vue @@ -1,5 +1,5 @@