diff --git a/src/option/basicdata/basicdataTray.js b/src/option/basicdata/basicdataTray.js
index b42c01fd..57ef814f 100644
--- a/src/option/basicdata/basicdataTray.js
+++ b/src/option/basicdata/basicdataTray.js
@@ -30,7 +30,7 @@ export default {
type: 'input',
addDisplay: false,
editDisplay: false,
- viewDisplay: false,
+ viewDisplay: true,
hide: true,
width: '130',
},
@@ -40,7 +40,7 @@ export default {
type: 'input',
addDisplay: false,
editDisplay: false,
- viewDisplay: false,
+ viewDisplay: true,
hide: true,
width: '130',
},
diff --git a/src/option/distribution/zeroAdditionalRecording.js b/src/option/distribution/zeroAdditionalRecording.js
index 73c935f6..c0b9bc74 100644
--- a/src/option/distribution/zeroAdditionalRecording.js
+++ b/src/option/distribution/zeroAdditionalRecording.js
@@ -287,6 +287,16 @@ export const newColumnList = [
fixed: false,
sortable: true,
},
+ {
+ prop: 'loadingNum',
+ label: '装车件数',
+ type: 6,
+ values: '',
+ width: '130',
+ checkarr: [],
+ fixed: false,
+ sortable: true,
+ },
{
prop: 'price',
label: '单价',
diff --git a/src/utils/util.js b/src/utils/util.js
index dd65fdd5..a5015c07 100644
--- a/src/utils/util.js
+++ b/src/utils/util.js
@@ -335,13 +335,12 @@ export const getTopUrl = () => {
return window.location.href.split('/#/')[0];
};
-
/** 移除标题栏指定地址
* @param {string} value 要移除的地址
*/
-export function AddressClosed(url){
+export function AddressClosed(url) {
console.log(url, store);
- const index = store.getters.tagList.findIndex((item) => item.path == url);
+ const index = store.getters.tagList.findIndex(item => item.path == url);
if (index != -1) {
store.getters.tagList.splice(index, 1);
}
@@ -623,4 +622,7 @@ export function debounce(func, delay) {
})();
}
-
+/** 去除零宽字符 */
+export const removeZeroWidth = str => {
+ return str.replace(/[\u200B-\u200D\uFEFF]/g, '');
+};
diff --git a/src/views/distribution/artery/zeroAdditionalRecording.vue b/src/views/distribution/artery/zeroAdditionalRecording.vue
index 179abdec..2831b7a3 100644
--- a/src/views/distribution/artery/zeroAdditionalRecording.vue
+++ b/src/views/distribution/artery/zeroAdditionalRecording.vue
@@ -171,6 +171,18 @@
@selectCheck="newSelectsc"
@selection="newSelectionChange"
>
+
+
+
+
+
@@ -2586,6 +2593,16 @@ export default {
fixed: false,
sortable: true,
},
+ {
+ label: '装车时间',
+ prop: 'loadingTime',
+ type: 2,
+ values: '',
+ width: '130',
+ checkarr: [],
+ fixed: false,
+ sortable: true,
+ },
// {
// label: '配送计划状态',
// prop: 'orderPackageDeliveryStatus',
@@ -2932,6 +2949,8 @@ export default {
this.windowHeight = window.innerHeight * 0.8;
console.log(`浏览器窗口的高度为:${this.windowHeight}px`);
+
+ this.setTableHeight();
},
created() {
// //查询字典
@@ -2956,6 +2975,13 @@ export default {
},
},
methods: {
+ async setTableHeight() {
+ await this.$nextTick();
+ const tableNode = document.querySelectorAll('.tableNode');
+
+ setNodeHeight(tableNode, '600px');
+ },
+
callFordelivery(formName) {
console.log(formName, 'formName');
this.$refs[formName].validate(valid => {
@@ -3762,4 +3788,11 @@ export default {
.el_foot {
overflow: scroll;
}
+
+// 标题
+:deep(.el-divider__text.is-center) {
+ font-size: 20px;
+ font-weight: bold;
+ color: var(--el-color-primary);
+}
diff --git a/src/views/distribution/reservation/reservation.vue b/src/views/distribution/reservation/reservation.vue
index d7b1cea0..4250b20d 100644
--- a/src/views/distribution/reservation/reservation.vue
+++ b/src/views/distribution/reservation/reservation.vue
@@ -1340,13 +1340,22 @@ export default {
}
});
ids = ids.join(',');
+
this.$router.push({
- path: '/distribution/reservation/atlas',
+ path: '/distribution/turndelivery/deliveryMarket',
query: {
id: ids,
- type: '1',
+ name: '市配计划',
},
});
+
+ // this.$router.push({
+ // path: '/distribution/reservation/atlas',
+ // query: {
+ // id: ids,
+ // type: '1',
+ // },
+ // });
// console.log(">>>>>>>>>>",ids);
},
//批量转备货
diff --git a/src/views/distribution/reservation/reservationAddFrom.vue b/src/views/distribution/reservation/reservationAddFrom.vue
index 1681fedb..f66e6e18 100644
--- a/src/views/distribution/reservation/reservationAddFrom.vue
+++ b/src/views/distribution/reservation/reservationAddFrom.vue
@@ -128,6 +128,7 @@
新 增
新 增
> ', _node);
_node.style.transition = 'all 0.3s';
setNodeHeight(_node, '500px');
+
+ this.setTableHeight();
});
},
checkOrder(row, index) {
@@ -2128,6 +2141,8 @@ export default {
const _node = document.querySelector('.stockListShow .maboxhi');
_node.style.transition = 'all 0.3s';
setNodeHeight(_node, '500px');
+
+ this.setTableHeight();
});
}
);
@@ -2470,6 +2485,7 @@ export default {
inventoryIds.push(item.id);
inventoryList.push(item);
});
+ if (!operation) return;
orderIds.join(',');
inventoryIds.join(',');
this.form.stockArticleIds = orderIds.toString();
@@ -2520,6 +2536,8 @@ export default {
operation = false;
return;
}
+ if (!operation) return;
+
// this.form.stockArticleList = this.packageList;
console.log('>>>>>>>>', this.form);
if (this.reservationId) {
@@ -2571,7 +2589,7 @@ export default {
if (item.id === row.id) {
this.orderData.splice(index, 1);
}
- console.log(this.orderData,'当前存在的数据');
+ console.log(this.orderData, '当前存在的数据');
});
// 当两个列表没有数据时, 清空限制
if (this.inventoryData.length === 0 && this.orderData.length === 0) this.marketName = '';
@@ -2819,17 +2837,22 @@ export default {
// }
// return true;
// });
+ console.log('this.inventoryList :>> ', this.inventoryList);
+
const stockArr = [...this.inventoryData, ...this.inventoryList];
// 检测商场是否选择统一商场
const _isUnifyMarketName = stockArr.every(value => {
// 设置同一商场
- if (this.marketName === '') this.marketName = value.marketName;
+ if (this.marketName === '') this.marketName = removeZeroWidth(value.marketName);
if (this.marketName !== value.marketName) {
this.$message.warning('请选择统一商场!!!');
return false;
- } else if (value.reservationNum > value.applyNum) {
+ } else if (Number(value.reservationNum) > Number(value.applyNum)) {
+ console.log('value >>>>>>>>', value);
+ console.log('Number(value.reservationNum) :>> ', Number(value.reservationNum));
+ console.log('Number(value.applyNum) :>> ', Number(value.applyNum), value.applyNum);
this.$message.warning('该库存品数量输入有误!!!');
return false;
}
@@ -2840,7 +2863,6 @@ export default {
return;
}
- console.log('this.inventoryList :>> ', this.inventoryList);
this.inventoryData = stockArr;
this.stockListShow = false;
@@ -2852,10 +2874,10 @@ export default {
console.log('orderList-------------》', this.orderList);
if (this.orderList.length === 0) return this.$message.warning('最少选择一条数据!!!');
const list = [...this.orderData, ...this.orderList];
- let _name = list[0].customerName.trim();
- let _address = list[0].customerAddress.trim();
- let _phone = list[0].customerTelephone.trim();
- if (this.marketName === '') this.marketName = list[0].mallName.trim();
+ let _name = removeZeroWidth(list[0].customerName.trim());
+ let _address = removeZeroWidth(list[0].customerAddress.trim());
+ let _phone = removeZeroWidth(list[0].customerTelephone.trim());
+ if (this.marketName === '') this.marketName = removeZeroWidth(list[0].mallName.trim());
// 设置商场名称
if (this.marketName === '') this.marketName = this.marketName;
@@ -2867,10 +2889,20 @@ export default {
return false;
}
- if (
- item.customerName.trim() !== _name ||
- item.customerAddress.trim() !== _address ||
+ console.log(' item.customerName.trim() !== _name :>> ', item.customerName.trim() !== _name);
+ console.log(
+ ' item.customerName.trim() !== _name :>> ',
+ item.customerAddress.trim() !== _address
+ );
+ console.log(
+ ' item.customerName.trim() !== _name :>> ',
item.customerTelephone.trim() !== _phone
+ );
+
+ if (
+ removeZeroWidth(item.customerName.trim()) !== _name ||
+ removeZeroWidth(item.customerAddress.trim()) !== _address ||
+ removeZeroWidth(item.customerTelephone.trim()) !== _phone
) {
console.log('123');
this.$message.warning('请选择统一顾客订单!!!');
@@ -3176,6 +3208,7 @@ export default {
this.orderData = reservation.stockArticleList;
this.inventoryData = reservation.inventoryList;
this.inventoryData.forEach(item => {
+ item.quantityOccupied -= item.reservationNum;
item.applyNum = item.quantityStock - item.quantityOccupied;
});
this.form.deliveryType = reservation.deliveryType;
diff --git a/src/views/distribution/turndelivery/deliveryDiscuss.vue b/src/views/distribution/turndelivery/deliveryDiscuss.vue
index de8fa234..0671ee89 100644
--- a/src/views/distribution/turndelivery/deliveryDiscuss.vue
+++ b/src/views/distribution/turndelivery/deliveryDiscuss.vue
@@ -381,7 +381,6 @@
-
@@ -441,7 +440,14 @@
+
+
+
@@ -453,9 +459,7 @@
placeholder="请输入顾客地址"
/>
-
-
-
+
', this.data);
if (!this.deliveryListId) {
data.reservationIds = this.reservationIds;
+ data.reservationIds = this.reservationData.map(val => val.id).join(',');
if (this.reservationData.length < 1) {
this.$message({
message: '无效的配送计划',
diff --git a/src/views/warehouse/parcelList/distributionParcelList.vue b/src/views/warehouse/parcelList/distributionParcelList.vue
index 6994791a..04fa1ce2 100644
--- a/src/views/warehouse/parcelList/distributionParcelList.vue
+++ b/src/views/warehouse/parcelList/distributionParcelList.vue
@@ -197,16 +197,6 @@ export default {
sortable: false,
head: false,
},
- {
- prop: 'materialCode',
- label: '物料编码',
- type: 2,
- values: '',
- width: '150',
- checkarr: [],
- fixed: false,
- sortable: true,
- },
{
prop: 'trainNumber',
label: '配送车次',
@@ -291,7 +281,7 @@ export default {
},
{
prop: 'conditionsType',
- label: '包件明细状态',
+ label: '包件类型',
type: 3,
values: '',
width: '130',
@@ -309,7 +299,16 @@ export default {
sortable: false,
head: false,
},
-
+ {
+ prop: 'materialCode',
+ label: '物料编码',
+ type: 2,
+ values: '',
+ width: '150',
+ checkarr: [],
+ fixed: false,
+ sortable: true,
+ },
{
prop: 'firsts',
label: '一级品',
@@ -340,7 +339,16 @@ export default {
fixed: false,
sortable: true,
},
-
+ {
+ prop: 'orderPackageStockupStatusName',
+ label: '备货状态',
+ type: 3,
+ values: '',
+ width: '130',
+ checkarr: [],
+ fixed: false,
+ sortable: true,
+ },
{
prop: 'orderPackageStatusName',
label: '包件状态',
@@ -351,7 +359,35 @@ export default {
fixed: false,
sortable: true,
},
-
+ {
+ prop: 'orderPackageLoadingStatusName',
+ label: '装车状态',
+ type: 3,
+ values: '',
+ width: '130',
+ checkarr: [],
+ fixed: false,
+ sortable: true,
+ },
+ {
+ prop: 'orderPackageReservationStatusName',
+ label: '预约状态',
+ type: 3,
+ values: '',
+ width: '130',
+ checkarr: [
+ {
+ label: '待上架',
+ value: '10',
+ },
+ {
+ label: '已上架',
+ value: '20',
+ },
+ ],
+ fixed: false,
+ sortable: true,
+ },
{
prop: 'orderPackageGroundingStatusName',
label: '上架状态',
@@ -381,7 +417,28 @@ export default {
// fixed: false,
// sortable: true,
// },
-
+ {
+ prop: 'loadingTime',
+ label: '装车时间',
+ type: 1,
+ values: '',
+ width: '130',
+ checkarr: [],
+ fixed: false,
+ sortable: true,
+ head: false,
+ },
+ {
+ prop: 'signingTime',
+ label: '签收时间',
+ type: 1,
+ values: '',
+ width: '130',
+ checkarr: [],
+ fixed: false,
+ sortable: true,
+ head: false,
+ },
{
prop: 'goodsAllocation',
label: '货位信息',
@@ -617,20 +674,27 @@ export default {
this.query.conditions = value;
if (value === '') delete this.query.conditions;
}
- // 上架状态
- if (row.prop === 'orderPackageGroundingStatusName') {
- this.query.orderPackageGroundingStatus = value;
- if (value === '') delete this.query.orderPackageGroundingStatus;
- }
-
- if (row.prop === 'orderPackageStatusName') {
- this.query.orderPackageStatus = value;
- if (value === '') delete this.query.orderPackageStatus;
- }
+ this.query[row.prop.replace(/Name/, '')] = value;
if (value === '') {
+ delete this.query[row.prop.replace(/Name/, '')];
delete this.query[row.prop];
}
+
+ // // 上架状态
+ // if (row.prop === 'orderPackageGroundingStatusName') {
+ // this.query.orderPackageGroundingStatus = value;
+ // if (value === '') delete this.query.orderPackageGroundingStatus;
+ // }
+
+ // if (row.prop === 'orderPackageStatusName') {
+ // this.query.orderPackageStatus = value;
+ // if (value === '') delete this.query.orderPackageStatus;
+ // }
+
+ // if (value === '') {
+ // delete this.query[row.prop];
+ // }
this.page.currentPage = 1;
this.onLoad(this.page);
},
@@ -656,6 +720,7 @@ export default {
init() {
this.height = this.setPx(document.body.clientHeight - 340);
+ // 包件状态
getDictionaryBiz('order_package_status').then(res => {
this.distributionType = res.data.data;
this.$functions.checkcColumnList('orderPackageStatusName', this.columnList).checkarr =
@@ -665,6 +730,56 @@ export default {
return item;
});
});
+
+ // 装车状态
+ getDictionaryBiz('order_package_loading_status').then(res => {
+ this.distributionType = res.data.data;
+ this.$functions.checkcColumnList(
+ 'orderPackageLoadingStatusName',
+ this.columnList
+ ).checkarr = res.data.data.map(item => {
+ item.value = item.dictKey;
+ item.label = item.dictValue;
+ return item;
+ });
+ });
+
+ // 备货状态 orderPackageStockupStatusName
+ getDictionaryBiz('order_package_stockup_status').then(res => {
+ this.distributionType = res.data.data;
+ this.$functions.checkcColumnList(
+ 'orderPackageStockupStatusName',
+ this.columnList
+ ).checkarr = res.data.data.map(item => {
+ item.value = item.dictKey;
+ item.label = item.dictValue;
+ return item;
+ });
+ });
+
+ // 入库状态
+ getDictionaryBiz('order_package_status').then(res => {
+ this.distributionType = res.data.data;
+ this.$functions.checkcColumnList('orderPackageStatusName', this.columnList).checkarr =
+ res.data.data.map(item => {
+ item.value = item.dictKey;
+ item.label = item.dictValue;
+ return item;
+ });
+ });
+
+ // 预约状态
+ getDictionaryBiz('order_package_reservation_status').then(res => {
+ this.distributionType = res.data.data;
+ this.$functions.checkcColumnList(
+ 'orderPackageReservationStatusName',
+ this.columnList
+ ).checkarr = res.data.data.map(item => {
+ item.value = item.dictKey;
+ item.label = item.dictValue;
+ return item;
+ });
+ });
},
searchHide() {
this.search = !this.search;
diff --git a/vite.config.js b/vite.config.js
index 187bfd53..768ed4ed 100644
--- a/vite.config.js
+++ b/vite.config.js
@@ -25,14 +25,14 @@ export default ({ mode, command }) => {
// target: 'http://192.168.6.122:8777',
// target: 'http://192.168.10.25:13000',
// target: 'http://192.168.10.25:2888',
- target: 'http://192.168.6.148:9777',
- // target: 'http://192.168.6.116:8777',
+ // target: 'http://192.168.6.148:9777',
+ // target: 'http://192.168.10.57:13000',
// tjj
// sst
// target: 'http://192.168.10.94:8888',
// target: 'http://192.168.10.29:13000',
// target: 'http://h5uapi.huitongys.com',
- // target: 'http://test.api.huitongys.com',
+ target: 'http://test.api.huitongys.com',
changeOrigin: true,
rewrite: path => path.replace(/^\/api/, ''),
},