Browse Source

修复若干bug

dev-xx
马远东 1 year ago
parent
commit
ab7d336dc2
  1. 10
      src/api/basicdata/basicdataGoodsAllocation.js
  2. 19
      src/api/distribution/distributionSignfor.js
  3. 9
      src/api/distribution/distributionStockArticle.js
  4. 8
      src/api/distribution/distrilbutionBillLading.js
  5. 26
      src/views/basicdata/brand/basicClient.vue
  6. 19
      src/views/distribution/deliverylist/distributionDeliveryListmar.vue
  7. 102
      src/views/distribution/inventory/delivery/distributionStockArticleDiscuss.vue
  8. 129
      src/views/distribution/inventory/delivery/distributionStockArticleSelf.vue
  9. 112
      src/views/distribution/inventory/distributionStockArticleDetails.vue
  10. 218
      src/views/distribution/inventory/distrilbutionBillLadingView.vue
  11. 16
      src/views/distribution/reservation/reservation.vue
  12. 8
      src/views/distribution/reservation/reservationAddFrom.vue
  13. 88
      src/views/distribution/signfor/distributionSignforedt.vue
  14. 10
      src/views/warehouse/warehousingentry/warehouseWarehousingEntry.vue

10
src/api/basicdata/basicdataGoodsAllocation.js

@ -83,13 +83,11 @@ export const update = (row) => {
data: row
})
}
export const getPrintTemplate = (ids) => {
export const getPrintTemplate = (params) => {
return request({
url: '/api/logpm-basicdata/goodsAllocation/getPrintTemplate',
method: 'post',
params:{
ids
}
url: '/logpm-distribution/distributionStockArticle/showOrderPackgeCode',
method: 'get',
params
})
}
export const getTemplate = (row) => {

19
src/api/distribution/distributionSignfor.js

@ -355,3 +355,22 @@ export const $_getReservationZeroPackageList = params => {
params,
});
};
// 包件列表导出
export const $_distributionSignforPackageList = data => {
return request({
url: '/api/logpm-distribution/signfor/export-distributionSignforPackageList',
method: 'post',
data,
responseType: 'blob',
});
};
// 订单导出
export const $_distributionSignforOrderList = data => {
return request({
url: '/api/logpm-distribution/signfor/export-distributionSignforOrderList',
method: 'post',
data,
responseType: 'blob',
});
};

9
src/api/distribution/distributionStockArticle.js

@ -326,3 +326,12 @@ export const $_getPackageListByStockArticleId = params => {
params,
});
};
// 修改运单收货人
export const $_Modifywaybillrecipient = (data) => {
return request({
url: '/api/logpm-distribution/distributionStockArticle/updateBatchClient',
method: 'post',
data
})
}

8
src/api/distribution/distrilbutionBillLading.js

@ -111,6 +111,14 @@ export const getBillLadingDetail = ids => {
});
};
export const $_checkBillLadingIsRelease = params => {
//确认提货校验
return request({
url: '/api/logpm-distribution/distrilbutionBillLading/checkBillLadingIsRelease',
method: 'get',
params
});
};
export const remove = ids => {
return request({
url: '/api/logpm-distribution/distrilbutionBillLading/remove',

26
src/views/basicdata/brand/basicClient.vue

@ -1516,30 +1516,40 @@ export default {
let arrsheng = this.optioner.filter(i => {
return it.bladeRegionProvinceId == i.value;
});
if (arrsheng.length == 0) return;
let shengLabel = arrsheng.length > 0 ? arrsheng[0].label : ''; //
if (arrsheng.length === 0) {
it.bladeRegionProvinceId = shengLabel; //
return;
}
let arrshi = arrsheng[0].children.filter(i => {
return it.bladeRegionCityId == i.value;
});
if (arrshi.length == 0) return;
let shiLabel = arrshi.length > 0 ? arrshi[0].label : ''; //
if (arrshi.length === 0) {
dz = shengLabel; //
} else {
let arrqu = arrshi[0].children.filter(i => {
return it.bladeRegionAreaId == i.value;
});
if (arrqu.length == 0) return;
dz =
arrsheng[0].label +
(arrshi[0].label ? `/${arrshi[0].label}` : ``) +
(arrqu[0]?.label ? `/${arrqu[0]?.label}` : '');
let quLabel = arrqu.length > 0 ? arrqu[0].label : ''; //
dz = shengLabel + (shiLabel ? `/${shiLabel}` : '') + (quLabel ? `/${quLabel}` : '');
}
it.bladeRegionProvinceId = dz;
});
// console.log("dzdz",dz);
this.page.total = data.total;
this.data = data.records;
this.data = this.$functions.newdatas(this.columnList, this.data);
this.loading = false;
this.selectionClear();
}).catch(()=>{
this.data =[]
this.loading = false;
});
},
},

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

