Browse Source

Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev

fix_bug_pro20231227
马远东 1 year ago
parent
commit
a320d48692
  1. 50
      src/api/aftersales/aftersalesProcessingMoney.js
  2. 11
      src/api/distribution/AddVehicleStowage.js
  3. 78
      src/api/distribution/TripartiteTransfer.js
  4. 60
      src/api/distribution/VehicleStowage.js
  5. 78
      src/api/distribution/addTripartiteTransfer.js
  6. 24
      src/api/distribution/distributionStockList.js
  7. 108
      src/option/aftersales/aftersalesProcessingMoney.js
  8. 40
      src/option/distribution/TripartiteTransfer.js
  9. 210
      src/option/distribution/VehicleStowage.js
  10. 33
      src/router/views/index.js
  11. 15
      src/utils/util.js
  12. 300
      src/views/aftersales/aftersalesProcessingMoney.vue
  13. 4
      src/views/basicdata/warehouse/goodsAllocation/BasicdataGoodsAllocation.vue
  14. 4
      src/views/basicdata/warehouse/goodsShelf/basicdataGoodsShelf.vue
  15. 2
      src/views/basicdata/warehouse/tray/basicdataTray.vue
  16. 34
      src/views/distribution/artery/AddVehicleStowage.vue
  17. 287
      src/views/distribution/artery/TripartiteTransfer.vue
  18. 1069
      src/views/distribution/artery/TripartiteTransferDetails.vue
  19. 267
      src/views/distribution/artery/VehicleStowage.vue
  20. 1124
      src/views/distribution/artery/addTripartiteTransfer.vue
  21. 557
      src/views/distribution/artery/truckLoadingDetails.vue
  22. 4
      src/views/distribution/deliverylist/distributionDeliveryListdis.vue
  23. 74
      src/views/distribution/deliverylist/distributionDeliveryListedt.vue
  24. 4
      src/views/distribution/deliverylist/distributionDeliveryListmar.vue
  25. 4
      src/views/distribution/inventory/distributionStockArticleDetails.vue
  26. 2
      src/views/distribution/inventory/distrilbutionBillLadingList.vue
  27. 4
      src/views/distribution/reservation/reservation.vue
  28. 14
      src/views/distribution/reservation/reservationAddFrom.vue
  29. 92
      src/views/distribution/reservation/reservationDetails.vue
  30. 32
      src/views/distribution/signfor/distributionSignforedt.vue
  31. 8
      src/views/distribution/stockup/distributionStockupDetails.vue
  32. 10
      src/views/distribution/stockup/distributionStockupDetailsSelf.vue
  33. 12
      src/views/mail/order/add.vue
  34. 4
      src/views/mail/reservation/list.vue
  35. 4
      src/views/waybill/TemporaryStorageList.vue
  36. 9
      src/views/waybill/orderPackageList.vue
  37. 8
      src/views/waybill/orderPackageListDetails.vue

50
src/api/aftersales/aftersalesProcessingMoney.js

@ -0,0 +1,50 @@
import request from '@/axios';
export const getList = (current, size, params) => {
return request({
url: '/api/logpm-aftersales/aftersalesProcessingMoney/list',
method: 'get',
params: {
...params,
current,
size,
}
})
}
export const getDetail = (id) => {
return request({
url: '/api/logpm-aftersales/aftersalesProcessingMoney/detail',
method: 'get',
params: {
id
}
})
}
export const remove = (ids) => {
return request({
url: '/api/logpm-aftersales/aftersalesProcessingMoney/remove',
method: 'post',
params: {
ids,
}
})
}
export const add = (row) => {
return request({
url: '/api/logpm-aftersales/aftersalesProcessingMoney/submit',
method: 'post',
data: row
})
}
export const update = (row) => {
return request({
url: '/api/logpm-aftersales/aftersalesProcessingMoney/submit',
method: 'post',
data: row
})
}

11
src/api/distribution/AddVehicleStowage.js

@ -65,3 +65,14 @@ export const postSaveNew = data => {
data,
});
};
/**
* 通过名称查询承运商
*/
export const postFindCarrierByName = data => {
return request({
url: '/api/logpm-trunkline/billlading/findCarrierByName',
method: 'post',
data,
});
};

78
src/api/distribution/TripartiteTransfer.js

@ -0,0 +1,78 @@
import request from '@/axios';
/**
* 获取中转列表
*/
export const postTripartiteTransferPageList = (data = {}) => {
return request({
url: '/api/logpm-trunkline/tripartiteTransfer/tripartiteTransferPageList',
method: 'post',
data,
});
};
/**
* 到车
*/
export const postArriveCars = data => {
return request({
url: '/api/logpm-trunkline/tripartiteTransfer/arriveCars',
method: 'post',
data,
});
};
/**
* 发车
*/
export const postStartCars = data => {
return request({
url: '/api/logpm-trunkline/tripartiteTransfer/startCars',
method: 'post',
data,
});
};
/**
* 取消发车
*/
export const postCancelStartCars = data => {
return request({
url: '/api/logpm-trunkline/tripartiteTransfer/cancelStartCars',
method: 'post',
data,
});
};
/**
* 通过名称查司机
*/
export const postFindDriverListByName = data => {
return request({
url: '/api/logpm-trunkline/billlading/findDriverListByName',
method: 'post',
data,
});
};
/**
* 新增配载计划
*/
export const postSaveNewTripartiteTransfer = data => {
return request({
url: '/api/logpm-trunkline/tripartiteTransfer/saveNewTripartiteTransfer',
method: 'post',
data,
});
};
/**
* 通过名称查询承运商
*/
export const postFindCarrierByName = data => {
return request({
url: '/api/logpm-trunkline/billlading/findCarrierByName',
method: 'post',
data,
});
};

60
src/api/distribution/VehicleStowage.js

