@@ -279,6 +284,7 @@ import {
$_expenseDispatchPriceRuledetail,
} from '@/api/storagecost/index.js';
import { $_ObtainRegion } from '@/api/basicdata/basicdataWarehouse';
+import { getList } from '@/api/basicdata/basicdataVehicleInfo';
import { getDictionaryBiz } from '@/api/system/dict'; //字典
import { deepClone } from '@/utils/util';
const emit = defineEmits(['request-data']);
@@ -491,11 +497,12 @@ const asurcharge = ref([
const dispatchSubjoinCategory = ref([
{ label: '序号', prop: 'index', type: 'string', width: '50', disabled: true },
{
- label: '车型',
+ label: '车型1',
prop: 'carModel',
type: 'select',
width: 'auto',
- disabled: true,
+ disabled: true, //是否显示
+ show: true, //禁止输入框
},
{ label: '操作', prop: '', type: '', width: 'auto', disabled: true },
]);
@@ -773,13 +780,13 @@ const Categoryprocessing = (value, data, type) => {
const Oversizedbillingprocessing = (value, data) => {
OversizedbillingData.value.forEach(item => {
console.log(item, '超区计费-----》');
-
+
// 拆解出 region 数组中的省、市、区编码
const [province, city, district] = item.region;
// 查找省对象
const provinceObj = item.options.find(option => option.value == province);
-
+
// 根据省对象查找市集合
const cityObj = provinceObj?.children?.find(cityItem => cityItem.value == city);
@@ -1079,11 +1086,31 @@ const onLoad = async () => {
});
}
};
+
+// 获取车型
+const Obtainvehiclemodel = async () => {
+ try {
+ let _res = await getList();
+ const { code, data } = _res.data;
+ if (code == 200) {
+ console.log(data, '车型');
+ optionsVehicle.value = data.map(item => {
+ return {
+ label: item.vehicleModel,
+ value: item.id,
+ };
+ });
+ initData();
+ }
+ } catch (e) {
+ console.log(e, 'error');
+ } finally {
+ }
+};
// 页面初始化
const onLoadPage = async () => {
await onLoad();
- updateDictionary(optionsVehicle.value, 'price_vehicle_type'); // 获取车型
-
+ Obtainvehiclemodel(); //获取车型
GetRegion(); //获取地区
};
onLoadPage();
From 463391c057294373681e62cb748f93feffdbbcf1 Mon Sep 17 00:00:00 2001
From: xzg <4727863@qq.com>
Date: Thu, 26 Sep 2024 21:34:19 +0800
Subject: [PATCH 3/4] =?UTF-8?q?=E5=BC=82=E5=B8=B8=E5=8C=85=E4=BB=B6?=
=?UTF-8?q?=E4=BA=8C=E7=BB=B4=E7=A0=81=E4=BF=AE=E5=A4=8D?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../distribution/distributionDeliveryList.js | 8 ++
src/option/basicdata/basicdataVehicleInfo.js | 4 +-
.../distribution/DeliveryExceptionReview.js | 29 +++-
.../distributionDeliveryListedt.vue | 126 +++++++++++++-----
4 files changed, 131 insertions(+), 36 deletions(-)
diff --git a/src/api/distribution/distributionDeliveryList.js b/src/api/distribution/distributionDeliveryList.js
index 1ecc6de6..fbc7634f 100644
--- a/src/api/distribution/distributionDeliveryList.js
+++ b/src/api/distribution/distributionDeliveryList.js
@@ -370,6 +370,14 @@ export const $_showInventoryPackgeCode = params => {
params,
});
};
+// 异常库存品查看二维码
+export const $_showInventoryPackgeCodes = params => {
+ return request({
+ url: '/api/logpm-distribution/distributionStockList/showInventoryPackgeCodes',
+ method: 'get',
+ params,
+ });
+};
// 驳回
export const $_loadingAbnormalPackageListTurnDown = params => {
diff --git a/src/option/basicdata/basicdataVehicleInfo.js b/src/option/basicdata/basicdataVehicleInfo.js
index 58673a1a..9dc5c836 100644
--- a/src/option/basicdata/basicdataVehicleInfo.js
+++ b/src/option/basicdata/basicdataVehicleInfo.js
@@ -15,9 +15,9 @@ export const columnList = [
fixed: true,
},
{
- prop: 'vehicleModelName',
+ prop: 'vehicleModel',
label: '车辆类型',
- type: 3,
+ type: 2,
values: '',
width: '150',
checkarr: [],
diff --git a/src/option/distribution/DeliveryExceptionReview.js b/src/option/distribution/DeliveryExceptionReview.js
index 1c393f73..93525659 100644
--- a/src/option/distribution/DeliveryExceptionReview.js
+++ b/src/option/distribution/DeliveryExceptionReview.js
@@ -49,7 +49,6 @@ export const AbnormalReview = [
head: false,
},
-
{
prop: 'orderCode',
label: '订单自编号',
@@ -72,6 +71,30 @@ export const AbnormalReview = [
sortable: false,
head: false,
},
+ {
+ prop: 'goodsTypeName',
+ label: '货物类型',
+ type: 3,
+ values: '',
+ width: '100',
+ checkarr: [
+ {
+ label: '订制品',
+ value: '订制品',
+ },
+ {
+ label: '库存品',
+ value: '库存品',
+ },
+ {
+ label: '零担',
+ value: '零担',
+ },
+ ],
+ fixed: false,
+ sortable: false,
+ head: false,
+ },
{
prop: 'materialName',
label: '物料名称',
@@ -84,7 +107,6 @@ export const AbnormalReview = [
head: false,
},
-
// {
// prop: 'warehouse',
// label: '仓库',
@@ -238,7 +260,7 @@ export const AbnormalReview = [
// checkarr: [],
// fixed: 'right',
// sortable: false,
-
+
// },
// {
@@ -426,7 +448,6 @@ export const AbnormalReview = [
fixed: false,
sortable: false,
head: false,
-
},
{
diff --git a/src/views/distribution/deliverylist/distributionDeliveryListedt.vue b/src/views/distribution/deliverylist/distributionDeliveryListedt.vue
index b7c1ad1e..b285051c 100644
--- a/src/views/distribution/deliverylist/distributionDeliveryListedt.vue
+++ b/src/views/distribution/deliverylist/distributionDeliveryListedt.vue
@@ -778,9 +778,10 @@
:loading="AbnormalReviewloading"
@inputTxt="inputscReservationPackage"
@timeCheck="timescReservationPackage"
- @selectCheck="selectscReservationPackage"
+ @selectCheck="selectAbnormalpackage"
ref="YcwtableBox"
@selection="selectionChange"
+ :isselectfun="ProhibitSelection"
>
@@ -801,17 +802,18 @@
取消
+ @click="Canceldelivery(slotProps.scope.row)"
+ v-if="slotProps.scope.row.abnormalTypeName == '装车异常'"
+ >取消
-
+
查看二维码
@@ -894,6 +896,7 @@ import {
printBatch,
$_deliveryZeroPackage,
$_showInventoryPackgeCode,
+ $_showInventoryPackgeCodes,
$_loadingAbnormalPackageListTurnDown,
$_retentionScan,
$_cancelLoadingAbnormal,
@@ -954,6 +957,7 @@ export default {
],
dialogViReject: false, //驳回弹窗
RejectRow: {}, //驳回点击当前单子
+ selectAbnormalpackageList: [], //异常包件list用于下拉搜索
yesOrNo: false,
accessControl: '',
html: '',
@@ -3263,32 +3267,25 @@ export default {
},
methods: {
async abnormalViewQRcode(index, row) {
- let qr = {};
- if (index == 1) {
- if (!this.selectionList.length) {
- ElMessage({
- message: `请勾选要查看二维码的数据`,
- type: 'warning',
- });
- return;
- }
- qr.ids = this.selectionList.map(res => res.packageId).join(',');
- } else {
- qr.ids = row.packageId;
- }
+ console.log(row, 'row');
try {
+ if (index == 1 && !this.checkSelection()) return;
+
+ const qr = {};
+ let res = '';
+
+ if (index == 1) {
+ res = await this.handleIndexOne();
+ } else {
+ res = await this.handleNotIndexOne(row);
+ }
+
this.AbnormalReviewloading = true;
this.html = '';
- const res = await showOrderPackgeCode(qr);
-
- const { code, data } = res.data;
- if (code !== 200) return;
+ if (res.data.code !== 200) return;
- for (let i = 0; i < data.moldList.length; i++) {
- const element = data.moldList[i];
- this.html += element;
- }
+ this.html = res.data.data.moldList.join('');
this.isShowPrint = true; //开启二维码弹出框
} catch (error) {
console.log('error :>> ', error);
@@ -3296,6 +3293,51 @@ export default {
this.AbnormalReviewloading = false;
}
},
+
+ checkSelection() {
+ if (!this.selectionList.length) {
+ ElMessage({
+ message: '请勾选要查看二维码的数据',
+ type: 'warning',
+ });
+ return false;
+ }
+ if (!this.isUniformType()) {
+ ElMessage({
+ message: '请勾选同一种类型的数据',
+ type: 'warning',
+ });
+ return false;
+ }
+ return true;
+ },
+
+ isUniformType() {
+ const type = this.selectionList[0].goodsTypeName;
+ return this.selectionList.every(item => item.goodsTypeName === type);
+ },
+
+ async handleIndexOne() {
+ const qr = {};
+ if (this.selectionList[0].goodsTypeName === '订制品') {
+ qr.ids = this.selectionList.map(res => res.packageId).join(',');
+ return await showOrderPackgeCode(qr);
+ } else {
+ qr.orderPackgeCodes = this.selectionList.map(res => res.packageCode).join(',');
+ return await $_showInventoryPackgeCodes(qr);
+ }
+ },
+
+ async handleNotIndexOne(row) {
+ const qr = {};
+ if (row.goodsTypeName === '库存品') {
+ qr.orderPackgeCodes = row.packageCode;
+ return await $_showInventoryPackgeCodes(qr);
+ } else {
+ qr.ids = row.packageId;
+ return await showOrderPackgeCode(qr);
+ }
+ },
// 异常审核函数
viewAbnormalLoading(scope) {
console.log(this.$refs.YcwtableBox, '2');
@@ -3304,6 +3346,7 @@ export default {
this.AbnormalReviewloading = true; //开启加载
console.log(scope, 'scope');
this.abnormalBox = true;
+ this.AbnormalReview.forEach(item => (item.values = ''));
$_newLoadingAbnormalPackageListDetail(scope.signId)
.then(res => {
console.log(res, '异常审核查询');
@@ -3320,6 +3363,7 @@ export default {
}
});
this.AbnormalReviewData = res.data.data;
+ this.selectAbnormalpackageList = res.data.data; //用于存储全部值
})
.catch(res => {
console.log(res, '关闭加载效果');
@@ -3702,6 +3746,26 @@ export default {
}
this.getWrapdetails(this.page);
},
+ // 异常包件选择
+ selectAbnormalpackage(index, row) {
+ console.log(index, row);
+ console.log(index, 'indexxx');
+
+ if (!index) {
+ this.AbnormalReviewData = this.selectAbnormalpackageList;
+ } else {
+ this.AbnormalReviewData = this.selectAbnormalpackageList.filter(
+ item => item[row.prop] == row.values
+ );
+ }
+ },
+ ProhibitSelection(val, index) {
+ if (val.packageCode) {
+ return true;
+ } else {
+ return false;
+ }
+ },
selectscReservationInventoryPackage(index, row) {
console.log(index, row);
if (row.prop === 'stockSignfoStatusName') {
@@ -3758,7 +3822,6 @@ export default {
// };
this.html = '';
const res = await showInventoryPackgeCode(row.reservationId, row.id);
-
const { code, data } = res.data;
if (code !== 200) return;
// this.orderPackageCode = res.data
@@ -3860,12 +3923,15 @@ export default {
BatchcancellationAll() {
if (!this.selectionList.length) {
ElMessage({
- message: '请勾选要取消的数据,【审核状态】必须为待审核,斌且【异常类型】状态只能为装车异常',
+ message:
+ '请勾选要取消的数据,【审核状态】必须为待审核,斌且【异常类型】状态只能为装车异常',
type: 'warning',
});
return;
}
- let _state = this.selectionList.every(item => item.auditingStatusName =='待审核' && item.abnormalTypeName == '装车异常' );
+ let _state = this.selectionList.every(
+ item => item.auditingStatusName == '待审核' && item.abnormalTypeName == '装车异常'
+ );
console.log(_state);
if (!_state) {
ElMessage({
From 8645dc01c2f5c8975a4811f5c438fd69f7493ce6 Mon Sep 17 00:00:00 2001
From: xzg <4727863@qq.com>
Date: Thu, 26 Sep 2024 22:04:15 +0800
Subject: [PATCH 4/4] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=85=A5=E5=BA=93?=
=?UTF-8?q?=E9=BB=98=E8=AE=A4=E5=B8=82=E9=85=8D=E6=9C=8D=E5=8A=A1=E7=B1=BB?=
=?UTF-8?q?=E5=9E=8B?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../warehouseWarehouseingAddReceipt.vue | 14 ++++++++++----
1 file changed, 10 insertions(+), 4 deletions(-)
diff --git a/src/views/warehouse/warehousingentry/warehouseWarehouseingAddReceipt.vue b/src/views/warehouse/warehousingentry/warehouseWarehouseingAddReceipt.vue
index 7d6cd3cb..9a610fdd 100644
--- a/src/views/warehouse/warehousingentry/warehouseWarehouseingAddReceipt.vue
+++ b/src/views/warehouse/warehousingentry/warehouseWarehouseingAddReceipt.vue
@@ -147,7 +147,7 @@
-
+
@@ -496,7 +496,6 @@ export default {
},
// 表单数据
form: {
- // serviceType: null,
},
formDetail: {},
// 选择行
@@ -1003,7 +1002,14 @@ export default {
getDictionaryBiz('distribution_type').then(res => {
// console.log("...",res.data.data);
this.distributionType = [];
- this.distributionType = res.data.data;
+ this.distributionType= res.data.data.map(item=>{
+ if(item.dictKey=='2'){
+ console.log(item,'item==???/');
+ return item
+ }
+ })
+ this.form.serviceType='2'
+ // this.distributionType
});
getDictionaryBiz('logpm_unit').then(res => {
// console.log("...",res.data.data);