Browse Source

修改转库存品提醒

dev-warehouse
caoyizhong 2 years ago
parent
commit
5f039ba250
  1. 8
      src/api/distribution/distributionParcelList.js
  2. 27
      src/views/distribution/inventory/delivery/distributionStockArticle.vue
  3. 30
      src/views/distribution/inventory/delivery/distributionStockArticleMarket.vue
  4. 157
      src/views/distribution/inventory/delivery/distributionStockArticleSelf.vue
  5. 162
      src/views/distribution/inventory/distributionStockArticleDetails.vue

8
src/api/distribution/distributionParcelList.js

@ -70,6 +70,14 @@ export const update = (row) => {
})
}
export const updateParcelList = (row) => {
return request({
url: '/api/logpm-distribution/distributionParcelList/update',
method: 'post',
data: row
})
}
export const getPackageList = (params) => {
return request({
url: '/api/logpm-distribution/distributionParcelList/list',

27
src/views/distribution/inventory/delivery/distributionStockArticle.vue

@ -1015,7 +1015,8 @@ export default {
return;
}else{
let st = false;
this.selectionList.forEach( i =>{
let lost = false;
for (const i of this.selectionList) {
console.log("yuyuyuuyu",i);
if(i.reservationStatusName == "已预约"){
st = true;
@ -1025,11 +1026,31 @@ export default {
st = true;
this.$message.warning(i.orderCode+" - 为自提单,无法转为库存品!!!");
}
})
if(i.freezeStatus == "30"){
st = true;
this.$message.warning(i.orderCode+" - 为冻结单,无法转为库存品!!!");
}
if(!st){
//
// console.log("cxcxcxc",i);
let aa = await getListOwn(this.page.currentPage,this.page.pageSize,{ stockArticleId : i.id } ).then();
// console.log("",aa.data.data.records);
aa.data.data.records.forEach( l =>{
console.log(l.materialId , l.materialName , l.materialCode , l.materialUnit);
if(!l.materialId || l.materialId == '-1'){
lost = true;
}
})
}
}
if(st){
return
}
this.getSock();
if(lost){
this.$message.warning("订单信息不完整,请完善包件信息!如没有请维护物料信息,在选择!!!")
}else{
this.getSock();
}
}

30
src/views/distribution/inventory/delivery/distributionStockArticleMarket.vue

@ -985,17 +985,39 @@ export default {
return;
}else{
let st = false;
this.selectionList.forEach( i =>{
let lost = false;
for (const i of this.selectionList) {
if(i.reservationStatusName == "已预约"){
st = true;
this.$message.warning(i.orderCode+" - 已预约,无法转为库存品!!!");
}
})
if(i.freezeStatus == "30"){
st = true;
this.$message.warning(i.orderCode+" - 为冻结单,无法转为库存品!!!");
}
if(!st){
//
// console.log("cxcxcxc",i);
let aa = await getListOwn(this.page.currentPage,this.page.pageSize,{ stockArticleId : i.id } ).then();
// console.log("",aa.data.data.records);
aa.data.data.records.forEach( l =>{
console.log(!l.materialId , !l.materialName , !l.materialCode , !l.materialUnit);
if(!l.materialId || l.materialId == '-1' ){
lost = true;
}
})
}
}
if(st){
return
}
this.getSock();
if(lost){
this.$message.warning("订单信息不完整,请完善包件信息!如没有请维护物料信息,在选择!!!")
/* this.titleMaterial = ""
this.materialBox = true;*/
}else{
this.getSock();
}
}

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

@ -356,6 +356,77 @@
</span>
</template>
</el-dialog>
<!-- 物料选择模块 -->
<el-dialog :title="titleMaterial"
v-model="materialBox"
width="40%"
:before-close="beforeClose"
append-to-body>
<el-form :disabled="view" ref="form" :model="formMaterial" label-width="80px">
<el-form-item label="物料名称" prop="typeService">
<el-select
v-model="formMaterial.name"
filterable
remote
reserve-keyword
placeholder="请输入物料名称"
remote-show-suffix
:remote-method="remoteMethodName"
@change="getMethodName($event,'1')"
:loading="loading"
>
<el-option
v-for="item in optionsName"
:key="item.id"
:label="item.name"
:value="item.id"
/>
</el-select>
</el-form-item>
<el-form-item label="物料编码" prop="serviceNumber">
<el-select
v-model="formMaterial.code"
filterable
remote
reserve-keyword
placeholder="请输入物料编码"
remote-show-suffix
:remote-method="remoteMethodCode"
@change="getMethodName($event,'2')"
:loading="loading"
>
<el-option
v-for="item in optionsCode"
:key="item.value"
:label="item.label"
:value="item.value"
/>
</el-select>
</el-form-item>
<el-form-item label="物料单位" prop="orderCode">
<!-- <el-input v-model="formMaterial.unit" placeholder="请输入物料单位"/>-->
<el-select v-model="formMaterial.unit" clearable placeholder="请选择单位">
<el-option
v-for="item in logpmUnit"
:key="item.dictKey"
:label="item.dictValue"
:value="item.dictKey">
</el-option>
</el-select>
</el-form-item>
<el-form-item label="SKU" prop="mallName">
<el-input v-model="formMaterial.sku" placeholder="请输入SKU"/>
</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="materialBox = false"> </el-button>
</span>
</template>
</el-dialog>
</div>
</basic-container>
<edittablehead
@ -377,6 +448,7 @@ import { mapGetters } from "vuex";
import { getDictionaryBiz } from '@/api/system/dict';
import { getListCallDelivery } from '@/api/distribution/distrilbutionCallDelivery';
import dayjs from 'dayjs';
import { getListMaterial } from '@/api/basic/basicMaterial';
export default {
data () {
@ -805,8 +877,12 @@ export default {
height: 0,
//
title: '',
//
titleMaterial: '',
//
box: false,
//
materialBox: false,
//
search: true,
//
@ -828,17 +904,22 @@ export default {
},
//
form: {},
formMaterial: {},
formCall: {},//
formService: {}, //
formCustomer: {}, //
//
selectionList: [],
materialData: [],
//
option: option,
//
data: [],
optionsName: [],
optionsCode: [],
dataHistorical: [],
distributionType: [],
logpmUnit: [],
deliveryOrderStatus: [],
dialogTableVisible: false,
dialogFormVisible: false,
@ -951,9 +1032,49 @@ export default {
}
},
methods: {
/*getMethodName(row,num){
console.log("名称选择事件",row);
switch (num) {
case '1':
let a = this.optionsName.find( i => i.id == row);
this.formMaterial.code =a.productCode;
this.formMaterial.unit =a.logpmUnit ;
this.formMaterial.sku =a.sku ;
break;
case '2':
let b = this.optionsCode.find( i => i.id == row);
this.formMaterial.name =b.name;
this.formMaterial.unit =b.logpmUnit ;
this.formMaterial.sku =b.sku ;
break;
}
},
async remoteMethodName (query){
if (query) {
this.loading = true;
//
let asd = await getListMaterial(this.page.currentPage,this.page.pageSize,{ name: query }).then();
console.log("物料信息",asd.data.data);
this.optionsName =asd.data.data.records;
this.loading = false;
} else {
this.optionsName = [];
}
},
async remoteMethodCode (query){
if (query) {
this.loading = true
let asd = await getListMaterial(this.page.currentPage,this.page.pageSize,{ productCode: query }).then();
console.log("物料编号信息",asd.data.data);
this.optionsCode =asd.data.data.records;
this.loading = false;
} else {
this.optionsCode = []
}
},*/
//
handleCallDeliveryOwn(row){
console.log("row",row);
// console.log("row",row);
this.formCustomer.name = row.row.customerName;
this.formCustomer.phone = row.row.customerTelephone;
this.formCustomer.address = row.row.customerAddress;
@ -1056,7 +1177,6 @@ export default {
}else{
this.$message.warning("请选择相同收货信息的订单!!!")
}
},
@ -1066,16 +1186,40 @@ export default {
return;
}else {
let st = false;
this.selectionList.forEach( i =>{
let lost = false;
for (const i of this.selectionList) {
if(i.reservationStatusName == "已预约"){
st = true;
this.$message.warning(i.orderCode+" - 已预约,无法转为库存品!!!");
return;
}
})
if(i.freezeStatus == "30"){
st = true;
this.$message.warning(i.orderCode+" - 为冻结单,无法转为库存品!!!");
}
if(!st){
//
// console.log("cxcxcxc",i);
let aa = await getListOwn(this.page.currentPage,this.page.pageSize,{ stockArticleId : i.id } ).then();
// console.log("",aa.data.data.records);
aa.data.data.records.forEach( l =>{
console.log(!l.materialId , !l.materialName , !l.materialCode , !l.materialUnit);
if(!l.materialId || l.materialId == '-1' ){
lost = true;
}
})
}
}
if(st){
return
}
this.getSock();
if(lost){
this.$message.warning("订单信息不完整,请完善包件信息!如没有请维护物料信息,在选择!!!")
/* this.titleMaterial = ""
this.materialBox = true;*/
}else{
this.getSock();
}
}
/* if (this.selectionList.length > 1){
@ -1279,6 +1423,9 @@ export default {
return item
});*/
});
getDictionaryBiz('logpm_unit').then(res => { //
this.logpmUnit = res.data.data;
});
getDictionaryBiz('order_status').then(res => {
this.deliveryOrderStatus = res.data.data;
this.checkcColumnList("orderStatusName", this.columnList).checkarr=res.data.data.map(item=>{

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

@ -112,6 +112,7 @@
<template #="{row}">
<el-button type="primary" text icon="el-icon-view" @click="handleTrajectory(row)">查看轨迹</el-button>
<el-button type="primary" text icon="el-icon-view" @click="handleQRCode(row)">查看二维码</el-button>
<el-button type="primary" text icon="el-icon-view" v-if="row.materialId == '' || row.materialId == '-1'" @click="handleMaterial(row)">补充物料信息</el-button>
<!-- <el-button type="primary" text icon="el-icon-edit" @click="handleEdit(row)">编辑</el-button>-->
<!-- <el-button type="primary" text icon="el-icon-delete" @click="rowDel(row)">删除</el-button>-->
</template>
@ -133,6 +134,77 @@
</el-pagination>
</div>
</el-row>
<!-- 物料选择模块 -->
<el-dialog :title="titleMaterial"
v-model="materialBox"
width="40%"
:before-close="beforeClose"
append-to-body>
<el-form :disabled="view" ref="form" :model="formMaterial" label-width="80px">
<el-form-item label="物料名称" prop="typeService">
<el-select
v-model="formMaterial.materialId"
filterable
remote
reserve-keyword
placeholder="请输入物料名称"
remote-show-suffix
:remote-method="remoteMethodName"
@change="getMethodName($event,'1')"
:loading="loading"
>
<el-option
v-for="item in optionsName"
:key="item.id"
:label="item.name"
:value="item.id"
/>
</el-select>
</el-form-item>
<el-form-item label="物料编码" prop="serviceNumber">
<el-select
v-model="formMaterial.materialCode"
filterable
remote
reserve-keyword
placeholder="请输入物料编码"
remote-show-suffix
:remote-method="remoteMethodCode"
@change="getMethodName($event,'2')"
:loading="loading"
>
<el-option
v-for="item in optionsCode"
:key="item.id"
:label="item.productCode"
:value="item.id"
/>
</el-select>
</el-form-item>
<el-form-item label="物料单位" prop="orderCode">
<!-- <el-input v-model="formMaterial.unit" placeholder="请输入物料单位"/>-->
<el-select v-model="formMaterial.materialUnit" clearable placeholder="请选择单位">
<el-option
v-for="item in logpmUnit"
:key="item.dictKey"
:label="item.dictValue"
:value="item.dictKey">
</el-option>
</el-select>
</el-form-item>
<el-form-item label="SKU" prop="mallName">
<el-input v-model="formMaterial.sku" placeholder="请输入SKU"/>
</el-form-item>
</el-form>
<!-- 表单按钮 -->
<template #footer>
<span v-if="!view" class="dialog-footer">
<el-button type="primary" icon="el-icon-circle-check" @click="handleSubmitMethod"> </el-button>
<el-button icon="el-icon-circle-close" @click="materialBox = false"> </el-button>
</span>
</template>
</el-dialog>
<el-dialog v-model="dialogFormCustomer" title="修改客户信息">
<el-form :model="formCustomer">
<el-form-item label="姓名" :label-width="formLabelWidth">
@ -193,13 +265,14 @@ import {
addStock,
getQueryQRCode
} from '@/api/distribution/distributionStockArticle';
import { getListOwn } from "@/api/distribution/distributionParcelList";
import { getListOwn, updateParcelList } from '@/api/distribution/distributionParcelList';
import { addCallDelivery } from "@/api/distribution/distrilbutionCallDelivery";
import { addClient } from "@/api/distribution/distributionClientMessage";
import { addService } from "@/api/distribution/distributionServiceLog";
import option from "@/option/distribution/distributionStockArticle";
import { mapGetters } from "vuex";
import { getDictionaryBiz } from '@/api/system/dict';
import { getListMaterial } from '@/api/basic/basicMaterial';
export default {
data () {
@ -217,6 +290,13 @@ export default {
view: false,
//
query: {},
//
titleMaterial: '',
optionsName: [],
optionsCode: [],
logpmUnit:[],
//
materialBox: false,
//
page: {
currentPage: 1,
@ -225,6 +305,7 @@ export default {
},
//
form: {},
formMaterial: {},
formCall: {},//
formService: {}, //
formCustomer: {}, //
@ -283,6 +364,76 @@ export default {
}
},
methods: {
//
handleSubmitMethod(){
// console.log(">>>",this.formMaterial);
const regex = /^\d+$/;
let asm = {
id: this.formMaterial.id,
// materialId: this.formMaterial.materialId,
}
if (regex.test(this.formMaterial.materialId)) {
// console.log("");
asm.materialId = this.formMaterial.materialId
} else {
// console.log("");
asm.materialId = this.formMaterial.materialCode;
}
// console.log(">>>",asm);
updateParcelList(asm).then(() => {
this.materialBox = false;
this.onLoadOwn(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
this.formMaterial = {};
})
},
getMethodName(row,num){
// console.log("",row);
switch (num) {
case '1':
let a = this.optionsName.find( i => i.id == row);
this.formMaterial.materialCode = a.productCode;
this.formMaterial.materialUnit = a.logpmUnit;
this.formMaterial.sku = a.sku;
break;
case '2':
let b = this.optionsCode.find( i => i.id == row);
this.formMaterial.materialId = b.name;
this.formMaterial.materialUnit = b.logpmUnit;
this.formMaterial.sku = b.sku ;
break;
}
},
async remoteMethodName (query){
if (query) {
this.loading = true;
//
let asd = await getListMaterial(this.page.currentPage,this.page.pageSize,{ name: query }).then();
console.log("物料信息",asd.data.data);
this.optionsName =asd.data.data.records;
this.loading = false;
} else {
this.optionsName = [];
}
},
async remoteMethodCode (query){
if (query) {
this.loading = true
let asd = await getListMaterial(this.page.currentPage,this.page.pageSize,{ productCode: query }).then();
console.log("物料编号信息",asd.data.data);
this.optionsCode =asd.data.data.records;
this.loading = false;
} else {
this.optionsCode = []
}
},
handleMoke(){
if (this.selectionList.length === 0) {
this.$message.warning("请选择至少一条数据");
@ -418,6 +569,9 @@ export default {
getDictionaryBiz('distribution_type').then(res => {
this.distributionType = res.data.data;
});
getDictionaryBiz('logpm_unit').then(res => { //
this.logpmUnit = res.data.data;
});
},
searchHide () {
@ -531,6 +685,12 @@ export default {
this.form = res.data.data;
});
},
handleMaterial(row){
console.log("row>>>",row);
this.titleMaterial = "补充物料"
this.materialBox = true;
this.formMaterial.id = row.id;
},
handleQRCode (row) {
// this.title = ''
// this.view = true;

Loading…
Cancel
Save