@ -15,88 +15,68 @@ export const postloadCarsPageList = (page, params) => {
};
/**
* 查询所有计费方式
* 发车
* data -- loadId 配载id组成的字符串
* data -- startCarType 1: 始发仓发车 2: 网点发车
*/
export const postFindChargeTypeList = data => {
export const postStartCarByLoadId = data => {
return request({
url: '/api/logpm-trunkline/billlading/findChargeTypeList',
url: '/api/logpm-trunkline/carsLoad/startCarByLoadId',
method: 'post',
data,
});
};
/**
* 创建新提货单
* 取消发车
*/
export const postSaveNew = data => {
export const postCancelStartCarByLoadId = data => {
return request({
url: '/api/logpm-trunkline/billlading/saveNew',
url: '/logpm-trunkline/carsLoad/cancelStartCarByLoadId',
method: 'post',
data,
});
};
/**
* 查询运单列表
* 卸车确认
*/
export const postList = data => {
export const postUnloadByLoadId = data => {
return request({
url: '/api/logpm-warehouseWaybill/list',
url: '/api/logpm-trunkline/carsLoad/unloadByLoadId',
method: 'post',
data,
});
};
/**
* 更新提货单状态
* 到车
*/
export const postUpdateBillladingStatus = data => {
export const postArriveCarByLoadId = data => {
return request({
url: '/api/logpm-trunkline/billlading/updateBillladingStatus',
url: '/api/logpm-trunkline/carsLoad/arriveCarByLoadId',
method: 'post',
data,
});
};
/**
* 查询提货单详情
* 取消到车
*/
export const postBillladingDetail = data => {
export const postCancelArriveCarByLoadId = data => {
return request({
url: '/api/logpm-trunkline/billlading/billladingDetail',
url: '/api/logpm-trunkline/carsLoad/cancelArriveCarByLoadId',
method: 'post',
data,
});
};
/**
* 查询提货单包件明细
* 取消配载
*/
export const postBillladingPackageDetail = data => {
export const postCancelCarsLoadByLoadId = data => {
return request({
url: '/api/logpm-trunkline/billlading/billladingPackageDetail',
method: 'post',
data,
});
};
/**
* 更新提货单关联运单数据
*/
export const postUpdateBillladingWaybillNum = data => {
return request({
url: '/api/logpm-trunkline/billlading/updateBillladingWaybillNum',
method: 'post',
data,
});
};
/**
* 提货单添加运单
*/
export const postAddWaybillToBillladingId = data => {
return request({
url: '/api/logpm-trunkline/billlading/addWaybillToBillladingId',
url: '/api/logpm-trunkline/carsLoad/cancelCarsLoadByLoadId',
method: 'post',
data,
});

78
src/api/distribution/addTripartiteTransfer.js

@ -0,0 +1,78 @@
import request from '@/axios';
/**
* 初始化获取配载信息
*/
export const postloadFindLoadInitData = (data = {}) => {
return request({
url: '/api/logpm-trunkline/carsLoad/findLoadInitData',
method: 'post',
data,
});
};
/**
* 通过名称查询仓库信息
*/
export const postFindWarehouseListByName = data => {
return request({
url: '/api/logpm-trunkline/carsLoad/findWarehouseListByName',
method: 'post',
data,
});
};
/**
* 查询可用订单
*/
export const postFindAllOrderList = data => {
return request({
url: '/api/logpm-trunkline/carsLoad/findAllOrderList',
method: 'post',
data,
});
};
/**
* 根据名称查询车辆
*/
export const postFindCarListByName = data => {
return request({
url: '/api/logpm-trunkline/billlading/findCarListByName',
method: 'post',
data,
});
};
/**
* 通过名称查司机
*/
export const postFindDriverListByName = data => {
return request({
url: '/api/logpm-trunkline/billlading/findDriverListByName',
method: 'post',
data,
});
};
/**
* 新增配载计划
*/
export const postSaveNewTripartiteTransfer = data => {
return request({
url: '/api/logpm-trunkline/tripartiteTransfer/saveNewTripartiteTransfer',
method: 'post',
data,
});
};
/**
* 通过名称查询承运商
*/
export const postFindCarrierByName = data => {
return request({
url: '/api/logpm-trunkline/billlading/findCarrierByName',
method: 'post',
data,
});
};

24
src/api/distribution/distributionStockList.js

@ -36,12 +36,28 @@ export const getStockListOwn = (current, size, params) => {
})
}
/**
* 查看库存品包件库存品码
* @param params
* @returns {AxiosPromise}
*/
export const showInventoryPackgeCode = (reservationId,stockListId) => {
return request({
url: '/api/logpm-distribution/distributionStockList/showOrderPackgeCode',
method: 'get',
params: {
reservationId,
stockListId
}
})
}
/**
* 商场的库存品列表
* @param {*} current
* @param {*} size
* @param {*} params
* @returns
* @param {*} current
* @param {*} size
* @param {*} params
* @returns
*/
export const getStockListClient = (current, size, params) => {
return request({

108
src/option/aftersales/aftersalesProcessingMoney.js

@ -0,0 +1,108 @@
export default {
expand: false,
index: true,
border: true,
selection: true,
column: [
{
label: "租户号",
prop: "tenantId",
display: false,
hide: true,
},
{
label: "创建人",
prop: "createUser",
display: false,
hide: true,
},
{
label: "创建时间",
prop: "createTime",
display: false,
hide: true,
},
{
label: "更新人",
prop: "updateUser",
display: false,
hide: true,
},
{
label: "更新时间",
prop: "updateTime",
display: false,
hide: true,
},
{
label: "状态",
prop: "status",
display: false,
hide: true,
},
{
label: "是否已删除",
prop: "isDeleted",
display: false,
hide: true,
},
{
label: "创建部门",
prop: "createDept",
display: false,
hide: true,
},
{
label: "主键",
prop: "id",
display: false,
hide: true,
},
{
label: "预留1",
prop: "reserve1",
display: false,
hide: true,
},
{
label: "预留2",
prop: "reserve2",
display: false,
hide: true,
},
{
label: "预留3",
prop: "reserve3",
display: false,
hide: true,
},
{
label: "预留4",
prop: "reserve4",
display: false,
hide: true,
},
{
label: "预留5",
prop: "reserve5",
display: false,
hide: true,
},
{
label: "处理结果类型",
prop: "resultType",
},
{
label: "金额",
prop: "money",
},
{
label: "处理结果ID",
prop: "processingResultsId",
},
{
label: "类型",
prop: "typesOf",
},
]
}

40
src/option/distribution/TripartiteTransfer.js

@ -16,7 +16,7 @@ export const columnList = [
fixed: true,
},
{
prop: 'billladingCode',
prop: 'carsNo',
label: '中转批次号',
type: 13,
values: '',
@ -27,7 +27,7 @@ export const columnList = [
head: false,
},
{
prop: 'carNumber',
prop: 'carrierName',
label: '承运商',
type: 2,
values: '',
@ -37,7 +37,7 @@ export const columnList = [
sortable: true,
},
{
prop: 'driverName',
prop: 'carrierTime',
label: '承运日期',
type: 1,
values: '',
@ -47,7 +47,7 @@ export const columnList = [
sortable: true,
},
{
prop: 'driverPhone',
prop: 'payMethod',
label: '付款方式',
type: 3,
values: '',
@ -57,7 +57,7 @@ export const columnList = [
sortable: true,
},
{
prop: 'warehouseName',
prop: 'countTransportCost',
label: '运费',
type: 1,
values: '',
@ -67,7 +67,7 @@ export const columnList = [
sortable: true,
},
{
prop: 'lineNameTitle',
prop: 'replacePrice',
label: '代收贷款',
type: 1,
values: '',
@ -77,7 +77,7 @@ export const columnList = [
sortable: true,
},
{
prop: 'nodeNub',
prop: 'carrierOrderCode',
label: '承运单号',
type: 2,
values: '',
@ -87,7 +87,7 @@ export const columnList = [
sortable: true,
},
{
prop: 'startTime',
prop: 'startWarehouseName',
label: '发站仓库',
type: 1,
values: '',
@ -97,7 +97,7 @@ export const columnList = [
sortable: true,
},
{
prop: 'endTime',
prop: 'loadStatus',
label: '状态',
type: 3,
values: '',
@ -107,7 +107,7 @@ export const columnList = [
sortable: true,
},
{
prop: 'planVolume',
prop: 'isSettlement',
label: '是否结算',
type: 3,
values: '',
@ -117,7 +117,7 @@ export const columnList = [
sortable: true,
},
{
prop: 'billladingStatus',
prop: 'customerType',
label: '客户类型',
type: 3,
values: '',
@ -127,7 +127,7 @@ export const columnList = [
sortable: true,
},
{
prop: 'chargeType',
prop: 'startTime',
label: '发车时间',
type: 1,
values: '',
@ -137,7 +137,7 @@ export const columnList = [
sortable: true,
},
{
prop: 'totalFee',
prop: 'planLoadingNumber',
label: '计划出库',
type: 1,
values: '',
@ -147,7 +147,7 @@ export const columnList = [
sortable: true,
},
{
prop: 'remark',
prop: 'realLoadingNumber',
label: '实际装车',
type: 1,
values: '',
@ -157,7 +157,7 @@ export const columnList = [
sortable: true,
},
{
prop: 'carrierName',
prop: 'deliveryType',
label: '送货方式',
type: 3,
values: '',
@ -167,7 +167,7 @@ export const columnList = [
sortable: true,
},
{
prop: 'waybillCount',
prop: 'operator',
label: '经办人',
type: 2,
values: '',
@ -177,7 +177,7 @@ export const columnList = [
sortable: true,
},
{
prop: 'totalNum',
prop: 'createTime',
label: '创建时间',
type: 1,
values: '',
@ -187,7 +187,7 @@ export const columnList = [
sortable: true,
},
{
prop: 'totalWeight',
prop: 'settlementValue',
label: '结算金额',
type: 2,
values: '',
@ -197,7 +197,7 @@ export const columnList = [
sortable: true,
},
{
prop: 'totalVolume',
prop: 'settlementPerson',
label: '结算人',
type: 2,
values: '',
@ -207,7 +207,7 @@ export const columnList = [
sortable: true,
},
{
prop: 'createUserName',
prop: 'signTime',
label: '签收时间',
type: 1,
values: '',

210
src/option/distribution/VehicleStowage.js

@ -15,7 +15,7 @@ export const columnList = [
fixed: true,
},
{
prop: 'billladingCode',
prop: 'waybillNo',
label: '批次号',
type: 13,
values: '',
@ -26,17 +26,17 @@ export const columnList = [
head: false,
},
{
prop: 'carNumber',
prop: 'carsLineName',
label: '路线',
type: 13,
values: '',
width: '180',
width: '250',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'driverName',
prop: 'planLoadingNumber',
label: '计划装车',
type: 1,
values: '',
@ -47,7 +47,7 @@ export const columnList = [
isshowSummary: true,
},
{
prop: 'driverPhone',
prop: 'realLoadingNumber',
label: '装车件数',
type: 1,
values: '',
@ -57,19 +57,19 @@ export const columnList = [
sortable: true,
isshowSummary: true,
},
{
prop: 'warehouseName',
label: '在车件数',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
isshowSummary: true,
},
{
prop: 'lineNameTitle',
// {
// prop: 'warehouseName',
// label: '在车件数',
// type: 1,
// values: '',
// width: '130',
// checkarr: [],
// fixed: false,
// sortable: true,
// isshowSummary: true,
// },
{
prop: 'unloadNumber',
label: '卸车件数',
type: 1,
values: '',
@ -80,7 +80,7 @@ export const columnList = [
isshowSummary: true,
},
{
prop: 'nodeNub',
prop: 'fullLoadRate',
label: '满载率',
type: 1,
values: '',
@ -89,38 +89,38 @@ export const columnList = [
fixed: false,
sortable: true,
},
{
prop: 'startTime',
label: '滞留扫描',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'endTime',
label: '直发商家',
type: 3,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'planVolume',
label: '类型',
type: 3,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'billladingStatus',
// {
// prop: 'startTime',
// label: '滞留扫描',
// type: 1,
// values: '',
// width: '130',
// checkarr: [],
// fixed: false,
// sortable: true,
// },
// {
// prop: 'endTime',
// label: '直发商家',
// type: 3,
// values: '',
// width: '130',
// checkarr: [],
// fixed: false,
// sortable: true,
// },
// {
// prop: 'planVolume',
// label: '类型',
// type: 3,
// values: '',
// width: '130',
// checkarr: [],
// fixed: false,
// sortable: true,
// },
{
prop: 'loadStatusName',
label: '车辆状态',
type: 3,
values: '',
@ -130,7 +130,7 @@ export const columnList = [
sortable: true,
},
{
prop: 'chargeType',
prop: 'driverName',
label: '主驾司机',
type: 2,
values: '',
@ -140,7 +140,7 @@ export const columnList = [
sortable: true,
},
{
prop: 'totalFee',
prop: 'driverMobile',
label: '主驾司机手机号',
type: 2,
values: '',
@ -150,7 +150,7 @@ export const columnList = [
sortable: true,
},
{
prop: 'remark',
prop: 'carNumber',
label: '车牌号',
type: 2,
values: '',
@ -160,7 +160,7 @@ export const columnList = [
sortable: true,
},
{
prop: 'carrierName',
prop: 'startWarehouseName',
label: '起点仓库',
type: 2,
values: '',
@ -170,7 +170,7 @@ export const columnList = [
sortable: true,
},
{
prop: 'waybillCount',
prop: 'endWarehouseNames',
label: '终点仓库',
type: 2,
values: '',
@ -180,7 +180,7 @@ export const columnList = [
sortable: true,
},
{
prop: 'totalNum',
prop: 'arriveTime',
label: '到车时间',
type: 4,
values: '',
@ -190,7 +190,7 @@ export const columnList = [
sortable: true,
},
{
prop: 'totalWeight',
prop: 'startTime',
label: '实际发车时间',
type: 4,
values: '',
@ -199,19 +199,19 @@ export const columnList = [
fixed: false,
sortable: true,
},
// {
// prop: 'totalVolume',
// label: '总运输费用',
// type: 1,
// values: '',
// width: '130',
// checkarr: [],
// fixed: false,
// sortable: true,
// isshowSummary: true,
// },
{
prop: 'totalVolume',
label: '总运输费用',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
isshowSummary: true,
},
{
prop: 'createUserName',
prop: 'nowTransportCost',
label: '现付运输费',
type: 1,
values: '',
@ -222,8 +222,8 @@ export const columnList = [
sortable: true,
},
{
prop: 'totalWeight',
label: '油费',
prop: 'oilCost',
label: '到付费',
type: 1,
values: '',
width: '130',
@ -233,7 +233,7 @@ export const columnList = [
isshowSummary: true,
},
{
prop: 'totalVolume',
prop: 'tollFee',
label: '路桥费',
type: 1,
values: '',
@ -244,7 +244,7 @@ export const columnList = [
isshowSummary: true,
},
{
prop: 'createUserName',
prop: 'backTransportCost',
label: '回付运输费',
type: 1,
values: '',
@ -255,7 +255,7 @@ export const columnList = [
isshowSummary: true,
},
{
prop: 'createUserName',
prop: 'reachTransportCost',
label: '到付运输费',
type: 1,
values: '',
@ -266,7 +266,7 @@ export const columnList = [
isshowSummary: true,
},
{
prop: 'totalWeight',
prop: 'wholeCarInfoCost',
label: '整车信息费',
type: 1,
values: '',
@ -277,7 +277,7 @@ export const columnList = [
isshowSummary: true,
},
{
prop: 'totalVolume',
prop: 'wholeCarInsuranceCost',
label: '整车保险费',
type: 1,
values: '',
@ -288,7 +288,7 @@ export const columnList = [
isshowSummary: true,
},
{
prop: 'createUserName',
prop: 'wholeCarGroundCost',
label: '整车落地费',
type: 1,
values: '',
@ -299,7 +299,7 @@ export const columnList = [
isshowSummary: true,
},
{
prop: 'totalWeight',
prop: 'hairWholeCost',
label: '发站装车费',
type: 1,
values: '',
@ -310,7 +310,7 @@ export const columnList = [
isshowSummary: true,
},
{
prop: 'totalVolume',
prop: 'hairWholeOtherCost',
label: '发站其他费',
type: 1,
values: '',
@ -321,7 +321,7 @@ export const columnList = [
isshowSummary: true,
},
{
prop: 'createUserName',
prop: 'unloadCost',
label: '到站卸车费',
type: 1,
values: '',
@ -332,7 +332,7 @@ export const columnList = [
isshowSummary: true,
},
{
prop: 'createUserName',
prop: 'unloadOtherCost',
label: '到站其它费',
type: 1,
values: '',
@ -342,18 +342,18 @@ export const columnList = [
sortable: true,
isshowSummary: true,
},
{
prop: 'totalWeight',
label: '经办人',
type: 2,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'totalVolume',
// {
// prop: 'totalWeight',
// label: '经办人',
// type: 2,
// values: '',
// width: '130',
// checkarr: [],
// fixed: false,
// sortable: true,
// },
{
prop: 'createTime',
label: '创建时间',
type: 1,
values: '',
@ -362,17 +362,17 @@ export const columnList = [
fixed: false,
sortable: true,
},
{
prop: 'createUserName',
label: '卸车总收入',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
isshowSummary: true,
},
// {
// prop: 'createUserName',
// label: '卸车总收入',
// type: 1,
// values: '',
// width: '130',
// checkarr: [],
// fixed: false,
// sortable: true,
// isshowSummary: true,
// },
{
prop: 'createUserName',
label: '操作',

33
src/router/views/index.js

@ -202,6 +202,39 @@ export default [
/* webpackChunkName: "views" */ '@/views/distribution/artery/AddVehicleStowage.vue'
),
},
{
path: 'truckLoadingDetails',
name: '装车明细',
meta: {
i18n: 'data',
},
component: () =>
import(
/* webpackChunkName: "views" */ '@/views/distribution/artery/truckLoadingDetails.vue'
),
},
{
path: 'addTripartiteTransfer',
name: '新增中转',
meta: {
i18n: 'data',
},
component: () =>
import(
/* webpackChunkName: "views" */ '@/views/distribution/artery/addTripartiteTransfer.vue'
),
},
{
path: 'TripartiteTransferDetails',
name: '中转详情',
meta: {
i18n: 'data',
},
component: () =>
import(
/* webpackChunkName: "views" */ '@/views/distribution/artery/TripartiteTransferDetails.vue'
),
},
],
},
// {

15
src/utils/util.js

@ -593,3 +593,18 @@ export const isNumer = value => {
if (_value !== _value) return false;
return true;
};
/** 防抖函数 */
export function debounce(func, delay) {
let timer;
return (function () {
const context = this;
const args = arguments;
clearTimeout(timer);
timer = setTimeout(function () {
// func.apply(context, args);
func();
clearTimeout(timer);
}, delay);
})();
}

300
src/views/aftersales/aftersalesProcessingMoney.vue

@ -0,0 +1,300 @@
<template>
<basic-container>
<div class="avue-crud">
<el-row :hidden="!search" style="padding:6px 18px">
<!-- 查询模块 -->
<el-form :inline="true" :model="query">
<!-- 查询按钮 -->
<el-form-item>
<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 v-if="this.permissionList.addBtn" type="primary" icon="el-icon-plus" @click="handleAdd"> </el-button>
<el-button v-if="this.permissionList.delBtn" type="danger" icon="el-icon-delete" @click="handleDelete" plain> </el-button>
</div>
<!-- 头部右侧按钮模块 -->
<div class="avue-crud__right">
<el-button icon="el-icon-refresh" @click="searchChange" circle></el-button>
<el-button icon="el-icon-search" @click="searchHide" circle></el-button>
</div>
</div>
</el-row>
<el-row>
<!-- 列表模块 -->
<el-table ref="table" v-loading="loading"
@selection-change="selectionChange"
:data="data"
:height="height"
style="width: 100%"
:border="option.border">
<el-table-column type="selection" v-if="option.selection" width="55" align="center"></el-table-column>
<el-table-column type="expand" v-if="option.expand" align="center"></el-table-column>
<el-table-column v-if="option.index" label="#" type="index" width="50" align="center">
</el-table-column>
<template v-for="(item,index) in option.column">
<!-- table字段 -->
<el-table-column v-if="item.hide!==true"
:prop="item.prop"
:label="item.label"
:width="item.width"
:key="index">
</el-table-column>
</template>
<!-- 操作栏模块 -->
<el-table-column prop="menu" label="操作" :width="220" align="center">
<template #="{row}">
<el-button v-if="this.permissionList.viewBtn" type="primary" text icon="el-icon-view" @click="handleView(row)">查看</el-button>
<el-button v-if="this.permissionList.editBtn" type="primary" text icon="el-icon-edit" @click="handleEdit(row)">编辑</el-button>
<el-button v-if="this.permissionList.delBtn" type="primary" text icon="el-icon-delete" @click="rowDel(row)">删除</el-button>
</template>
</el-table-column>
</el-table>
</el-row>
<el-row>
<div class="avue-crud__pagination" style="width:100%">
<!-- 分页模块 -->
<el-pagination align="right"
background
@size-change="sizeChange"
@current-change="currentChange"
:current-page="page.currentPage"
:page-sizes="[10, 20, 30, 40, 50, 100]"
:page-size="page.pageSize"
layout="total, sizes, prev, pager, next, jumper"
:total="page.total">
</el-pagination>
</div>
</el-row>
<!-- 表单模块 -->
<el-dialog :title="title"
v-model="box"
width="50%"
:before-close="beforeClose"
append-to-body>
<el-form :disabled="view" ref="form" :model="form" label-width="80px">
<!-- 表单字段 -->
<el-form-item label="处理结果类型" prop="resultType">
<el-input v-model="form.resultType" placeholder="请输入处理结果类型"/>
</el-form-item>
<el-form-item label="金额" prop="money">
<el-input v-model="form.money" placeholder="请输入金额"/>
</el-form-item>
<el-form-item label="处理结果ID" prop="processingResultsId">
<el-input v-model="form.processingResultsId" placeholder="请输入处理结果ID"/>
</el-form-item>
<el-form-item label="类型" prop="typesOf">
<el-input v-model="form.typesOf" placeholder="请输入类型"/>
</el-form-item>
</el-form>
<!-- 表单按钮 -->
<template #footer>
<span v-if="!view" class="dialog-footer">
<el-button type="primary" icon="el-icon-circle-check" @click="handleSubmit"> </el-button>
<el-button icon="el-icon-circle-close" @click="box = false"> </el-button>
</span>
</template>
</el-dialog>
</div>
</basic-container>
</template>
<script>
import { getList, getDetail, add, update, remove } from "@/api/aftersales/aftersalesProcessingMoney";
import option from "@/option/aftersales/aftersalesProcessingMoney";
import { mapGetters } from "vuex";
export default {
data () {
return {
height: 0,
//
title: '',
//
box: false,
//
search: true,
//
loading: true,
//
view: false,
//
query: {},
//
page: {
currentPage: 1,
pageSize: 10,
total: 40
},
//
form: {},
//
selectionList: [],
//
option: option,
//
data: [],
}
},
mounted() {
this.init();
this.onLoad(this.page);
},
computed: {
...mapGetters(["permission"]),
permissionList() {
return {
addBtn: this.validData(this.permission.param_add, false),
viewBtn: this.validData(this.permission.param_view, false),
delBtn: this.validData(this.permission.param_delete, false),
editBtn: this.validData(this.permission.param_edit, false),
};
},
ids() {
let ids = [];
this.selectionList.forEach(ele => {
ids.push(ele.id);
});
return ids.join(",");
}
},
methods: {
init() {
this.height = this.setPx(document.body.clientHeight - 340);
},
searchHide() {
this.search = !this.search;
},
searchChange() {
this.onLoad(this.page);
},
searchReset() {
this.query = {};
this.page.currentPage = 1;
this.onLoad(this.page);
},
handleSubmit() {
if (!this.form.id) {
add(this.form).then(() => {
this.box = false;
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
});
} else {
update(this.form).then(() => {
this.box = false;
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
})
}
},
handleAdd(){
this.title = '新增'
this.form = {}
this.box = true
},
handleEdit(row) {
this.title = '编辑'
this.box = true
getDetail(row.id).then(res => {
this.form = res.data.data;
});
},
handleView(row) {
this.title = '查看'
this.view = true;
this.box = true;
getDetail(row.id).then(res => {
this.form = res.data.data;
});
},
handleDelete() {
if (this.selectionList.length === 0) {
this.$message.warning("请选择至少一条数据");
return;
}
this.$confirm("确定将选择数据删除?", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning"
})
.then(() => {
return remove(this.ids);
})
.then(() => {
this.selectionClear();
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
});
},
rowDel(row) {
this.$confirm("确定将选择数据删除?", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning"
})
.then(() => {
return remove(row.id);
})
.then(() => {
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
});
},
beforeClose (done) {
done()
this.form = {};
this.view = false;
},
selectionChange(list) {
this.selectionList = list;
},
selectionClear() {
this.selectionList = [];
this.$refs.table.clearSelection();
},
currentChange(currentPage) {
this.page.currentPage = currentPage;
this.onLoad(this.page);
},
sizeChange(pageSize) {
this.page.pageSize = pageSize;
this.onLoad(this.page);
},
onLoad(page, params = {}) {
this.loading = true;
const {
} = this.query;
let values = {
};
getList(page.currentPage, page.pageSize, values).then(res => {
const data = res.data.data;
this.page.total = data.total;
this.data = data.records;
this.loading = false;
this.selectionClear();
});
}
}
};
</script>

4
src/views/basicdata/warehouse/goodsAllocation/BasicdataGoodsAllocation.vue

@ -136,7 +136,7 @@ export default {
imgUrl: '',
qrCodeObj: [],
dialogVisible: false,
html: null, //
html: '', //
};
},
computed: {
@ -437,10 +437,10 @@ export default {
let qr = checkcode.join(',');
console.log(qr);
this.html = '';
getPrintTemplate(qr).then(res => {
// this.orderPackageCode = res.data
console.log(res.data);
this.html = '';
this.html = this.getHtmls(res.data.data.dataList, res.data.data.templateHtml);
});
this.dialogVisible = true;

4
src/views/basicdata/warehouse/goodsShelf/basicdataGoodsShelf.vue

@ -612,7 +612,7 @@ export default {
selectionList: [],
//
allselectionList: [],
html: null, //
html: '', //
excelOption: {
submitBtn: false,
emptyBtn: false,
@ -997,10 +997,10 @@ export default {
let qr = checkcode.join(',');
console.log(qr);
this.html = '';
getPrintTemplate(qr).then(res => {
// this.orderPackageCode = res.data
console.log(res.data);
this.html = '';
this.html = this.getHtmls(res.data.data.dataList, res.data.data.templateHtml);
});
this.dialogVisible = true;

2
src/views/basicdata/warehouse/tray/basicdataTray.vue

@ -394,10 +394,10 @@ export default {
let qr = checkcode.join(',');
console.log(qr);
this.html = '';
getPrintTemplate(qr).then(res => {
// this.orderPackageCode = res.data
console.log(res.data);
this.html = '';
this.html = this.getHtmls(res.data.data.dataList, res.data.data.templateHtml);
});
this.dialogVisible = true;

34
src/views/distribution/artery/AddVehicleStowage.vue

@ -69,7 +69,7 @@
filterable
remote
reserve-keyword
placeholder="车牌号"
placeholder="输入车牌号"
@change="handleCarChange"
:remote-method="remoteMethodCar"
:loading="details.loadingObj.loading"
@ -94,7 +94,7 @@
remote
@change="handleNameChange(1)"
reserve-keyword
placeholder="车牌号"
placeholder="输入司机名称"
:remote-method="remoteMethodDriver"
:loading="details.loadingObj.loading"
>
@ -118,7 +118,7 @@
remote
reserve-keyword
@change="handleNameChange(2)"
placeholder="车牌号"
placeholder="输入司机名称"
:remote-method="remoteMethodDriver"
:loading="details.loadingObj.loading"
>
@ -647,7 +647,7 @@ const details = reactive<any>({
carListByName: [],
/** 司机 */
driverListByName: [],
/** 当前页面类型 -- 1: 新增; 2: 编辑 */
/** 当前页面类型 -- 1: 新增; 2: 编辑; 3: 零担补录 */
pageType: 1,
/** 编辑模式下当前仓的位置索引 */
warehouseIndex: computed(() => {
@ -776,6 +776,7 @@ onLoad();
/** 查询仓库 */
const remoteMethod = async val => {
if (!val) return;
const res = await postFindWarehouseListByName({ warehouseName: val });
const { code, data } = res.data;
if (code !== 200) return;
@ -1092,6 +1093,8 @@ const handleRemoveWaybill = (index: number) => {
/** 查询司机信息 */
const remoteMethodDriver = async val => {
if (!val) return;
const res = await postFindDriverListByName({ driverName: val });
console.log('res :>> ', res);
const { code, data } = res.data;
@ -1099,8 +1102,10 @@ const remoteMethodDriver = async val => {
details.driverListByName = data;
};
/** 查询司机信息 */
/** 查询车辆信息 */
const remoteMethodCar = async val => {
if (!val) return;
const res = await postFindCarListByName({ carNumber: val });
console.log('res :>> ', res);
const { code, data } = res.data;
@ -1338,4 +1343,23 @@ const handleSubmit = (formEl: FormInstance | undefined) => {
bottom: 30px;
left: 50%;
}
//
:deep(.el-form-item__error) {
z-index: 99;
--el-color-danger: #f00;
}
:deep(.el-form-item.is-error .el-input__wrapper) {
--el-color-danger: #f00;
}
:deep(
.el-form-item.is-required:not(.is-no-asterisk).asterisk-left > .el-form-item__label:before,
.el-form-item.is-required:not(.is-no-asterisk).asterisk-left
> .el-form-item__label-wrap
> .el-form-item__label:before
) {
--el-color-danger: #f00;
}
</style>

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

@ -85,10 +85,14 @@
<el-button type="primary" icon="Printer" @click="searchReset()"
>装载卸车清单(财务)</el-button
>
<el-button type="primary" icon="Van" @click="searchReset()"> </el-button>
<el-button type="primary" icon="Delete" @click="searchReset()">取消发车</el-button>
<el-button type="primary" icon="Delete" @click="searchReset()">取消装车</el-button>
<el-button type="primary" icon="CircleCheck" @click="searchReset()"> </el-button>
<el-button type="primary" icon="Van" @click="handleConfirmStartCar"> </el-button>
<el-button type="primary" icon="Delete" @click="handleCancelStartCar">
取消发车
</el-button>
<!-- 到达 -->
<el-button type="primary" icon="CircleCheck" @click="handleShowConfirm">
</el-button>
<el-button type="primary" icon="Edit" @click="searchReset()"> </el-button>
</div>
<!-- 头部右侧按钮模块 -->
@ -101,40 +105,38 @@
</el-row>
<!-- 表格 -->
<el-row>
<!-- 列表模块 -->
<tablecmt
: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 === '批次号'">
<el-text>123</el-text>
</template>
<template v-if="slotProps.scope.column.label === '操作'">
<el-button type="text" @click="handleShowzeroAdditionalRecording(slotProps.scope)">
删除
</el-button>
<el-button type="text" @click="handleShowzeroAdditionalRecording(slotProps.scope)">
文员签收
</el-button>
<el-button type="text" @click="handleShowzeroAdditionalRecording(slotProps.scope)">
结算
</el-button>
<el-button type="text" @click="handleShowTruckLoadingDetails(slotProps.scope)"
>装车明细</el-button
>
</template>
<!-- 列表模块 -->
<tablecmt
: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 === '批次号'">
<el-text>123</el-text>
</template>
</tablecmt>
</el-row>
<template v-if="slotProps.scope.column.label === '操作'">
<el-button type="text" @click="handleShowzeroAdditionalRecording(slotProps.scope)">
删除
</el-button>
<el-button type="text" @click="handleShowzeroAdditionalRecording(slotProps.scope)">
文员签收
</el-button>
<el-button type="text" @click="handleShowzeroAdditionalRecording(slotProps.scope)">
结算
</el-button>
<el-button type="text" @click="handleShowTruckLoadingDetails(slotProps.scope)"
>装车明细</el-button
>
</template>
</template>
</tablecmt>
<!-- 统计 -->
<el-row>
@ -152,7 +154,7 @@
background
@size-change="sizeChange"
@current-change="currentChange"
:current-page="page.currentPage"
:current-page="page.pageNum"
:page-sizes="[30, 50, 80, 120]"
:page-size="page.pageSize"
layout="total, sizes, prev, pager, next, jumper"
@ -232,7 +234,7 @@
background
@size-change="sizeChange"
@current-change="currentChange"
:current-page="trickleLoadingPage.currentPage"
:current-page="trickleLoadingPage.pageNum"
:page-sizes="[30, 50, 80, 120]"
:page-size="trickleLoadingPage.pageSize"
layout="total, sizes, prev, pager, next, jumper"
@ -241,6 +243,44 @@
</el-pagination>
</el-dialog>
<!-- 编辑弹窗 -->
<el-dialog
title="确认到达信息"
v-model="details.popUpShow.confirmArriveVisited"
width="50%"
:before-close="beforeClose"
append-to-body
class="confirmArriveVisited"
>
<el-form :inline="false" label-width="100px" :model="query">
<el-form-item label="到达时间">
<el-date-picker
v-model="details.form.arriveDateStr"
type="datetime"
placeholder="到达时间"
size="default"
/>
</el-form-item>
<el-form-item label="备注(非必填)">
<el-input v-model="details.form.remark" type="textarea" placeholder="备注" size="default" />
</el-form-item>
</el-form>
<div class="flex-c-c">
<el-button
@click="
() => {
details.form = {};
details.popUpShow.confirmArriveVisited = false;
}
"
>
取消
</el-button>
<el-button type="primary" icon="Promotion" @click="submitConfirmArrive">提交</el-button>
</div>
</el-dialog>
<!-- 创建 && 编辑 中转 -->
<el-dialog
title="新增中转"
@ -449,7 +489,7 @@
background
@size-change="sizeChange"
@current-change="currentChange"
:current-page="zeroAdditionalRecordingInfo.oldPage.currentPage"
:current-page="zeroAdditionalRecordingInfo.oldPage.pageNum"
:page-sizes="[30, 50, 80, 120]"
:page-size="zeroAdditionalRecordingInfo.oldPage.pageSize"
layout="total, sizes, prev, pager, next, jumper"
@ -553,6 +593,13 @@ import {
oldColumnList,
newColumnList,
} from '@/option/distribution/TripartiteTransfer';
import {
postArriveCars,
postTripartiteTransferPageList,
postStartCars,
postCancelStartCars,
} from '@/api/distribution/TripartiteTransfer.js';
import { ElMessage, ElMessageBox } from 'element-plus';
import { useRouter } from 'vue-router';
//
@ -606,7 +653,7 @@ const details = reactive<any>({
/** 调度池 */
newColumnList,
/** 列表数据 */
data: [{}],
data: [],
newData: [],
oldData: [],
/** 页面loading */
@ -621,13 +668,13 @@ const details = reactive<any>({
drawerShow: false,
/** 分页参数 */
page: {
currentPage: 1,
pageNum: 1,
pageSize: 30,
total: 0,
},
/** 装车明细分页参数 */
trickleLoadingPage: {
currentPage: 1,
pageNum: 1,
pageSize: 30,
total: 0,
},
@ -637,6 +684,8 @@ const details = reactive<any>({
truckLoadingDetailVisited: false,
/** 零担补录 */
transferVisited: false,
/** 到达确认 */
confirmArriveVisited: false,
},
/** 列表Dom节点 */
listNode: '',
@ -645,7 +694,7 @@ const details = reactive<any>({
zeroAdditionalRecordingInfo: {
oldPage: {
pageSize: 30,
currentPage: 1,
pageNum: 1,
total: 0,
},
},
@ -682,7 +731,25 @@ onMounted(() => {
});
/** 请求页面数据 */
const onLoad = (page: any) => {};
const onLoad = async (params = {}) => {
try {
// loading
details.loadingObj.list = true;
//
const res = await postTripartiteTransferPageList(details.page, { ...details.query, ...params });
const { code, data } = res.data;
if (code !== 200) return;
details.data = data.records;
details.page.total = data.total;
} catch (error) {
console.log('error :>> ', error);
} finally {
details.loadingObj.list = false;
}
};
onLoad();
/** 搜索 */
const searchChange = () => {
@ -693,7 +760,7 @@ const searchChange = () => {
const searchReset = () => {
details.query = {};
details.stockupDate = [];
details.page.currentPage = 1;
details.page.pageNum = 1;
onLoad(details.page);
};
@ -769,6 +836,7 @@ const selectsc = (index, row) => {
/** 表格表头复选框选择 */
const selectionChange = (list: any) => {
console.log('list :>> ', list);
details.selectionList = list;
};
@ -864,6 +932,10 @@ const handleShowzeroAdditionalRecording = ({ row }) => {
/** 新增中转 */
const addTransfer = async () => {
$router.push({
path: '/distribution/artery/addTripartiteTransfer',
name: '新增中转',
});
return null;
};
@ -888,13 +960,13 @@ const handleShowTransfer = async (_type: string) => {
default:
break;
}
details.popUpShow.transferVisited = true;
// details.popUpShow.transferVisited = true;
nextTick(() => {
// ,
const _nodeList = document.querySelectorAll('.transferPopUp .maboxhi');
_nodeList.forEach(val => (val.style.height = '300px'));
});
// nextTick(() => {
// // ,
// const _nodeList = document.querySelectorAll('.transferPopUp .maboxhi');
// _nodeList.forEach(val => (val.style.height = '300px'));
// });
};
/** 添加运单 */
@ -909,6 +981,117 @@ const handleRemoveWaybill = () => {
// this.addInfo.newData = [...this.addInfo.newData, ...this.addInfo.oldSelectionList];
// this.addInfo.haveIds = this.addInfo.map(val => val.id);
};
/** 开启到达弹窗 */
const handleShowConfirm = () => {
if (details.selectionList.length === 0) {
return ElMessage({
message: '请选择到达数据',
type: 'warning',
});
} else if (details.selectionList.length !== 1) {
return ElMessage({
message: '仅支持单条数据操作',
type: 'warning',
});
}
details.popUpShow.confirmArriveVisited = true;
};
/** 提交到达 */
const submitConfirmArrive = async () => {
console.log('details.selectionList :>> ', details.selectionList);
console.log(
'details.selectionList.map(val => val.id) :>> ',
details.selectionList.map(val => val.id)
);
const submitData = {
loadId: details.selectionList.map(val => val.id).join(','),
...details.form,
};
const res = await postArriveCars(submitData);
const { code } = res.data;
if (code !== 200) {
return;
}
ElMessage({
type: 'success',
message: '到达成功',
});
onLoad();
};
/** 发车 */
const handleConfirmStartCar = () => {
if (details.selectionList.length === 0) {
return ElMessage({
message: '请选择发车数据',
type: 'warning',
});
} else if (details.selectionList.length !== 1) {
return ElMessage({
message: '仅支持单条数据操作',
type: 'warning',
});
}
ElMessageBox.confirm('确认发车吗?', 'Warning', {
confirmButtonText: '确认',
cancelButtonText: '取消',
type: 'warning',
}).then(async () => {
const submitData = {
loadId: details.selectionList.map(val => val.id).join(','),
};
const res = await postStartCars(submitData);
const { code } = res.data;
if (code !== 200) {
return;
}
ElMessage({
type: 'success',
message: '发车成功',
});
onLoad();
});
};
/** 取消发车 */
const handleCancelStartCar = () => {
if (details.selectionList.length === 0) {
return ElMessage({
message: '请选择发车数据',
type: 'warning',
});
} else if (details.selectionList.length !== 1) {
return ElMessage({
message: '仅支持单条数据操作',
type: 'warning',
});
}
ElMessageBox.confirm('确认取消发车吗?', 'Warning', {
confirmButtonText: '确认',
cancelButtonText: '取消',
type: 'warning',
}).then(async () => {
const submitData = {
loadId: details.selectionList.map(val => val.id).join(','),
};
const res = await postCancelStartCars(submitData);
const { code } = res.data;
if (code !== 200) {
return;
}
ElMessage({
type: 'success',
message: '取消发车成功',
});
onLoad();
});
};
</script>
<style scoped lang="scss">

1069
src/views/distribution/artery/TripartiteTransferDetails.vue

File diff suppressed because it is too large Load Diff

267
src/views/distribution/artery/VehicleStowage.vue

@ -76,12 +76,12 @@
<el-button type="primary" icon="el-icon-printer" @click="searchReset()"
>装载卸车清单(财务)</el-button
>
<el-button type="primary" icon="el-icon-van" @click="searchReset()"> </el-button>
<el-button type="primary" icon="el-icon-delete" @click="searchReset()"
<el-button type="primary" icon="el-icon-van" @click="handleStartCar()"> </el-button>
<el-button type="primary" icon="el-icon-delete" @click="handleCancelStartCar()"
>取消发车</el-button
>
<el-button type="primary" icon="el-icon-delete" @click="searchReset()"
>取消装车</el-button
<el-button type="primary" icon="el-icon-delete" @click="handleCancelCarsLoad()"
>取消配载</el-button
>
<el-button type="primary" icon="el-icon-document" @click="handleComparativeStatement()"
>对比报表</el-button
@ -100,37 +100,75 @@
</el-row>
<!-- 表格 -->
<el-row>
<!-- 列表模块 -->
<tablecmt
: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 === '批次号'">
<el-text>123</el-text>
</template>
<!-- 列表模块 -->
<tablecmt
: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 === '批次号'">
<el-text @click="handleGoWaybill(slotProps.scope)">123</el-text>
</template>
<template v-if="slotProps.scope.column.label === '操作'">
<!-- <el-text @click="handleShowzeroAdditionalRecording(slotProps.scope)">
<template v-if="slotProps.scope.column.label === '路线'">
<span
v-for="(item, index) in slotProps.scope.row.carsLoadLineList"
:key="item"
class="flex-c-c carsLineName"
>
<el-tooltip placement="top" effect="dark">
<template #content>
<div>
<span class="mr-10">网点:</span>
<span>{{ item.nodeName }}</span>
</div>
<div>
<span class="mr-10">运单总件数:</span>
<span>{{ item.nodeName }}</span>
</div>
<div>
<span class="mr-10">实际装车件数:</span>
<span>{{ item.nodeName }}</span>
</div>
<div>
<span class="mr-10">操作人:</span>
<span>{{ item.nodeName }}</span>
</div>
<div>
<span class="mr-10">状态:</span>
<span>{{ item.nodeName }}</span>
</div>
</template>
<el-text>{{ item.nodeName }}</el-text>
</el-tooltip>
<!-- <el-text @click="handleGoWaybill(slotProps.scope)">
{{ item.nodeName }}
</el-text> -->
<el-icon v-if="index !== slotProps.scope.row.carsLoadLineList.length - 1"
><Right
/></el-icon>
</span>
</template>
<template v-if="slotProps.scope.column.label === '操作'">
<!-- <el-text @click="handleShowzeroAdditionalRecording(slotProps.scope)">
零担补录
</el-text> -->
<el-text @click="handleShowTruckLoadingDetails(slotProps.scope)">装车明细</el-text>
<el-text>编辑</el-text>
<el-text>数据同步</el-text>
<el-text>批量装车</el-text>
<el-text>手动装车</el-text>
<el-text>节点费用</el-text>
</template>
<el-text @click="handleShowTruckLoadingDetails(slotProps.scope)">装车明细</el-text>
<el-text>编辑</el-text>
<el-text>数据同步</el-text>
<el-text>批量装车</el-text>
<el-text>手动装车</el-text>
<el-text>节点费用</el-text>
</template>
</tablecmt>
</el-row>
</template>
</tablecmt>
<!-- 统计 -->
<!-- <el-row>
@ -381,14 +419,19 @@ import dayjs from 'dayjs';
import { mapGetters } from 'vuex';
/** 获取字典 */
import { getDictionaryBiz } from '@/api/system/dict';
import { downloadXls, setNodeHeight } from '@/utils/util';
import { downloadXls, setNodeHeight, debounce } from '@/utils/util';
import {
columnList,
detailsColumnList,
warehouseNodeColumnList,
truckLoadingColumnList,
} from '@/option/distribution/VehicleStowage';
import { postloadCarsPageList } from '@/api/distribution/VehicleStowage';
import {
postloadCarsPageList,
postStartCarByLoadId,
postCancelStartCarByLoadId,
postCancelCarsLoadByLoadId,
} from '@/api/distribution/VehicleStowage';
import { useRouter } from 'vue-router';
import { ElMessage, ElMessageBox } from 'element-plus';
@ -481,6 +524,16 @@ const details = reactive<any>({
},
});
/** 车辆状态字典 */
const carStateDictionaries = reactive([
{ label: '未发车', code: 0 },
{ label: '已发车', code: 10 },
{ label: '网点到车', code: 20 },
{ label: '网点发车', code: 30 },
{ label: '终点到车', code: 40 },
{ label: '取消配载', code: 100 },
]);
const {
search,
query,
@ -581,7 +634,7 @@ onMounted(() => {
});
/** 请求页面数据 */
const onLoad = async (page: any, params = {}) => {
const onLoad = async (params = {}) => {
try {
// loading
details.loadingObj.list = true;
@ -590,7 +643,12 @@ const onLoad = async (page: any, params = {}) => {
const res = await postloadCarsPageList(details.page, { ...details.query, ...params });
const { code, data } = res.data;
if (code !== 200) return;
details.data = data.records;
details.data = data.records.map(val => {
val.loadStatusName = carStateDictionaries.find(
item => Number(val.loadStatus) === item.code
).label;
return val;
});
details.page.total = data.total;
} catch (error) {
console.log('error :>> ', error);
@ -599,7 +657,7 @@ const onLoad = async (page: any, params = {}) => {
}
};
onLoad(details.page);
onLoad();
/** 搜索 */
const searchChange = () => {
@ -782,6 +840,133 @@ const handleAdd = () => {
query: { name: '新增配载', type: 1 },
});
};
/** 前往配载详情 */
const handleGoWaybill = ({ row }) => {
console.log('row :>> ', row);
};
/** 发车 */
const handleStartCar = () => {
if (details.selectionList.length === 0) {
return ElMessage({
message: '请选择发车数据',
type: 'warning',
});
} else if (details.selectionList.length !== 1) {
return ElMessage({
message: '仅支持单条数据操作',
type: 'warning',
});
}
ElMessageBox.confirm('确认发车吗?', 'Warning', {
confirmButtonText: '确认',
cancelButtonText: '取消',
type: 'warning',
}).then(async () => {
const submitData = {
loadId: details.selectionList.map(val => val.id).join(','),
startCarType: '1',
};
const res = await postStartCarByLoadId(submitData);
const { code } = res.data;
if (code !== 200) {
return;
}
ElMessage({
type: 'success',
message: '发车成功',
});
onLoad();
});
};
/** 取消发车 */
const handleCancelStartCar = () => {
if (details.selectionList.length === 0) {
return ElMessage({
message: '请选择发车数据',
type: 'warning',
});
} else if (details.selectionList.length !== 1) {
return ElMessage({
message: '仅支持单条数据操作',
type: 'warning',
});
}
ElMessageBox.confirm('确认取消发车吗?', 'Warning', {
confirmButtonText: '确认',
cancelButtonText: '取消',
type: 'warning',
}).then(async () => {
const submitData = {
loadId: details.selectionList.map(val => val.id).join(','),
startCarType: '1',
};
const res = await postCancelStartCarByLoadId(submitData);
const { code } = res.data;
if (code !== 200) {
return;
}
ElMessage({
type: 'success',
message: '取消发车成功',
});
onLoad();
});
};
/** 取消装车 */
const handleCancelCarsLoad = () => {
if (details.selectionList.length === 0) {
return ElMessage({
message: '请选择发车数据',
type: 'warning',
});
} else if (details.selectionList.length !== 1) {
return ElMessage({
message: '仅支持单条数据操作',
type: 'warning',
});
}
ElMessageBox.confirm('确认取消发车吗?', 'Warning', {
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',
});
const submitData = {
loadId: ids.join(','),
startCarType: '1',
};
const res = await postCancelCarsLoadByLoadId(submitData);
const { code } = res.data;
if (code !== 200) {
return;
}
ElMessage({
type: 'success',
message: '取消配载成功',
});
onLoad();
});
};
</script>
<style scoped lang="scss">
@ -831,4 +1016,14 @@ const handleAdd = () => {
.red {
color: #ff0000;
}
.carsLineName {
:deep(.el-text) {
margin-right: 0px !important;
}
}
.mr-10 {
margin-right: 10px;
}
</style>

1124
src/views/distribution/artery/addTripartiteTransfer.vue

File diff suppressed because it is too large Load Diff

557
src/views/distribution/artery/truckLoadingDetails.vue

@ -5,37 +5,7 @@
<el-row v-if="!search">
<!-- 查询模块 -->
<el-form :inline="true" :model="query" class="el-fr-d">
<el-form-item label="网点:">
<el-input v-model="query.serviceNumber" placeholder="请选择网点" clearable></el-input>
</el-form-item>
<el-form-item label="承运时间:" class="el-times">
<el-date-picker
v-model="stockupDate"
type="daterange"
unlink-panels
range-separator="至"
start-placeholder="开始时间"
end-placeholder="结束时间"
:shortcuts="shortcuts"
clearable
/>
</el-form-item>
<el-form-item label="发车时间:" class="el-times">
<el-date-picker
v-model="stockupDate"
type="daterange"
unlink-panels
range-separator="至"
start-placeholder="开始时间"
end-placeholder="结束时间"
:shortcuts="shortcuts"
clearable
/>
</el-form-item>
<el-form-item label="创建时间:" class="el-times">
<el-form-item label="扫码时间:" class="el-times">
<el-date-picker
v-model="stockupDate"
type="daterange"
@ -48,7 +18,7 @@
/>
</el-form-item>
<el-form-item label="签收时间:" class="el-times">
<el-form-item label="卸车时间:" class="el-times">
<el-date-picker
v-model="stockupDate"
type="daterange"
@ -61,10 +31,6 @@
/>
</el-form-item>
<el-form-item label="车次号:" class="el-times">
<el-input v-model="query.stockupArea" placeholder="请输入车次号"></el-input>
</el-form-item>
<!-- 查询按钮 -->
<el-form-item class="el-btn">
<el-button type="primary" icon="el-icon-search" @click="searchChange"> </el-button>
@ -78,18 +44,12 @@
<div class="avue-crud__header">
<!-- 头部左侧按钮模块 -->
<div class="avue-crud__left">
<el-button type="primary" icon="Plus" @click="handleShowTransfer('add')"
>新增中转
<el-button type="primary" icon="Edit" @click="handleShowTransfer('add')"
>计划仓更改
</el-button>
<el-button type="primary" icon="Printer" @click="searchReset()">装载清单</el-button>
<el-button type="primary" icon="Printer" @click="searchReset()"
>装载卸车清单(财务)</el-button
>
<el-button type="primary" icon="Van" @click="searchReset()"> </el-button>
<el-button type="primary" icon="Delete" @click="searchReset()">取消发车</el-button>
<el-button type="primary" icon="Delete" @click="searchReset()">取消装车</el-button>
<el-button type="primary" icon="CircleCheck" @click="searchReset()"> </el-button>
<el-button type="primary" icon="Edit" @click="searchReset()"> </el-button>
<el-button type="primary" icon="List" @click="searchReset()">批量卸车</el-button>
<el-button type="primary" icon="Delete" @click="searchReset()">删除</el-button>
<el-button type="primary" icon="Printer" @click="searchReset()">二维码</el-button>
</div>
<!-- 头部右侧按钮模块 -->
<div class="avue-crud__right">
@ -104,7 +64,7 @@
<el-row>
<!-- 列表模块 -->
<tablecmt
:columnList="details.columnList"
:columnList="details.detailsColumnList"
:tableData="data"
:loading="loadingObj.list"
@inputTxt="inputsc"
@ -113,35 +73,10 @@
@selectCheck="selectsc"
@selection="selectionChange"
>
<template #default="slotProps">
<template v-if="slotProps.scope.column.label === '批次号'">
<el-text>123</el-text>
</template>
<template v-if="slotProps.scope.column.label === '操作'">
<el-button type="text" @click="handleShowzeroAdditionalRecording(slotProps.scope)">
删除
</el-button>
<el-button type="text" @click="handleShowzeroAdditionalRecording(slotProps.scope)">
文员签收
</el-button>
<el-button type="text" @click="handleShowzeroAdditionalRecording(slotProps.scope)">
结算
</el-button>
<el-button type="text" @click="handleShowTruckLoadingDetails(slotProps.scope)"
>装车明细</el-button
>
</template>
</template>
<template #default="slotProps"> </template>
</tablecmt>
</el-row>
<!-- 统计 -->
<el-row>
<div>选择数: , 运单数: , 件数: , 重量: , 体积: , 提货费: ,</div>
<div>总计: 总数: , 运单数: , 件数: , 重量: , 体积: , 提货费: ,</div>
</el-row>
<!-- 分页模块 -->
<el-row class="el-fy">
<div class="avue-crud__pagination flex-c-sb" style="width: 100%">
@ -164,372 +99,6 @@
</div>
</basic-container>
<!-- 编辑弹窗 -->
<el-dialog
title="装车明细"
v-model="details.popUpShow.truckLoadingDetailVisited"
width="80%"
:before-close="beforeClose"
append-to-body
class="truckLoadingDetailPopUp"
>
<el-form :inline="true" :model="query" class="el-fr-d">
<div class="fo-fl">
<el-form-item label="扫码时间:" class="el-times">
<!-- <el-input v-model="query.stockupArea" placeholder="请输入备货区"></el-input>-->
<el-date-picker
v-model="stockupDate"
type="daterange"
unlink-panels
range-separator="-"
start-placeholder="开始时间"
end-placeholder="结束时间"
:shortcuts="shortcuts"
clearable
/>
</el-form-item>
<el-form-item label="卸车时间:" class="el-times">
<!-- <el-input v-model="query.stockupArea" placeholder="请输入备货区"></el-input>-->
<el-date-picker
v-model="stockupDate"
type="daterange"
unlink-panels
range-separator="-"
start-placeholder="开始时间"
end-placeholder="结束时间"
:shortcuts="shortcuts"
clearable
/>
</el-form-item>
<el-form-item>
<el-button type="primary" icon="Edit" @click="searchChange">中转批量签收</el-button>
<el-button type="primary" icon="el-icon-search" @click="searchReset()"> </el-button>
<el-button icon="el-icon-printer" @click="searchReset()">二维码</el-button>
<el-button
icon="Operation"
@click="showdrawer(true, 'truckLoadingDetail')"
circle
></el-button>
</el-form-item>
</div>
</el-form>
<tablecmt
:columnList="details.detailsColumnList"
:tableData="data"
:loading="loadingObj.list"
@inputTxt="inputsc"
@timeCheck="timesc"
@btnCheck="btnsc"
@selectCheck="selectsc"
@selection="selectionChange"
>
<template #default="slotProps"> </template>
</tablecmt>
<!-- 分页模块 -->
<el-pagination
align="right"
background
@size-change="sizeChange"
@current-change="currentChange"
:current-page="trickleLoadingPage.currentPage"
:page-sizes="[30, 50, 80, 120]"
:page-size="trickleLoadingPage.pageSize"
layout="total, sizes, prev, pager, next, jumper"
:total="trickleLoadingPage.total"
>
</el-pagination>
</el-dialog>
<!-- 创建 && 编辑 中转 -->
<el-dialog
title="新增中转"
v-model="details.popUpShow.transferVisited"
width="80%"
:before-close="beforeClose"
append-to-body
class="transferPopUp"
>
<el-form :inline="true" label-width="100px" :model="query" class="el-fr-d">
<div class="fo-fl">
<el-form-item label="中转承运商">
<el-select
teleported="true"
v-model="query.value"
class="m-2"
placeholder="Select"
size="default"
>
<el-option
v-for="item in details.options"
:key="item.value"
:label="item.label"
:value="item.value"
/>
</el-select>
</el-form-item>
<el-form-item label="经办人">
<el-select v-model="query.value" class="m-2" placeholder="Select" size="default">
<el-option
v-for="item in details.options"
:key="item.value"
:label="item.label"
:value="item.value"
/>
</el-select>
</el-form-item>
<el-form-item label="送货方式">
<el-select v-model="query.value" class="m-2" placeholder="Select" size="default">
<el-option
v-for="item in details.options"
:key="item.value"
:label="item.label"
:value="item.value"
/>
</el-select>
</el-form-item>
<el-form-item label="付款方式">
<el-select v-model="query.value" class="m-2" placeholder="Select" size="default">
<el-option
v-for="item in details.options"
:key="item.value"
:label="item.label"
:value="item.value"
/>
</el-select>
</el-form-item>
<el-form-item label="运费分摊方式">
<el-select v-model="query.value" class="m-2" placeholder="Select" size="default">
<el-option
v-for="item in details.options"
:key="item.value"
:label="item.label"
:value="item.value"
/>
</el-select>
</el-form-item>
<el-form-item label="送货司机">
<el-select v-model="query.value" class="m-2" placeholder="Select" size="default">
<el-option
v-for="item in details.options"
:key="item.value"
:label="item.label"
:value="item.value"
/>
</el-select>
</el-form-item>
<el-form-item label="客户类型">
<el-select v-model="query.value" class="m-2" placeholder="Select" size="default">
<el-option
v-for="item in details.options"
:key="item.value"
:label="item.label"
:value="item.value"
/>
</el-select>
</el-form-item>
<el-form-item label="是否结算">
<el-select v-model="query.value" class="m-2" placeholder="Select" size="default">
<el-option
v-for="item in details.options"
:key="item.value"
:label="item.label"
:value="item.value"
/>
</el-select>
</el-form-item>
<el-form-item label="代收贷款">
<el-input-number :precision="2" :step="1" controls-position="right" />
</el-form-item>
<el-form-item label="承运单号">
<el-input />
</el-form-item>
<el-form-item label="承运时间">
<el-date-picker
v-model="query.value1"
type="date"
placeholder="承运时间"
size="default"
/>
</el-form-item>
<el-form-item label="客户收货时间">
<el-date-picker
v-model="query.value1"
type="date"
placeholder="客户收货时间"
size="default"
/>
</el-form-item>
<el-form-item label="运费">
<el-input-number :precision="2" :step="1" controls-position="right" />
</el-form-item>
<el-form-item label="司机结算费">
<el-input-number :precision="2" :step="1" controls-position="right" />
</el-form-item>
</div>
<div style="width: 100%">
<el-form-item label="备注"> <el-input type="textarea" placeholder="备注" /></el-form-item>
</div>
</el-form>
<div class="add_row">
<!-- 列表模块 -->
<div style="width: 47%">
<div class="add_row_title">运单池</div>
<div v-if="!search">
<el-form :inline="true" label-width="80px" :model="details.oldQuery" class="el-fr-d">
<div class="fo-fl">
<el-form-item label="备注" class="el-times">
<el-input></el-input>
</el-form-item>
<el-form-item label="托盘码" class="el-times">
<el-input></el-input>
</el-form-item>
<el-form-item class="el-times">
<el-date-picker
v-model="stockupDate"
type="daterange"
unlink-panels
range-separator="-"
start-placeholder="开单日期"
end-placeholder="开单日期"
:shortcuts="shortcuts"
clearable
/>
</el-form-item>
<el-form-item>
<el-button type="primary" icon="el-icon-search" @click="searchReset()"
> </el-button
>
<el-button icon="el-icon-delete" @click="searchReset()">重置</el-button>
</el-form-item>
</div>
</el-form>
</div>
<div style="margin-bottom: 10px" class="flex-c-sb">
<!-- 控件 -->
<div class="avue-crud__right">
<el-button icon="el-icon-refresh" @click="searchChange" circle></el-button>
<el-button icon="Operation" @click="showdrawer(true, 1)" circle></el-button>
<el-button icon="el-icon-search" @click="searchHide" circle></el-button>
</div>
<el-button type="text" style="cursor: pointer" @click="handleAddWaybill">
加入调度池
<el-icon><CaretRight /></el-icon>
</el-button>
</div>
<tablecmt
:columnList="details.oldColumnList"
:tableData="details.oldData"
:loading="loadingObj.oldListLoading"
@inputTxt="inputsc"
@timeCheck="timesc"
@btnCheck="btnsc"
@selectCheck="selectsc"
@selection="selectionChange"
>
</tablecmt>
<!-- 统计行 -->
<div class="statistics_row">
<!-- <div>合计: 选择数: {{ addInfo.oldSelectionList.length }}</div>
<div>件数: {{ selectionList.length }}</div>
<div>重量: {{ selectionList.length }}</div>
<div>体积: {{ selectionList.length }}</div> -->
</div>
<div class="avue-crud__pagination flex-c-sb" style="width: 100%">
<!-- 分页模块 -->
<el-pagination
style="zoom: 0.9"
align="right"
background
@size-change="sizeChange"
@current-change="currentChange"
:current-page="zeroAdditionalRecordingInfo.oldPage.currentPage"
:page-sizes="[30, 50, 80, 120]"
:page-size="zeroAdditionalRecordingInfo.oldPage.pageSize"
layout="total, sizes, prev, pager, next, jumper"
:total="zeroAdditionalRecordingInfo.oldPage.total"
>
</el-pagination>
</div>
</div>
<!-- 列表模块 -->
<div style="width: 47%">
<div class="add_row_title">调度池</div>
<div v-if="!search">
<el-form :inline="true" label-width="80px" :model="details.newQuery" class="el-fr-d">
<div class="fo-fl">
<el-form-item label="备注" class="el-times">
<el-input></el-input>
</el-form-item>
<el-form-item label="托盘码" class="el-times">
<el-input></el-input>
</el-form-item>
<el-form-item class="el-times">
<el-date-picker
v-model="stockupDate"
type="daterange"
unlink-panels
range-separator="-"
start-placeholder="开单日期"
end-placeholder="开单日期"
:shortcuts="shortcuts"
clearable
/>
</el-form-item>
<el-form-item>
<el-button type="primary" icon="el-icon-search" @click="searchReset()"
> </el-button
>
<el-button icon="el-icon-delete" @click="searchReset()">重置</el-button>
</el-form-item>
</div>
</el-form>
</div>
<div style="margin-bottom: 10px" class="flex-c-sb">
<el-button type="text" class="pointer" @click="handleRemoveWaybill">
<el-icon><CaretLeft /></el-icon>
移除调度池
</el-button>
<!-- 控件 -->
<div class="avue-crud__right">
<el-button icon="el-icon-refresh" @click="searchChange" circle></el-button>
<el-button icon="Operation" @click="showdrawer(true, 2)" circle></el-button>
<el-button icon="el-icon-search" @click="searchHide" circle></el-button>
</div>
</div>
<tablecmt
:columnList="details.newColumnList"
:tableData="details.newData"
:loading="loadingObj.newListLoading"
@inputTxt="newInputsc"
@timeCheck="newTimesc"
@btnCheck="newBtnsc"
@selectCheck="newSelectsc"
@selection="newSelectionChange"
>
</tablecmt>
<div class="statistics_row">
<!-- <div>合计: 选择数: {{ addInfo.oldSelectionList.length }}</div>
<div>件数: {{ selectionList.length }}</div>
<div>重量: {{ selectionList.length }}</div>
<div>体积: {{ selectionList.length }}</div> -->
</div>
</div>
<!-- <el-button></el-button> -->
</div>
</el-dialog>
<!-- 列表配置显示 -->
<edittablehead
@setcolum="setnewcolum"
@ -547,12 +116,7 @@ import { mapGetters } from 'vuex';
/** 获取字典 */
import { getDictionaryBiz } from '@/api/system/dict';
import { downloadXls } from '@/utils/util';
import {
columnList,
detailsColumnList,
oldColumnList,
newColumnList,
} from '@/option/distribution/TripartiteTransfer';
import { detailsColumnList } from '@/option/distribution/TripartiteTransfer';
import { useRouter } from 'vue-router';
//
@ -595,25 +159,14 @@ const details = reactive<any>({
],
/** 时间选择器数据 */
stockupDate: [],
/** 列表 */
columnList,
/** 装车明细表头信息 */
detailsColumnList,
/** 修改的列表信息 */
editColumnList: [],
/** 运单池 */
oldColumnList,
/** 调度池 */
newColumnList,
/** 列表数据 */
data: [{}],
newData: [],
oldData: [],
/** 页面loading */
loadingObj: {
/** 列表加载loading */
list: false,
oldListLoading: false,
},
/** 列表复选框选中的数据 */
selectionList: [],
@ -625,12 +178,6 @@ const details = reactive<any>({
pageSize: 30,
total: 0,
},
/** 装车明细分页参数 */
trickleLoadingPage: {
currentPage: 1,
pageSize: 30,
total: 0,
},
/** 弹出层显示 */
popUpShow: {
/** 装车详情 */
@ -641,16 +188,6 @@ const details = reactive<any>({
/** 列表Dom节点 */
listNode: '',
form: {},
/** 零担补录信息 */
zeroAdditionalRecordingInfo: {
oldPage: {
pageSize: 30,
currentPage: 1,
total: 0,
},
},
/** 无用 */
options: [],
});
const {
@ -664,8 +201,6 @@ const {
drawerShow,
page,
trickleLoadingPage,
zeroAdditionalRecordingInfo,
popUpShow,
} = toRefs(details);
/** vuex */
@ -679,6 +214,78 @@ onMounted(() => {
console.log('details.listNode :>> ', details.listNode);
clearTimeout(timer);
}, 100);
/**
* 初始化获取本地缓存的编辑隐藏的列表
* 固定搭配不能更改
*/
let checkListnewarr = functions.getStorage(window.location.pathname + 'checkList');
let flexListnewarr = functions.getStorage(window.location.pathname + 'flexList');
let sortlistnewarr = functions.getStorage(window.location.pathname + 'sortlist');
if (checkListnewarr) {
details.columnList.map(item => {
item.head = false;
});
checkListnewarr.map(ite => {
details.columnList.map(item => {
if (ite == item.label) {
item.head = true;
}
});
});
} else {
let arr = [];
details.columnList.map(item => {
if (item.head) {
arr.push(item.label);
}
});
functions.setStorage(window.location.pathname + 'checkList', arr);
}
if (flexListnewarr) {
details.columnList.map(item => {
item.fixed = false;
});
flexListnewarr.map(ite => {
details.columnList.map(item => {
if (ite == item.label) {
if (item.type == 6) {
item.fixed = 'right';
} else {
item.fixed = true;
}
}
});
});
} else {
let arr = [];
details.columnList.map(item => {
if (item.fixed) {
arr.push(item.label);
}
});
functions.setStorage(window.location.pathname + 'flexList', arr);
}
if (sortlistnewarr) {
details.columnList.map(item => {
item.sortable = false;
});
sortlistnewarr.map(ite => {
details.columnList.map(item => {
if (ite == item.label) {
item.sortable = true;
}
});
});
} else {
let arr = [];
details.columnList.map(item => {
if (item.sortable) {
arr.push(item.label);
}
});
functions.setStorage(window.location.pathname + 'sortlist', arr);
}
});
/** 请求页面数据 */

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

@ -1153,6 +1153,7 @@ export default {
return;
}
this.isShow = true;
this.html = '';
const res = await printBatch({ ids: Array.from(this.selectionList).join(','), type: 1 });
console.log('res :>> ', res);
const {
@ -1160,7 +1161,6 @@ export default {
} = res;
if (code === 200) {
//
this.html = '';
data.forEach(item => {
this.html += item.templateHtml;
});
@ -1172,6 +1172,7 @@ export default {
*/
async printOrder(row) {
console.log('row :>> ', row);
this.html = '';
const res = await printBatch({ ids: row.id, type: 1 });
console.log('res :>> ', res);
const {
@ -1179,7 +1180,6 @@ export default {
} = res;
if (code === 200) {
//
this.html = '';
data.forEach(item => {
this.html += item.templateHtml;
});

74
src/views/distribution/deliverylist/distributionDeliveryListedt.vue

@ -287,6 +287,9 @@
<!-- >查看详情-->
<!-- </el-text>-->
<!-- </template>-->
<template #default="slotProps">
<el-text size="small" @click="handleInventoryQRCode(slotProps.scope.row)">查看二维码</el-text>
</template>
</tablecmt>
</el-tab-pane>
</el-tabs>
@ -618,6 +621,7 @@ import {
getinventorydetail,
} from '@/api/distribution/distributionDeliveryList';
import { showOrderPackgeCode } from '@/api/distribution/distributionStockArticle';
import { showInventoryPackgeCode } from '@/api/distribution/distributionStockList';
import { update as updatesign, getOneclickq } from '@/api/distribution/distributionSignfor';
import option from '@/option/basic/basicPdarecords';
import { mapGetters } from 'vuex';
@ -629,6 +633,7 @@ import { getToken } from '@/utils/auth';
export default {
data() {
return {
html:'',
dialogImageUrl: '', //
dialogVisible: false, //
dialogImageUrlA: '',
@ -1591,8 +1596,18 @@ export default {
],
inventoryoptioncolumn: [
{
prop: 'sku',
label: 'SKU',
prop: 'incomingBatch',
label: '入库批次号',
type: 2,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
}, {
prop: 'orderCode',
label: '订单自编码',
type: 2,
values: '',
width: '150',
@ -1602,8 +1617,30 @@ export default {
head: false,
},
{
prop: 'descriptionGoods',
label: '物料名称',
prop: 'serviceNumber',
label: '服务号',
type: 2,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'marketName',
label: '商场名称',
type: 2,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'brandName',
label: '品牌',
type: 2,
values: '',
width: '150',
@ -1623,6 +1660,17 @@ export default {
sortable: true,
head: false,
},
{
prop: 'descriptionGoods',
label: '物料名称',
type: 2,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'cargoNorms',
label: '物料规格',
@ -2815,6 +2863,22 @@ export default {
timesc() {},
btnsc() {},
selectsc() {},
handleInventoryQRCode(row){
this.materialQRCode = row;
console.log('row------------>',row);
// let qr = {
// ids: row.id,
// };
this.html = '';
showInventoryPackgeCode(row.reservationId,row.id).then(res => {
// this.orderPackageCode = res.data
console.log(res.data);
this.html = this.getHtmls(res.data.data.dataList, res.data.data.templateHtml);
});
this.dialogVisibleF = true;
},
/**
* 查看二维码
* @param {*} row
@ -2828,10 +2892,10 @@ export default {
let qr = {
ids: row.id,
};
this.html = '';
showOrderPackgeCode(qr).then(res => {
// this.orderPackageCode = res.data
console.log(res.data);
this.html = '';
this.html = this.getHtmls(res.data.data.dataList, res.data.data.templateHtml);
});

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

@ -1071,6 +1071,7 @@ export default {
return;
}
this.isShow = true;
this.html = '';
const res = await printBatch({ ids: Array.from(this.selectionList).join(','), type: 2 });
console.log('res :>> ', res);
const {
@ -1078,7 +1079,6 @@ export default {
} = res;
if (code === 200) {
//
this.html = '';
data.forEach(item => {
this.html += item.templateHtml;
});
@ -1090,6 +1090,7 @@ export default {
*/
async printOrder(row) {
console.log('row :>> ', row);
this.html = '';
const res = await printBatch({ ids: row.id, type: 2 });
console.log('res :>> ', res);
const {
@ -1097,7 +1098,6 @@ export default {
} = res;
if (code === 200) {
//
this.html = '';
data.forEach(item => {
this.html += item.templateHtml;
});

4
src/views/distribution/inventory/distributionStockArticleDetails.vue

@ -1248,10 +1248,10 @@ export default {
ids: checkcode.join(','),
// qrCodes: checkcode.join(','),
};
this.html = '';
showOrderPackgeCode(qr).then(res => {
// this.orderPackageCode = res.data
console.log(res.data);
this.html = '';
this.html = this.getHtmls(res.data.data.dataList, res.data.data.templateHtml);
});
@ -1267,11 +1267,11 @@ export default {
let qr = {
ids: row.id,
};
this.html = '';
showOrderPackgeCode(qr).then(res => {
// this.orderPackageCode = res.data
// console.log(res.data);
console.log('res :>> ', res);
this.html = '';
this.html = this.getHtmls(res.data.data.dataList, res.data.data.templateHtml);
this.dialogVisible = true;
});

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

@ -1064,6 +1064,7 @@ export default {
//
async handlePreview(row){
console.log('row :>> ', row);
this.html = '';
const res = await printBatch({ ids: row.id, type: 3 });
console.log('res :>> ', res);
const {
@ -1071,7 +1072,6 @@ export default {
} = res;
if (code === 200) {
//
this.html = '';
data.forEach(item => {
this.html += item.templateHtml;
});

4
src/views/distribution/reservation/reservation.vue

@ -1599,12 +1599,12 @@ export default {
return;
}
const ids = this.selectionList.map(item => item.id);
this.html = '';
const res = await this.batchPrint(ids);
const { code, data } = res.data;
if (code === 200) {
this.dialogVisible = true;
console.log('data :>> ', data);
this.html = '';
data.forEach(item => {
return (this.html += item.templateHtml);
});
@ -1616,12 +1616,12 @@ export default {
* 单独打印
*/
async printData(rowData) {
this.html = '';
const res = await this.batchPrint([rowData.row.id]);
const { code, data } = res.data;
if (code === 200) {
this.dialogVisible = true;
console.log('data :>> ', data);
this.html = '';
data.forEach(item => {
return (this.html += item.templateHtml);
});

14
src/views/distribution/reservation/reservationAddFrom.vue

@ -1033,7 +1033,7 @@ export default {
sortable: true,
},
{
prop: 'unpack',
prop: 'unpackName',
label: '拆包状态',
type: 1,
values: '',
@ -1595,7 +1595,7 @@ export default {
sortable: true,
},
{
prop: 'unpack',
prop: 'unpackName',
label: '拆包状态',
type: 1,
values: '',
@ -2018,6 +2018,11 @@ export default {
inventoryList.records.forEach(item => {
item.reservationNum = '0';
item.applyNum = item.quantityStock - item.quantityOccupied;
if (item.unpack){
item.unpackName = '是'
}else {
item.unpackName = '否'
}
});
this.page.total = inventoryList.total;
console.log('res :>> ', res);
@ -2325,6 +2330,11 @@ export default {
const inventoryList = res.data.data;
inventoryList.records.forEach(item => {
item.reservationNum = '0';
if (item.unpack){
item.unpackName = '是'
}else {
item.unpackName = '否'
}
});
this.page.total = inventoryList.total;
this.inventoryInfo = inventoryList.records;

92
src/views/distribution/reservation/reservationDetails.vue

@ -177,8 +177,9 @@
@selectCheck="selectsc"
@selection="selectionsc"
>
<el-button size="small" @click="editsolt(slotProps.scope)">--</el-button>
<br/>
<template #default="slotProps">
<el-text size="small" @click="handleQRCode(slotProps.scope)">查看二维码</el-text>
</template>
</tablecmt>
</el-tab-pane>
<el-tab-pane label="库存品信息">
@ -199,7 +200,9 @@
@selectCheck="selectsc"
@selection="selectionsc"
>
<el-button size="small" @click="costadd(slotProps.scope)">--</el-button>
<template #default="slotProps">
<el-text size="small" @click="handleInventoryQRCode(slotProps.scope)">查看二维码</el-text>
</template>
</tablecmt>
</el-tab-pane>
</el-tabs>
@ -245,7 +248,21 @@
<el-button icon="el-icon-circle-close" @click="isaddvalue=false"> </el-button>
</el-form-item>
</el-dialog>
<el-dialog
title="二维码"
:visible.sync="dialogVisibleF"
width="780px"
v-model="dialogVisibleF"
>
<div>
<div v-html="html"></div>
</div>
<span slot="footer" class="dialog-footer">
<!-- <el-button type="primary" @click="ddd"> </el-button>-->
<el-button type="primary" @click="printTemplate"> </el-button>
<el-button @click="dialogVisibleF = false"> </el-button>
</span>
</el-dialog>
<el-dialog
v-model="dialogVisible"
@ -320,7 +337,8 @@
reservationInfoStockArticleExport,
reservationInfoStockListExport
} from '@/api/distribution/distributionReservation';
import { getStockAddValue } from '@/api/distribution/distributionStockArticle';
import { getStockAddValue, showOrderPackgeCode } from '@/api/distribution/distributionStockArticle';
import { showInventoryPackgeCode } from '@/api/distribution/distributionStockList';
import option from '@/option/distribution/distributionReservationDetails';
import { mapGetters } from 'vuex';
@ -330,12 +348,14 @@
export default {
data() {
return {
html: '',
height: 300,
//
title: '',
//
box: false,
dataForm: {},
dialogVisibleF:false,
//
search: true,
//
@ -726,6 +746,16 @@
sortable: true,
head: false
},
{
prop: 'serviceNumber',
label: '服务号',
type: 2,
values: '',
width: '160',
checkarr: [],
fixed: false,
sortable: true
},
{
prop: 'sku',
label: 'SKU码',
@ -787,6 +817,7 @@
fixed: false,
sortable: true
},
{
prop: 'reservationNum',
label: '预约数量',
@ -797,17 +828,6 @@
fixed: false,
sortable: true
},
{
prop: 'orderCode',
label: '备货件数',
type: 2,
values: '',
width: '160',
checkarr: [],
fixed: false,
sortable: true
},
{
prop: 'stockupNum',
label: '已备件数',
@ -1101,6 +1121,46 @@
.catch(_ => {
});
},
handleQRCode(scope){
const { row } = scope;
console.log('执行查看二维码');
this.materialQRCode = row;
console.log('---------------->',row);
let qr = {
ids: row.id,
};
this.html = '';
showOrderPackgeCode(qr).then(res => {
// this.orderPackageCode = res.data
console.log(res.data);
this.html = this.getHtmls(res.data.data.dataList, res.data.data.templateHtml);
});
this.dialogVisibleF = true;
},
printTemplate(){},
handleInventoryQRCode(scope){
const { row } = scope;
console.log('执行查看二维码------------>row:',row);
this.materialQRCode = row;
console.log('---------------->',row);
let qr = {
ids: row.id,
};
this.html = '';
showInventoryPackgeCode(row.reservationId,row.id).then(res => {
// this.orderPackageCode = res.data
console.log(res.data);
this.html = this.getHtmls(res.data.data.dataList, res.data.data.templateHtml);
});
this.dialogVisibleF = true;
},
checkPackage(scope) {
const { row } = scope;
console.log(row);

32
src/views/distribution/signfor/distributionSignforedt.vue

@ -328,8 +328,8 @@
:initial-index="1"
fit="cover"
/>
</el-dialog>
</el-dialog>
</div>
<div class="imgName">
@ -1333,17 +1333,17 @@ const menuData2 = ref([
sortable: true,
head: true,
},
{
prop: 'orderPackageGroundingStatusName',
label: '上架状态',
type: 4,
values: '',
width: '200',
checkarr: [],
fixed: false,
sortable: true,
head: true,
},
// {
// prop: 'orderPackageGroundingStatusName',
// label: '',
// type: 4,
// values: '',
// width: '200',
// checkarr: [],
// fixed: false,
// sortable: true,
// head: true,
// },
{
prop: 'orderPackageStockupStatusName',
label: '备货状态',
@ -2045,7 +2045,7 @@ getDetail(RouterId.value).then(res => {
});
}
console.log(srcListC.value,'srcListC');
});
const handleRemove = () => {
console.log('图片移除事件');
@ -2329,7 +2329,7 @@ const ImgSuccessE = (response, uploadFile) => {
}
}
:deep(.el-dialog__body) {
img {
width: 100%;
}
@ -2370,7 +2370,7 @@ const ImgSuccessE = (response, uploadFile) => {
margin-bottom: 10px;
}
:deep(.el-dialog__body) {
width: 100%;
height: 100%;
box-sizing: border-box;

8
src/views/distribution/stockup/distributionStockupDetails.vue

@ -979,10 +979,10 @@ export default {
ids: checkcode.join(','),
type: "2"
};
this.html=''
getPrintDetail(qr).then( res =>{
console.log(",./");
this.dialogVisible = true;
this.html=''
this.html=this.getHtmls(res.data.data.dataList,res.data.data.templateHtml)
})
}else if(type== '2'){
@ -999,10 +999,10 @@ export default {
};
console.log("><><>>",qr);
//
this.html=''
getPrintDetail(qr).then( res =>{
// console.log(",./");
this.dialogVisible = true;
this.html=''
this.html=this.getHtmls(res.data.data.dataList,res.data.data.templateHtml)
})
@ -1013,10 +1013,10 @@ export default {
handlePrintDetail(row){
console.log("单个答应》》》",row);
row.type = "1";
this.html=''
getPrintDetail(row).then( res =>{
console.log(",./");
this.dialogVisible = true;
this.html=''
this.html=this.getHtmls(res.data.data.dataList,res.data.data.templateHtml)
})
@ -1164,10 +1164,10 @@ export default {
let qr = {
ids: row.id,
};
this.html=''
showOrderPackgeCode(qr).then(res => {
// this.orderPackageCode = res.data
console.log(res.data);
this.html=''
this.html=this.getHtmls(res.data.data.dataList,res.data.data.templateHtml)
});

10
src/views/distribution/stockup/distributionStockupDetailsSelf.vue

@ -1348,10 +1348,10 @@ export default {
ids: checkcode.join(','),
type: '2',
};
this.html = '';
getPrintDetail(qr).then(res => {
console.log(',./');
this.dialogVisible = true;
this.html = '';
this.html = this.getHtmls(res.data.data.dataList, res.data.data.templateHtml);
});
} else if (type == '2') {
@ -1367,11 +1367,11 @@ export default {
type: '3',
};
console.log('><><>>', qr);
this.html = '';
//
getPrintDetail(qr).then(res => {
// console.log(",./");
this.dialogVisible = true;
this.html = '';
this.html = this.getHtmls(res.data.data.dataList, res.data.data.templateHtml);
});
}
@ -1395,10 +1395,10 @@ export default {
ids: checkcode.join(','),
type: '2',
};
this.html = '';
getPrintDetail(qr).then(res => {
console.log(',./');
this.dialogVisible = true;
this.html = '';
this.html = this.getHtmls(res.data.data.dataList, res.data.data.templateHtml);
});
} else if (type == '2') {
@ -1436,11 +1436,11 @@ export default {
//
handlePrintDetail(row) {
console.log('单个答应》》》', row);
this.html = '';
row.type = '1';
getPrintDetail(row).then(res => {
console.log(',./');
this.dialogVisible = true;
this.html = '';
this.html = this.getHtmls(res.data.data.dataList, res.data.data.templateHtml);
});
},
@ -1490,10 +1490,10 @@ export default {
let qr = {
ids: row.id,
};
this.html = '';
showOrderPackgeCode(qr).then(res => {
// this.orderPackageCode = res.data
console.log(res.data);
this.html = '';
this.html = this.getHtmls(res.data.data.dataList, res.data.data.templateHtml);
});

12
src/views/mail/order/add.vue

@ -1069,7 +1069,7 @@
sortable: true,
},
{
prop: 'unpack',
prop: 'unpackName',
label: '拆包状态',
type: 1,
values: '',
@ -2074,6 +2074,11 @@
inventoryList.records.forEach(item => {
item.reservationNum = '0';
item.applyNum = item.quantityStock - item.quantityOccupied;
if (item.unpack){
item.unpackName = '是'
}else {
item.unpackName = '否'
}
});
this.page.total = inventoryList.total;
console.log('res :>> ', res);
@ -2367,6 +2372,11 @@
const inventoryList = res.data.data;
inventoryList.records.forEach(item => {
item.reservationNum = '0';
if (item.unpack){
item.unpackName = '是'
}else {
item.unpackName = '否'
}
});
this.page.total = inventoryList.total;
this.inventoryInfo = inventoryList.records;

4
src/views/mail/reservation/list.vue

@ -1446,12 +1446,12 @@ export default {
return;
}
const ids = this.selectionList.map(item => item.id);
this.html = '';
const res = await this.batchPrint(ids);
const { code, data } = res.data;
if (code === 200) {
this.dialogVisible = true;
console.log('data :>> ', data);
this.html = '';
data.forEach(item => {
return (this.html += item.templateHtml);
});
@ -1463,12 +1463,12 @@ export default {
* 单独打印
*/
async printData(rowData) {
this.html = '';
const res = await this.batchPrint([rowData.row.id]);
const { code, data } = res.data;
if (code === 200) {
this.dialogVisible = true;
console.log('data :>> ', data);
this.html = '';
data.forEach(item => {
return (this.html += item.templateHtml);
});

4
src/views/waybill/TemporaryStorageList.vue

@ -601,11 +601,11 @@ const printOrder = ({ row }) => {
let qr = {
ids: row.id,
};
html.value = '';
showOrderPackgeCode(qr).then(res => {
// this.orderPackageCode = res.data
if (res.data.code !== 200) return;
console.log(res.data);
html.value = '';
html.value = getHtmls(res.data.data.dataList, res.data.data.templateHtml);
});
};
@ -615,11 +615,11 @@ const batchPrintOrder = ({ row }) => {
let qr = {
ids: row.id,
};
html.value = '';
showOrderPackgeCode(qr).then(res => {
// this.orderPackageCode = res.data
if (res.data.code !== 200) return;
console.log(res.data);
html.value = '';
html.value = getHtmls(res.data.data.dataList, res.data.data.templateHtml);
});
};

9
src/views/waybill/orderPackageList.vue

@ -468,6 +468,7 @@ const details = reactive<any>({
/** 列表Dom节点 */
listNode: '',
form: {},
html: '',
});
const {
@ -716,12 +717,12 @@ const printOrder = ({ row }) => {
let qr = {
ids: row.id,
};
details.html = '';
showOrderPackgeCode(qr).then(res => {
// this.orderPackageCode = res.data
if (res.data.code !== 200) return;
console.log(res.data);
this.html = '';
this.html = getHtmls(res.data.data.dataList, res.data.data.templateHtml);
details.html = getHtmls(res.data.data.dataList, res.data.data.templateHtml);
});
};
@ -734,8 +735,8 @@ const batchPrintOrder = ({ row }) => {
// this.orderPackageCode = res.data
if (res.data.code !== 200) return;
console.log(res.data);
this.html = '';
this.html = getHtmls(res.data.data.dataList, res.data.data.templateHtml);
details.html = '';
details.html = getHtmls(res.data.data.dataList, res.data.data.templateHtml);
});
};

8
src/views/waybill/orderPackageListDetails.vue

@ -697,8 +697,8 @@ const printOrder = ({ row }) => {
// this.orderPackageCode = res.data
if (res.data.code !== 200) return;
console.log(res.data);
this.html = '';
this.html = getHtmls(res.data.data.dataList, res.data.data.templateHtml);
details.html = '';
details.html = getHtmls(res.data.data.dataList, res.data.data.templateHtml);
});
};
@ -711,8 +711,8 @@ const batchPrintOrder = ({ row }) => {
// this.orderPackageCode = res.data
if (res.data.code !== 200) return;
console.log(res.data);
this.html = '';
this.html = getHtmls(res.data.data.dataList, res.data.data.templateHtml);
details.html = '';
details.html = getHtmls(res.data.data.dataList, res.data.data.templateHtml);
});
};

Loading…
Cancel
Save