@ -299,8 +299,8 @@ export default {
sortable: true,
},
{
prop: 'clineName',
label: '客户名称',
prop: 'mallName',
label: '商场名称',
type: 2,
values: '',
width: '140',
@ -309,8 +309,8 @@ export default {
sortable: true,
},
{
prop: 'mallName',
label: '商场名称',
prop: 'clineName',
label: '客户名称',
type: 2,
values: '',
width: '140',
@ -318,6 +318,7 @@ export default {
fixed: false,
sortable: true,
},
{
prop: 'kindName',
label: '配送种类',
@ -541,6 +542,16 @@ export default {
fixed: false,
sortable: true,
},
{
prop: 'mallName',
label: '商场名称',
type: 2,
values: '',
width: '140',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: 'clineName',
label: '客户名称',

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

@ -43,6 +43,9 @@
<el-button type="danger" icon="Edit" @click="handleCallDelivery('3')" v-if="handler"
>修改客户信息</el-button
>
<el-button type="danger" icon="Edit" @click="Modifywaybillrecipient"
>修改运单收货人</el-button
>
<el-button type="danger" icon="Edit" @click="handleCallDelivery('2')" v-if="handler"
>修改服务类型</el-button
>
@ -202,6 +205,44 @@
</span>
</template>
</el-dialog>
<el-dialog v-model="waybillrecipient" title="修改运单收货人">
<el-form
v-loading="loadingwaybillrecipient"
:model="waybillrecipientForm"
ref="waybillrecipientForm"
:rules="loginRules"
>
<el-form-item label="收货人名称" prop="consigneePerson" :label-width="formLabelWidth">
<el-input
v-model="waybillrecipientForm.consigneePerson"
placeholder="请填写收货人名称"
autocomplete="off"
/>
</el-form-item>
<el-form-item label="收货人电话" prop="consigneeMobile" :label-width="formLabelWidth">
<el-input
v-model="waybillrecipientForm.consigneeMobile"
placeholder="请填写收货人电话"
autocomplete="off"
/>
</el-form-item>
<el-form-item label="收货人地址" prop="consigneeAddress" :label-width="formLabelWidth">
<el-input
v-model="waybillrecipientForm.consigneeAddress"
:rows="2"
type="textarea"
placeholder="请填写收货人地址"
/>
</el-form-item>
</el-form>
<template #footer>
<span class="dialog-footer">
<el-button @click="waybillrecipient = false">取消</el-button>
<!-- <el-button type="primary" @click="dialogFormVisible = false"> 确定 </el-button>-->
<el-button type="primary" @click="waybillrecipientClick"> 确定 </el-button>
</span>
</template>
</el-dialog>
<!-- 表单模块 -->
<el-dialog
:title="title"
@ -338,6 +379,7 @@ import {
remove,
addStock,
stockArticExport,
$_Modifywaybillrecipient,
} from '@/api/distribution/distributionStockArticle';
import { getListOwn } from '@/api/distribution/distributionParcelList';
import { addCallDelivery } from '@/api/distribution/distrilbutionCallDelivery';
@ -351,14 +393,25 @@ import { downloadXls, setNodeHeight } from '@/utils/util';
import { columnList } from '@/option/distribution/distributionStockArticleSelf';
import { deepClone } from '@/utils/util.js';
const _newCol = deepClone(columnList);
import { ElMessage } from 'element-plus';
export default {
data() {
return {
columnList: _newCol,
columnListedit: [],
loginRules: {
consigneeAddress: [{ required: true, message: '请输入收货人地址', trigger: 'blur' }],
consigneeMobile: [
{ required: true, message: '请输入收货人电话', trigger: 'change' },
{ min: 11, max: 11, message: '请输入11位电话号码', trigger: 'blur' },
],
consigneePerson: [{ required: true, message: '请输入收货人名称', trigger: 'blur' }],
},
drawerShow: false,
height: 0,
waybillrecipient: false, //
waybillrecipientForm: {}, //
loadingwaybillrecipient: false, //
//
title: '',
//
@ -813,6 +866,53 @@ export default {
break;
}
},
//
Modifywaybillrecipient() {
if (!this.selectionList.length) {
this.$message.warning('请选择至少一条数据');
return;
}
this.waybillrecipient = true; //
// _Modifywaybillrecipient
},
waybillrecipientClick() {
this.$refs.waybillrecipientForm.validate(valid => {
if (!valid) {
return;
}
this.loadingwaybillrecipient = true; //
let data = {
entityList: [],
};
this.selectionList.forEach(res => {
data['entityList'].push({
consigneeAddress: this.waybillrecipientForm.consigneeAddress,
consigneePerson: this.waybillrecipientForm.consigneePerson,
consigneeMobile: this.waybillrecipientForm.consigneeMobile,
id: res.id,
});
});
$_Modifywaybillrecipient(data)
.then(resT => {
ElMessage({
message: resT.data.msg,
type: 'success',
});
if (resT.data.code == 200) {
this.waybillrecipient = false; //
console.log(resT, '修改成功后返回值');
this.onLoad(this.page);
}
})
.catch(() => {})
.finally(() => {
this.loadingwaybillrecipient = false;
});
// waybillrecipient;//
});
},
init() {
this.height = this.setPx(document.body.clientHeight - 340);
getDictionaryBiz('distribution_type').then(res => {

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

@ -47,6 +47,9 @@
<el-button type="danger" icon="Edit" @click="handleCallDelivery('3')" v-if="handler"
>修改客户信息</el-button
>
<el-button type="danger" icon="Edit" @click="Modifywaybillrecipient"
>修改运单收货人</el-button
>
<el-button type="danger" icon="Edit" @click="handleCallDelivery('2')" v-if="handler"
>修改服务类型</el-button
>
@ -385,6 +388,69 @@
</span>
</template>
</el-dialog>
<el-dialog v-model="dialogFormCustomer" title="修改客户信息">
<el-form :model="formCustomer">
<el-form-item label="姓名" :label-width="formLabelWidth">
<el-input v-model="formCustomer.name" autocomplete="off" />
</el-form-item>
<el-form-item label="电话" :label-width="formLabelWidth">
<el-input v-model="formCustomer.phone" autocomplete="off" />
</el-form-item>
<el-form-item label="地址" :label-width="formLabelWidth">
<el-input
v-model="formCustomer.address"
:rows="2"
type="textarea"
placeholder="请填写地址"
/>
</el-form-item>
</el-form>
<template #footer>
<span class="dialog-footer">
<el-button @click="dialogFormCustomer = false">取消</el-button>
<!-- <el-button type="primary" @click="dialogFormVisible = false"> 确定 </el-button>-->
<el-button type="primary" @click="callFordelivery('3')"> 确定 </el-button>
</span>
</template>
</el-dialog>
<el-dialog v-model="waybillrecipient" title="修改运单收货人">
<el-form
v-loading="loadingwaybillrecipient"
:model="waybillrecipientForm"
ref="waybillrecipientForm"
:rules="loginRules"
>
<el-form-item label="收货人名称" prop="consigneePerson" :label-width="formLabelWidth">
<el-input
v-model="waybillrecipientForm.consigneePerson"
placeholder="请填写收货人名称"
autocomplete="off"
/>
</el-form-item>
<el-form-item label="收货人电话" prop="consigneeMobile" :label-width="formLabelWidth">
<el-input
v-model="waybillrecipientForm.consigneeMobile"
placeholder="请填写收货人电话"
autocomplete="off"
/>
</el-form-item>
<el-form-item label="收货人地址" prop="consigneeAddress" :label-width="formLabelWidth">
<el-input
v-model="waybillrecipientForm.consigneeAddress"
:rows="2"
type="textarea"
placeholder="请填写收货人地址"
/>
</el-form-item>
</el-form>
<template #footer>
<span class="dialog-footer">
<el-button @click="waybillrecipient = false">取消</el-button>
<!-- <el-button type="primary" @click="dialogFormVisible = false"> 确定 </el-button>-->
<el-button type="primary" @click="waybillrecipientClick"> 确定 </el-button>
</span>
</template>
</el-dialog>
<!-- 物料选择模块 -->
<!-- <el-dialog :title="titleMaterial"
v-model="materialBox"
@ -475,6 +541,7 @@ import {
remove,
addStock,
stockArticExport,
$_Modifywaybillrecipient,
} from '@/api/distribution/distributionStockArticle';
import { getListOwn } from '@/api/distribution/distributionParcelList';
import { addCallDelivery } from '@/api/distribution/distrilbutionCallDelivery';
@ -490,13 +557,13 @@ import { downloadXls, setNodeHeight } from '@/utils/util';
import { columnList } from '@/option/distribution/distributionStockArticleSelf';
import { deepClone } from '@/utils/util.js';
const _newCol = deepClone(columnList);
import { ElMessage } from 'element-plus';
export default {
data() {
return {
columnList: _newCol,
columnListedit: [],
loadingwaybillrecipient:false,
drawerShow: false,
height: 0,
//
@ -526,6 +593,14 @@ export default {
pageSize: 30,
total: 40,
},
loginRules: {
consigneeAddress: [{ required: true, message: '请输入收货人地址', trigger: 'blur' }],
consigneeMobile: [
{ required: true, message: '请输入收货人电话', trigger: 'blur' },
{ min: 11, max: 11, message: '请输入11位电话号码', trigger: 'blur' },
],
consigneePerson: [{ required: true, message: '请输入收货人名称', trigger: 'blur' }],
},
//
form: {},
formMaterial: {},
@ -537,6 +612,8 @@ export default {
materialData: [],
//
option: option,
waybillrecipient: false, //
waybillrecipientForm:{},
//
data: [],
optionsName: [],
@ -969,6 +1046,54 @@ export default {
message: '操作成功!',
});
});
},
//
Modifywaybillrecipient() {
if (!this.selectionList.length) {
this.$message.warning('请选择至少一条数据');
return;
}
this.waybillrecipient = true; //
// _Modifywaybillrecipient
},
waybillrecipientClick() {
this.$refs.waybillrecipientForm.validate(valid => {
if (!valid) {
return;
}
this.loadingwaybillrecipient = true; //
let data = {
entityList: [],
};
this.selectionList.forEach(res => {
data['entityList'].push({
consigneeAddress: this.waybillrecipientForm.consigneeAddress,
consigneePerson: this.waybillrecipientForm.consigneePerson,
consigneeMobile: this.waybillrecipientForm.consigneeMobile,
id: res.id,
});
});
$_Modifywaybillrecipient(data)
.then(resT => {
ElMessage({
message: resT.data.msg,
type: 'success',
});
console.log(resT, '修改成功后返回值');
if (resT.data.code == 200) {
this.waybillrecipient = false; //
this.onLoad(this.page);
}
})
.catch(() => {})
.finally(() => {
this.loadingwaybillrecipient = false;
});
// waybillrecipient;//
});
},
//
callFordelivery(inde) {

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

@ -93,6 +93,19 @@
>
</el-table-column>
</template>
<el-table-column prop="menu" label="操作" :width="220" align="center">
<template #="{ row }">
<!-- <el-button type="primary" text icon="el-icon-view" @click="handleView(row)">查看</el-button>-->
<el-button
type="primary"
text
icon="el-icon-edit"
@click="Modifywaybillrecipient(row)"
>编辑</el-button
>
<!-- <el-button type="primary" text icon="el-icon-delete" @click="rowDel(row)">删除</el-button>-->
</template>
</el-table-column>
<!-- &lt;!&ndash; 操作栏模块 &ndash;&gt;-->
<!-- <el-table-column prop="menu" label="操作" :width="220" align="center">-->
<!-- <template #="{row}">-->
@ -317,6 +330,45 @@
</span>
</el-dialog>
</div>
<el-dialog v-model="waybillrecipient" title="修改运单收货人">
<el-form
v-loading="loadingwaybillrecipient"
:model="waybillrecipientForm"
ref="waybillrecipientForm"
:rules="loginRules"
>
<el-form-item label="收货人名称" prop="consigneePerson" :label-width="formLabelWidth">
<el-input
v-model="waybillrecipientForm.consigneePerson"
placeholder="请填写收货人名称"
autocomplete="off"
/>
</el-form-item>
<el-form-item label="收货人电话" prop="consigneeMobile" :label-width="formLabelWidth">
<el-input
v-model="waybillrecipientForm.consigneeMobile"
placeholder="请填写收货人电话"
autocomplete="off"
/>
</el-form-item>
<el-form-item label="收货人地址" prop="consigneeAddress" :label-width="formLabelWidth">
<el-input
v-model="waybillrecipientForm.consigneeAddress"
:rows="2"
type="textarea"
placeholder="请填写收货人地址"
/>
</el-form-item>
</el-form>
<template #footer>
<span class="dialog-footer">
<el-button @click="waybillrecipient = false">取消</el-button>
<!-- <el-button type="primary" @click="dialogFormVisible = false"> 确定 </el-button>-->
<el-button type="primary" @click="waybillrecipientClick"> 确定 </el-button>
</span>
</template>
</el-dialog>
</basic-container>
<edittablehead
@setcolum="setnewcolum"
@ -337,6 +389,7 @@ import {
remove,
addStock,
showOrderPackgeCode,
$_Modifywaybillrecipient,
} from '@/api/distribution/distributionStockArticle';
import { getListOwn, updateParcelList } from '@/api/distribution/distributionParcelList';
import { addCallDelivery } from '@/api/distribution/distrilbutionCallDelivery';
@ -350,7 +403,7 @@ import { getLodop } from '@/utils/LodopFuncs';
import { getStockTemplate } from '@/api/distribution/distributionStockArticle';
import dayjs from 'dayjs';
import print from '@/utils/print';
import { ElMessage } from 'element-plus';
export default {
data() {
return {
@ -365,8 +418,19 @@ export default {
loading: true,
//
view: false,
waybillrecipientForm: {},
loadingwaybillrecipient: false,
waybillrecipient: false,
//
query: {},
loginRules: {
consigneeAddress: [{ required: true, message: '请输入收货人地址', trigger: 'blur' }],
consigneeMobile: [
{ required: true, message: '请输入收货人电话', trigger: 'blur' },
{ min: 11, max: 11, message: '请输入11位电话号码', trigger: 'blur' },
],
consigneePerson: [{ required: true, message: '请输入收货人名称', trigger: 'blur' }],
},
queryPage: {},
//
titleMaterial: '',
@ -1057,6 +1121,52 @@ export default {
break;
}
},
//
Modifywaybillrecipient(row) {
console.log(row, ' // 修改运单收货人');
this.waybillrecipient = true;
this.waybillrecipientForm.consigneeAddress = row.consigneeAddress; //
this.waybillrecipientForm.consigneeMobile = row.consigneeMobile; //
this.waybillrecipientForm.consigneePerson = row.consigneePerson; //
this.waybillrecipientForm.id = row.id;
},
//
waybillrecipientClick() {
this.$refs.waybillrecipientForm.validate(valid => {
if (!valid) {
return;
}
this.loadingwaybillrecipient = true;
let data = {
entityList: [],
};
data['entityList'].push({
consigneeAddress: this.waybillrecipientForm.consigneeAddress,
consigneePerson: this.waybillrecipientForm.consigneePerson,
consigneeMobile: this.waybillrecipientForm.consigneeMobile,
id: this.waybillrecipientForm.id,
});
$_Modifywaybillrecipient(data)
.then(res => {
console.log(res, '修改成功后返回值');
if (res.data.code == 200) {
this.waybillrecipient = false;
ElMessage({
showClose: true,
message: res.data.msg,
type: 'success',
});
this.onLoad();
}
})
.catch(() => {})
.finally(() => {
this.loadingwaybillrecipient = false;
});
// waybillrecipient;//
});
},
init() {
this.height = this.setPx(document.body.clientHeight - 580);
getDictionaryBiz('distribution_type').then(res => {

218
src/views/distribution/inventory/distrilbutionBillLadingView.vue

@ -90,7 +90,9 @@
</el-tab-pane>
<el-tab-pane label="包 件 列 表" name="tab3">
<el-button type="primary" icon="Position" @click="Packageexport">包件导出</el-button>
<el-button type="warning" plain icon="el-icon-camera" @click="handleqr('')"
>批量查看二维码
</el-button>
<!-- 列表模块 -->
<tablecmt
:columnList="columnListarrs.wrapoption"
@ -103,7 +105,10 @@
@selection="selectionChange"
>
<template #default="slotProps">
<el-text size="small" @click="ViewingTrajectories(slotProps.scope.row)" >查看轨迹</el-text>
<el-text size="small" @click="ViewingTrajectories(slotProps.scope.row)"
>查看轨迹</el-text
>
<el-text size="small" @click="handleqr(slotProps.scope.row)">查看二维码</el-text>
</template>
</tablecmt>
<div class="avue-crud__pagination" style="width: 100%">
@ -185,19 +190,27 @@ import {
getViewDetailOwn,
getBillLadingDetail,
getOrderDetail,
$_checkBillLadingIsRelease,
} from '@/api/distribution/distrilbutionBillLading';
import { ElMessage, ElMessageBox } from 'element-plus'
import { getLodop } from '@/utils/LodopFuncs.js';
import { getPrintTemplate } from '@/api/basicdata/basicdataGoodsAllocation';
import option from '@/option/basic/basicPdarecords';
import { mapGetters } from 'vuex';
import { getDictionaryBiz } from '@/api/system/dict';
import dayjs from 'dayjs';
import {getToken} from '@/utils/auth';
import { getToken } from '@/utils/auth';
import NProgress from 'nprogress';
import {downloadXls} from "@/utils/util";
import {exportBlob} from "@/api/common";
import {dateNow} from "@/utils/date";
import { downloadXls } from '@/utils/util';
import { exportBlob } from '@/api/common';
import { dateNow } from '@/utils/date';
export default {
data() {
return {
allselectionList: [], //
columnListarrs: {
//
ordoption: [
@ -525,15 +538,15 @@ export default {
},
],
wrapoption: [
// {
// prop: '',
// label: '',
// type: 0,
// values: '',
// width: 55,
// checkarr: [],
// fixed: true,
// },
{
prop: '',
label: '序号',
type: 0,
values: '',
width: 55,
checkarr: [],
fixed: true,
},
{
prop: 'serviceNumber',
label: '服务号',
@ -806,7 +819,7 @@ export default {
label: '操作',
type: 6,
values: '',
width: '150',
width: '220',
checkarr: [],
fixed: 'right',
sortable: true,
@ -1358,61 +1371,66 @@ export default {
},
methods: {
//
Orderexport(){
let downloadUrl = `/logpm-distribution/distrilbutionBillStock/billOrderDetailExcel?${this.website.tokenHeader}=${getToken()}`;
Orderexport() {
let downloadUrl = `/logpm-distribution/distrilbutionBillStock/billOrderDetailExcel?${
this.website.tokenHeader
}=${getToken()}`;
let values = {
billLadingId:this.$route.query.id
billLadingId: this.$route.query.id,
};
this.$confirm("是否导出数据?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning"
this.$confirm('是否导出数据?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
}).then(() => {
NProgress.start();
exportBlob(downloadUrl, values).then(res => {
downloadXls(res.data, `订单列表${dateNow()}.xlsx`);
NProgress.done();
})
});
});
},
//
Packageexport(){
let downloadUrl = `/logpm-distribution/distrilbutionBillStock/billOrderPackExcel?${this.website.tokenHeader}=${getToken()}`;
Packageexport() {
let downloadUrl = `/logpm-distribution/distrilbutionBillStock/billOrderPackExcel?${
this.website.tokenHeader
}=${getToken()}`;
let values = {
billLadingId:this.$route.query.id
billLadingId: this.$route.query.id,
};
this.$confirm("是否导出数据?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning"
this.$confirm('是否导出数据?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
}).then(() => {
NProgress.start();
exportBlob(downloadUrl, values).then(res => {
downloadXls(res.data, `包件导出${dateNow()}.xlsx`);
NProgress.done();
})
});
});
},
//
Inventoryexport(){
let downloadUrl = `/logpm-distribution/distributionDeliveryDetails/billOrderInventoryExcel?${this.website.tokenHeader}=${getToken()}`;
Inventoryexport() {
let downloadUrl = `/logpm-distribution/distributionDeliveryDetails/billOrderInventoryExcel?${
this.website.tokenHeader
}=${getToken()}`;
let values = {
billLadingId:this.$route.query.id
billLadingId: this.$route.query.id,
};
this.$confirm("是否导出数据?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning"
this.$confirm('是否导出数据?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
}).then(() => {
NProgress.start();
exportBlob(downloadUrl, values).then(res => {
downloadXls(res.data, `库存品导出${dateNow()}.xlsx`);
NProgress.done();
})
});
});
},
beforeOpen(done, type) {
@ -1461,12 +1479,74 @@ export default {
break;
}
},
searchHide() {
this.search = !this.search;
},
searchChange() {
this.onLoad(this.page);
},
//
handleqr(val) {
console.log(val, 'val');
let qr = '';
let checkcode = [];
if (val) {
qr = val.id;
} else {
if (!this.selectionList.length) {
this.$message.warning('请选择至少一条数据');
return;
}
this.selectionList.map(item => {
checkcode.push(item.id);
// checkcode.push(item.orderPackageCode)
});
qr = checkcode.join(',');
}
this.html = '';
getPrintTemplate({
ids: qr,
}).then(res => {
// this.orderPackageCode = res.data
console.log(res.data);
this.html = this.getHtmls(res.data.data.dataList, res.data.data.templateHtml);
this.dialogVisible = true;
});
},
//
printTemplate() {
let LODOP = getLodop();
if (this.selectionList.length === 0) {
this.$message.warning('请选择至少一条数据');
return;
}
const nodeList = document.querySelectorAll('.printNode > div');
// getPrintTemplate(this.ids).then(res => {
// let templateData = res.data.data;
// let templateData = "res.data.data";
// console.log(templateData);
LODOP.PRINT_INITA('测试预览功能');
// LODOP.PRINT_INITA("");
// LODOP.SET_PRINT_PAGESIZE(1, 0, 0, 'A4');
LODOP.SET_PRINT_MODE('WINDOW_DEFPRINTER', 'Deli DL-888T');
LODOP.SET_PRINT_PAGESIZE(2, '210mm', '50mm', '');
LODOP.SET_SHOW_MODE('LANDSCAPE_DEFROTATED', 1);
// //
LODOP.SET_PRINT_MODE('WINDOW_DEFPAGESIZE', 1);
// // datahtml
nodeList.forEach(val => {
LODOP.ADD_PRINT_HTM('0%', '0%', '100%', '100%', val.innerHTML);
LODOP.NewPage();
});
LODOP.PREVIEW(); //()
// });
},
searchReset() {
this.query = {};
this.page.currentPage = 1;
@ -1540,16 +1620,16 @@ export default {
console.log('查看>>>>>库存>>', res.data.data);
const data = res.data.data;
this.inventorydata = data.records;
data.records.forEach(item=>{
data.records.forEach(item => {
// 1 2 3
if(item.stockStatus == 1){
item.stockStatus = '待备货'
} else if(item.stockStatus == 2){
item.stockStatus = '备货中'
}else if(item.stockStatus == 3){
item.stockStatus = '备货完成'
if (item.stockStatus == 1) {
item.stockStatus = '待备货';
} else if (item.stockStatus == 2) {
item.stockStatus = '备货中';
} else if (item.stockStatus == 3) {
item.stockStatus = '备货完成';
}
})
});
this.inventorypage.total = data.total;
});
},
@ -1564,14 +1644,14 @@ export default {
this.selectionList = list;
},
//
ViewingTrajectories(scope){
ViewingTrajectories(scope) {
console.log('查看>>>>>轨迹>>', scope);
this.$router.push({
path: '/distribution/signdetail/packageNodeSearch',
query: {
orderPackageCode:scope.orderPackageCode,
}
})
orderPackageCode: scope.orderPackageCode,
},
});
},
selectionClear() {
this.selectionList = [];
@ -1611,14 +1691,38 @@ export default {
},
/** 确认提货 */
handleSigin() {
this.$confirm('确定签收吗?', {
let data = {
billLadingId: this.$route.query.id,
};
$_checkBillLadingIsRelease(data).then(res => {
console.log(res, 're====?');
if (!res.data) {
ElMessageBox.confirm('包件未扫描完成,此操作会释放此类包件!是否继续操作?', '操作提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
}).then(async () => {
})
.then(() => {
this.pageLoading = true;
getBillLadingDetail(this.$route.query.id).then(res=>{
const { code } = res.data;
if (code !== 200) return;
this.$message.success('签收成功');
this.$store.commit('DEL_TAG_CURRENT');
this.$router.back('-1');
}).catch(()=>{
}).finally(()=>{
this.pageLoading = false;
})
})
.catch(() => {});
} else {
try {
this.pageLoading = true;
const res = await getBillLadingDetail(this.$route.query.id);
const res = getBillLadingDetail(this.$route.query.id);
const { code } = res.data;
if (code !== 200) return;
this.$message.success('签收成功');
@ -1629,7 +1733,9 @@ export default {
} finally {
this.pageLoading = false;
}
}
});
return;
},
onLoad() {
//

16
src/views/distribution/reservation/reservation.vue

@ -1339,14 +1339,14 @@ export default {
},
});
// this.$router.push({
// path: '/distribution/reservation/atlas',
// query: {
// id: ids,
// type: '1',
// },
// });
// console.log(">>>>>>>>>>",ids);
this.$router.push({
path: '/distribution/reservation/atlas',
query: {
id: ids,
type: '1',
},
});
console.log(">>>>>>>>>>",ids);
},
//
handleStockUp() {

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

@ -513,6 +513,7 @@ export default {
packageQuery: {},
reservationloading: false,
orderRow: {},
Appointmentquantity:0,//
/** 订单 */
columnList: [
{
@ -2517,8 +2518,12 @@ export default {
this.orderData.forEach(item => {
if (item.id === this.obj.id) {
item.packageList = this.packageDataSec;
item.reservationNum=this.packageDataSec.length
}
});
// this.Appointmentquantity = this.packageDataSec.length;//
console.log('this.orderData------------>', this.orderData);
this.isaddvalue = false;
},
@ -3059,6 +3064,9 @@ export default {
//
this.orderData = [...this.orderList];
this.orderData.forEach(item=>{
item.reservationNum = item.handQuantity
})
this.handleSearchOrder();
this.orderShow = false;
},

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

@ -366,7 +366,7 @@
<!-- 签收信息 -->
<el-collapse v-model="activeNames" style="margin-top: 10px">
<el-collapse class="el_commodity" v-model="activeNames" style="margin-top: 10px">
<el-collapse-item title="商品信息" name="1">
<el-tabs
v-loading="editLoading"
@ -374,6 +374,7 @@
type="border-card"
@tab-click="tabClick"
>
<el-button type="primary" @click="Signforexport">导出</el-button>
<template v-for="item in Tabs" :key="item.name">
<el-tab-pane :label="item.label" :name="item.name">
<template v-if="item.type === 'package'">
@ -691,12 +692,15 @@ import {
$_saveSignAddValuePackage,
$_cancelSignAddValuePackage,
$_updateSignAddValuePackage,
$_distributionSignforPackageList,
$_distributionSignforOrderList,
} from '@/api/distribution/distributionSignfor';
import { getToken } from '@/utils/auth';
import { ElMessage } from 'element-plus';
import { ElMessageBox } from 'element-plus';
import { setNodeHeight } from '@/utils/util';
import { onMounted } from 'vue';
import { downloadXls } from '@/utils/util';
const form = ref({}); //
const RouterId = ref(null); //ID
const RouterReservationId = ref(null); //
@ -714,6 +718,13 @@ const editLoading = ref(false); //表格切换加载
const tableRefs = ref(null); //
const currentPage = ref(1); //
const pageSize = ref(30); //
const SignforMenu = ref({
closable: false,
disabled: false,
label: '订单列表',
lazy: false,
name: '0',
}); //
const total = ref(0); //
const pageList = ref([5, 10, 50, 100, 200]); //
const background = ref(true); //
@ -1163,17 +1174,17 @@ const menuData2 = ref([
sortable: true,
head: false,
},
{
prop: 'trainNumber',
label: '包件类型',
type: 2,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
// {
// prop: 'trainNumber',
// label: '',
// type: 2,
// values: '',
// width: '150',
// checkarr: [],
// fixed: false,
// sortable: true,
// head: false,
// },
{
prop: 'reservationNum',
label: '计划数量',
@ -2117,6 +2128,8 @@ function InventoryList() {
}
//
const tabClick = val => {
console.log(val.props, '菜单标记');
SignforMenu.value = val.props;
sptemp.value = []; //
switch (val.props.name) {
case '0':
@ -2137,6 +2150,57 @@ const tabClick = val => {
break;
}
};
//
const Signforexport = () => {
console.log(SignforMenu.value);
ElMessageBox.confirm(`是否导出${SignforMenu.value.label}`, 'Warning', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
})
.then(() => {
let data = {
signforId: RouterId.value,
};
editLoading.value = true;
//
if (SignforMenu.value.label == '订单列表') {
return $_distributionSignforOrderList(data)
.then(res => {
downloadXls(res.data, `订单列表.xlsx`);
ElMessage({
type: 'success',
message: res.data.msg,
});
})
.catch(() => {})
.finally(() => {
editLoading.value = false;
});
}
//
if (SignforMenu.value.label == '包件列表') {
return $_distributionSignforPackageList(data)
.then(res => {
downloadXls(res.data, `包件列表.xlsx`);
ElMessage({
type: 'success',
message: res.data.msg,
});
})
.catch(() => {})
.finally(() => {
editLoading.value = false;
});
}
//
if (SignforMenu.value.label == '库存品列表') {
}
})
.catch(() => {});
};
//
const valueAddedServices = val => {
dataAdded.value = []; //

10
src/views/warehouse/warehousingentry/warehouseWarehousingEntry.vue

@ -374,6 +374,16 @@ export default {
fixed: false,
sortable: true,
},
{
label: '备注',
prop: 'remark',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
},
{
prop: '',
label: '操作',

Loading…
Cancel
Save