采购收货po修改与到货登记剥离

master
guoshuang 10 months ago
parent 713552803c
commit 5d34886543

@ -611,7 +611,7 @@
{
"path": "pages/wms/Raw/ArrivalRegistration/index",
"style": {
"navigationBarTitleText": "到货登记",
"navigationBarTitleText": "采购收货(SRM)到货登记",
"navigationStyle": "custom",
"navigationBarTextStyle": "white"
}
@ -623,6 +623,14 @@
"navigationStyle": "custom",
"navigationBarTextStyle": "white"
}
},
{
"path": "pages/wms/Raw/ArrivalRegistrationPO/index",
"style": {
"navigationBarTitleText": "采购收货(PO)到货登记",
"navigationStyle": "custom",
"navigationBarTextStyle": "white"
}
}

@ -142,8 +142,8 @@ export default class LoginPage extends BasePage {
// console.log('Version////', this.Version);
}
///******************
// version = '0.0.100'; //
version = '0.0.12'; //
version = '0.0.101'; //
//version = '0.0.12'; //
//*************** false true ****************
//isTest = true;

@ -4,7 +4,7 @@
<view class="left">
<u-icon class="icon" name="arrow-left" @click="uni.navigateBack({})" />
</view>
<view class="title">到货登记</view>
<view class="title">采购收货(SRM)到货登记</view>
<view class="right"></view>
</view>
<u-form class="form" ref="form" label-width="180rpx">

@ -0,0 +1,876 @@
<template>
<view class="page-product-receipt">
<view class="header" :style="{ backgroundColor: `rgba(250, 53, 52, ${scrollTop / 100})` }">
<view class="left">
<u-icon class="icon" name="arrow-left" @click="uni.navigateBack({})" />
</view>
<view class="title">采购收货(PO)到货登记</view>
<view class="right"></view>
</view>
<u-form class="form" ref="form" label-width="180rpx">
<!-- 单号 -->
<view class="single">
<view class="single-left">
<view>采购单号:</view>
<u-search placeholder="请扫描" v-model="procureCode" @search="query" :show-action="false"></u-search>
</view>
<view class="single-right">
<u-button type="primary" @click="tidan"></u-button>
</view>
</view>
<!-- 订单 -->
<u-form-item label="物料描述">
<!-- <u-input :border="true" v-model="materialCode" placeholder="" @confirm="query" style="overflow: hidden" /> -->
<jPicker sureColor="#ff0000" :showCode="true" @bindpicker="bookTypeChange" duoyukey="procureCode" showKey="label" valKey="value" :val="aimWl.value" :options="materilist" />
</u-form-item>
<!-- <view class="creatshow">
<u-button class="buttonshow" type="primary" @click="generate"></u-button>
<u-input border placeholder="" class="inputshow" disabled v-model="receiptNoCode" />
</view> -->
</u-form>
<view class="matshow">
<view v-for="item in list" :key="item.id">
<u-form style="margin-top: 10rpx" class="form2">
<view class="list">
<view class="righttitle">
<!-- 0是未收货1是正在收货2是收货完成 -->
<view class="boder-icon-top zhuangtai" data-state="0">{{ item.orderStatus == 0 ? '未收货' : item.orderStatus == 1 ? '正在收货' : '收货完成' }}</view>
</view>
<view class="row-list">
<view class="list-item"> 采购单号: </view>
<view> {{ item.procureCode }} </view>
</view>
<view class="row-list">
<view class="list-item"> 行项目: </view>
<view> {{ item.userDefined3 }} </view>
</view>
<view class="row-list">
<view class="list-item"> 物料编码: </view>
<view> {{ item.handlematerialCode }}</view>
</view>
<view class="row-list">
<view class="list-item"> 物料描述: </view>
<view>{{ item.materialDesc }}</view>
</view>
<view class="row-list">
<view class="list-item"> 工厂号: </view>
<view>{{ item.siteCode }}</view>
</view>
<view class="row-list">
<view class="list-item"> 应收/已收: </view>
<view>{{ item.planNumber }}/{{ item.realityNumber }}</view>
</view>
<!-- <view a:if="true" class="righttitle">
<view @click.stop="onPass(item)" class="boder-icon-rigth"> 收货 </view>
</view> -->
</view>
</u-form>
</view>
</view>
<view class="bottom-bar">
<u-row class="button-bar">
<u-col :span="12">
<u-button type="error" @click="SignIn"></u-button>
</u-col>
<!-- 确定 -->
<!-- <u-col :span="6">
<u-button @click="uni.navigateBack()" type="primary">返回</u-button>
</u-col> -->
<!-- 返回 -->
</u-row>
</view>
<u-toast ref="uToast" />
<view>
<u-popup v-model="singshow" mode="center" width="580rpx" height="500rpx">
<view class="form4">
<view class="poupitem">
<view class="pouptitle">已登记数量</view>
<u-input disabled class="poupcontent" :clearable="false" v-model="operationNumber" placeholder="" style="overflow: hidden; background-color: #ddd" />
</view>
<view class="poupitem">
<view class="pouptitle">未登记数量</view>
<u-input disabled class="poupcontent" :clearable="false" v-model="nooperationNumber" placeholder="" style="overflow: hidden; background-color: #ddd" />
</view>
<view class="poupitem">
<view class="pouptitle">登记数量</view>
<u-input class="poupcontent" :clearable="false" v-model="czNumber" placeholder="" style="overflow: hidden" />
</view>
<view class="poupbutton" style="margin-top: 10px">
<div>
<u-button style="width: 100px; height: 35px" @click="onOksing" size="mini" type="primary">确定</u-button>
</div>
<div>
<u-button style="width: 100px; height: 35px" size="mini" type="error" @click="nopoupsing"></u-button>
</div>
</view>
</view>
</u-popup>
<view v-if="singshow" class="mask"></view>
</view>
</view>
</template>
<script lang="ts">
import { Component } from 'vue-property-decorator';
import { BasePage } from '@/components/base/page';
import jPicker from '@/components/J-Picker/jPicker.vue';
import model from './model';
import { session } from '@/store/modules/session';
//import dayjs from 'dayjs';
interface OptionType {
label: string;
value: string;
}
@Component({
components: {
jPicker,
},
})
export default class ArrivalRegistrationPO extends BasePage {
model = model;
list: any = [];
receivedlist: any = [];
operationNumber = 0;
nooperationNumber = 0;
czNumber = '';
whList: any = [];
waCodeList: any = [];
show = false;
singshow = false;
form3: any = {};
aimWl = {} as OptionType;
materilist = [];
productCodeTypeList: any = {};
waCodeTypeList: any = {};
moren = '选择仓库';
moren1 = '选择库区';
waylist = [
// {
// value: '0',
// lable: '',
// },
{
value: '1',
lable: '根据托盘',
},
];
bimWl: any = {};
selectway = true;
showshow = true;
procureCode: any = '';
materialCode: any = '';
border = true;
height = 100;
autoHeight = true;
imgList: any = [];
imgUrlList: any = [];
isqualified = [
{
label: '合格',
value: '1',
},
{
label: '不合格',
value: '0',
},
];
clickitem: any = '';
productCodeList: any = {};
receiptNoCode = '';
async onReady() {
//await this.model.Stashlist();
//this.whList = model.DictTypeList;
//this.remove = this.model.WlList[0];
}
//
// generate() {
// const today = dayjs().format('YYYYMMDDHHmmss');
// this.receiptNoCode = `sn${today}`;
// }
//
nopoup() {
this.show = false;
this.form3 = {};
this.productCodeTypeList = {};
}
nopoupsing() {
this.singshow = false;
this.operationNumber = 0;
this.nooperationNumber = 0;
this.czNumber = '';
}
//
// async onOk() {
// console.log(this.form3);
// // if (this.form3.userDefined6 == '' || this.form3.userDefined6 == undefined) {
// // (this.$refs.uToast as any).show({
// // title: '',
// // type: 'default',
// // });
// // return;
// // }
// if (this.form3.planNumber == '' || this.form3.planNumber == undefined) {
// (this.$refs.uToast as any).show({
// title: '',
// type: 'default',
// });
// return;
// }
// if (this.form3.sn == '' && this.selectway == true) {
// (this.$refs.uToast as any).show({
// title: '',
// type: 'default',
// });
// return;
// }
// if (this.productCodeTypeList.value == '' || this.productCodeTypeList.value == undefined) {
// (this.$refs.uToast as any).show({
// title: '',
// type: 'default',
// });
// return;
// }
// if (this.waCodeTypeList.value == '' || this.waCodeTypeList.value == undefined) {
// (this.$refs.uToast as any).show({
// title: '',
// type: 'default',
// });
// return;
// }
// if (this.receiptNoCode == '' || this.receiptNoCode == undefined) {
// (this.$refs.uToast as any).show({
// title: '',
// type: 'default',
// });
// return;
// }
// console.log('1234567');
// let query = this.clickitem;
// // query.applyList = this.Sparepartlist;
// query.workStatus = this.form3.workStatus;
// if (this.selectway == true) {
// query.sn = this.form3.sn;
// } else {
// query.sn = dayjs().format('YYYYMMDDHHmmss');
// }
// query.planNumber = this.form3.planNumber;
// query.whCode = this.productCodeTypeList.warehouseCode;
// query.waCode = this.waCodeTypeList.value;
// query.factoryCode = session.FactoryCode;
// query.userDefined6 = this.form3.userDefined6;
// query.receiptNoCode = this.receiptNoCode;
// query.poLine = this.clickitem.userDefined3;
// await this.model.PurchaseOrderdeliPda(query);
// console.log(this.model.SubmitCode);
// if (this.model.SubmitCode.code == 200) {
// (this.$refs.uToast as any).show({
// title: '',
// type: 'default',
// });
// this.show = false;
// this.query();
// // this.ProcureOrderAlready();
// } else {
// (this.$refs.uToast as any).show({
// title: '',
// type: this.model.SubmitCode.msg,
// });
// }
// }
async onFormDoubleClick(item) {
console.log('双击', item);
//await this.model.OnSubmit(item.id);
// uni.navigateTo({
// url: `/pages/equipment/Upkeep/repairing?listitem=` + encodeURIComponent(JSON.stringify(item)),
// });
this.uni.navigateTo({
url: this.page.wms.ReceivePODetail + '?listitem=' + encodeURIComponent(JSON.stringify(item)),
});
}
//
async query() {
console.log(session);
// if (this.procureCode == '' || this.procureCode.length == 0) {
// (this.$refs.uToast as any).show({
// title: 'rfid',
// type: 'default',
// });
// return;
// }
this.aimWl = {} as OptionType;
let query = {
procureCode: this.procureCode,
materialCode: this.aimWl.value ? this.aimWl.value : '',
userDefined8: '1',
//this.materialCode,
factoryCode: session.FactoryCode,
};
await this.model.PurchaseOrderPda(query);
let materilist = model.orderNoItemList;
this.materilist = materilist.map((item) => {
let newmaterialCode = item.materialCode.slice(item.materialCode.search(/[1-9]/));
return {
...item,
handlematerialCode: newmaterialCode,
};
});
this.list = [];
if (this.materilist.length) {
this.aimWl = this.materilist[0];
this.list.push(this.materilist[0]);
this.procureCode = this.list[0].procureCode;
} else {
this.aimWl = {} as OptionType;
}
//this.ProcureOrderAlready();
//this.list = model.orderNoItemList;
}
// async querydelivery() {
// console.log(session);
// if (this.userDefined5 == '' || this.userDefined5.length == 0) {
// (this.$refs.uToast as any).show({
// title: '',
// type: 'default',
// });
// return;
// }
// this.aimWl = {} as OptionType;
// let query = {
// userDefined5: this.userDefined5,
// procureCode: this.procureCode,
// materialCode: this.aimWl.value ? this.aimWl.value : '',
// //this.materialCode,
// factoryCode: session.FactoryCode,
// };
// await this.model.PurchaseOrderPda(query);
// let materilist = model.orderNoItemList;
// this.materilist = materilist.map((item) => {
// let newmaterialCode = item.materialCode.slice(item.materialCode.search(/[1-9]/));
// return {
// ...item,
// handlematerialCode: newmaterialCode,
// };
// });
// this.list = [];
// if (this.materilist.length) {
// this.aimWl = this.materilist[0];
// this.list.push(this.materilist[0]);
// } else {
// this.aimWl = {} as OptionType;
// }
// this.ProcureOrderAlready();
// //this.list = model.orderNoItemList;
// }
//
async tidan() {
if (this.procureCode == '' || this.procureCode.length == 0) {
(this.$refs.uToast as any).show({
title: '请输入rfid',
type: 'default',
});
return;
}
let item = {
procureCode: this.procureCode,
factoryCode: session.FactoryCode,
createBy: session.loginName,
};
await this.model.sapPurchaseOrderSync(item);
if (model.sapPurchasecode == '200') {
this.query();
}
}
//
async ProcureOrderAlready() {
let item = {
procureCode: this.procureCode,
factoryCode: session.FactoryCode,
};
await this.model.selectOdsProcureOrderAlready(item);
if (model.Alreadycode == '200') {
let alreadyList = model.ProcureOrderAlreadylist;
this.receivedlist = alreadyList.map((item) => {
let newmsrmMater = item.materialCode.slice(item.materialCode.search(/[1-9]/));
return {
...item,
handlematerialCode: newmsrmMater,
};
});
//this.receivedlist = model.ProcureOrderAlreadylist;
}
}
histroyItem: any = {};
barcode: any = '';
async selectProductlocCode(e: any) {
console.log(e.pickerName.warehouseName);
this.productCodeTypeList = e.pickerName;
let params = {
factoryCode: session.FactoryCode,
whCode: this.productCodeTypeList.value,
};
await this.model.WarehouseList(params);
let whlist = model.wacodelist;
if (whlist.length) {
this.waCodeList = whlist;
this.waCodeTypeList = this.waCodeList[0];
} else {
this.waCodeList = [];
this.waCodeTypeList = {} as OptionType;
}
}
selectProductwaCode(e: any) {
this.waCodeTypeList = e.pickerName;
}
//
async onSubmit() {
if (this.procureCode == '' || this.procureCode.length == 0) {
(this.$refs.uToast as any).show({
title: '请输入采购单号',
type: 'default',
});
return;
}
if (this.receiptNoCode == '' || this.receiptNoCode.length == 0) {
(this.$refs.uToast as any).show({
title: '请先生成收货单号',
type: 'default',
});
return;
}
let params = {
factoryCode: session.FactoryCode,
procureCode: this.procureCode,
receiptNoCode: this.receiptNoCode,
id: this.list[0].id,
createBy: session.loginName,
};
await this.model.OnSubmit(params);
if (this.model.submitcode == '200') {
(this.$refs.uToast as any).show({
title: '成功',
type: 'success',
});
await this.query();
this.receiptNoCode = '';
}
}
bookTypeChange(e: any) {
this.aimWl = e.pickerName;
this.list = [];
this.list.push(e.pickerName);
this.procureCode = this.list[0].procureCode;
//
//this.queryinformation();
//this.getlist();
}
bookTypeChangeway(e) {
//this.showshow = true;
this.bimWl.value = e.pickerName.value;
console.log(e);
// if (e.pickerName.value == '0') {
// this.selectway = false;
// } else {
// this.selectway = true;
// }
}
//
async SignIn() {
let params = {
factoryCode: session.FactoryCode,
id: this.list[0].id,
};
await this.model.selectArrivalRegistration(params);
if (this.model.singcode == 200) {
this.singshow = true;
this.operationNumber = model.singobj.operationNumber;
this.nooperationNumber = model.singobj.planNumber - model.singobj.operationNumber;
}
}
//
async onOksing() {
if (this.procureCode == '' || this.procureCode.length == 0) {
(this.$refs.uToast as any).show({
title: '请输入采购单号',
type: 'default',
});
return;
}
if (parseFloat(this.czNumber) == 0 || this.czNumber == '') {
(this.$refs.uToast as any).show({
title: '填写登记数量且不能为0',
type: 'default',
duration: 4000,
});
return;
}
let params = {
factoryCode: session.FactoryCode,
procureCode: this.procureCode,
id: this.list[0].id,
czNumber: this.czNumber,
lastUpdateBy: session.loginName,
};
//console.log('99999',params);
await this.model.ArrivalRegistration(params);
if (this.model.Arrivalcode == 200) {
(this.$refs.uToast as any).show({
title: model.Arrivalmsg,
duration: 4000,
});
this.nopoupsing();
}
}
}
</script>
<style lang="scss" scoped>
.page-product-receipt {
background: #f2f2f2 linear-gradient(0deg, #f2f2f2 0%, #f8262c 51%, #d9001b 100%) no-repeat;
background-size: 100% 600rpx;
padding: 118rpx 30rpx 162rpx;
min-height: 100%;
.header {
position: fixed;
top: 0rpx;
left: 0;
right: 0;
z-index: 99;
display: flex;
height: 120rpx;
line-height: 88rpx;
color: #fff;
font-size: 34rpx;
font-weight: 500;
text-align: center;
padding: 45rpx 0rpx 0rpx;
.title {
flex: 3;
}
.left,
.right {
flex: 1;
}
.icon {
display: flex;
justify-content: center;
align-items: center;
width: 88rpx;
height: 88rpx;
}
}
.form {
background-color: #fff;
padding: 20rpx;
border-radius: 10rpx;
box-shadow: 0 0 20rpx 0 rgba(128, 128, 128, 0.2);
.u-form-item {
padding: 30rpx 0;
line-height: 35rpx;
.Transfer {
width: 280rpx;
height: 64rpx;
background: rgb(242, 242, 242);
border-radius: 110rpx;
}
}
.single {
width: 100%;
height: 100rpx;
display: flex;
.single-left {
width: 80%;
height: 100%;
display: flex;
view {
width: 142rpx;
height: 100%;
line-height: 100rpx;
}
}
.single-right {
button {
margin-top: 15rpx;
width: 140rpx;
height: 70rpx;
background-color: #fa3534;
}
}
}
.row {
display: flex;
flex-direction: row;
justify-content: space-around;
flex: 1;
}
.creatshow {
display: flex;
margin-top: 5px;
.buttonshow {
flex: 1;
}
.inputshow {
flex: 4;
//border: 1px solid #9f9a9a8f;
border-radius: 5px;
margin-left: 4px;
}
}
}
.matshow {
// margin-top: 120rpx;
// padding-left: 30rpx;
// padding-right: 16rpx;
// margin-bottom: 20rpx;
// overflow: scroll;
// padding-top: 20rpx;
.form2 {
background-color: #fff;
padding: 0rpx 25rpx 25rpx;
border-radius: 10rpx;
box-shadow: 0 0 20rpx 0 rgba(128, 128, 128, 0.2);
color: #292c32;
.row-list {
display: flex;
flex-direction: row;
justify-content: space-between;
}
.righttitle {
display: flex;
justify-content: flex-end;
.boder-icon-rigth {
border: 1rpx solid #fa3534;
width: 130rpx;
text-align: center;
background: #fa3534;
color: #ffffff;
margin-top: 10px;
}
.zhuangtai {
background: #a7a0a04a;
width: 224rpx;
margin-right: -25rpx;
border: 2rpx solid #a7a0a04a;
border-radius: 12rpx;
text-align: center;
margin-bottom: 10rpx;
}
.zhuangtai[data-state='1'] {
color: green;
}
.zhuangtai[data-state='0'] {
color: blue;
}
}
}
}
.scroll {
height: 590rpx;
overflow: scroll;
// padding-top: 20rpx;
.form2 {
background-color: #fff;
padding: 0rpx 25rpx 25rpx;
border-radius: 10rpx;
box-shadow: 0 0 20rpx 0 rgba(128, 128, 128, 0.2);
color: #8d8989;
.row-list {
display: flex;
flex-direction: row;
justify-content: space-between;
}
.righttitle {
display: flex;
justify-content: flex-end;
.boder-icon-rigth {
border: 1rpx solid #fa3534;
width: 130rpx;
text-align: center;
background: #fa3534;
color: #ffffff;
margin-top: 10px;
}
.zhuangtai {
background: #a7a0a04a;
width: 224rpx;
margin-right: -25rpx;
border: 2rpx solid #a7a0a04a;
border-radius: 12rpx;
text-align: center;
margin-bottom: 10rpx;
}
.zhuangtai[data-state='1'] {
color: green;
}
.zhuangtai[data-state='0'] {
color: blue;
}
}
}
}
.bottom-bar {
position: fixed;
bottom: 0;
left: 0;
right: 0;
z-index: 99;
background: #ffffff;
box-shadow: 0 1rpx 20rpx 0 rgba(128, 128, 128, 0.2);
padding: 20rpx;
}
.button-bar {
}
.photoList {
display: flex;
padding-top: 12rpx;
.chooseBtn {
width: 202rpx;
height: 202rpx;
background: #fafafa;
border-radius: 12rpx;
border: 2rpx dashed #e2e2e2;
display: flex;
justify-content: center;
align-items: center;
.inner {
text-align: center;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.desc {
font-size: 28rpx;
font-weight: 400;
color: #24252a;
line-height: 40rpx;
}
.img {
width: 50rpx;
height: 50rpx;
margin-bottom: 6rpx;
}
}
.photoBox {
width: 202rpx;
height: 202rpx;
background: #fafafa;
border-radius: 12rpx;
position: relative;
.closeBtn {
position: absolute;
top: -12rpx;
right: -12rpx;
z-index: 2;
width: 36rpx;
height: 36rpx;
.img {
width: 36rpx;
height: 36rpx;
}
}
.img {
width: 202rpx;
height: 202rpx;
border-radius: 12rpx;
}
}
.itemBox {
flex: 0 0 202rpx;
margin-right: 20rpx;
&:last-child {
margin-right: 0;
}
}
// /deep/ .remarksBox textarea {
// font-size: 24rpx;
// }
}
.form3 {
padding: 20rpx;
//border-radius: 10rpx;
//box-shadow: 0 0 20rpx 0 rgba(128, 128, 128, 0.2);
.poupitem {
display: flex;
flex-direction: row;
justify-content: space-around;
margin: 20rpx;
.pouptitle {
min-width: 30%;
white-space: nowrap;
}
.poupcontent {
border: 1px solid rgba(128, 128, 128, 0.2);
}
}
}
.form4 {
padding: 20rpx;
//border-radius: 10rpx;
//box-shadow: 0 0 20rpx 0 rgba(128, 128, 128, 0.2);
.poupitem {
display: flex;
flex-direction: row;
justify-content: space-around;
margin: 20rpx;
.pouptitle {
width: 40%;
white-space: nowrap;
}
.poupcontent {
border: 1px solid rgba(128, 128, 128, 0.2);
}
}
}
.poupbutton {
display: flex;
justify-content: space-around;
}
.mask {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5); /* 半透明的黑色背景 */
z-index: 9999; /* 确保遮罩层在最上层 */
}
}
</style>

@ -0,0 +1,129 @@
import { getModule, Module, MutationAction, VuexModule } from 'vuex-module-decorators';
import store from '@/store';
import http from '@/utils/request';
import { url } from '@/utils/url';
import { session } from '@/store/modules/session';
@Module({
namespaced: true,
dynamic: true,
store,
name: 'page.raw.ArrivalRegistrationPO',
})
export class ArrivalRegistrationPO extends VuexModule {
WlList = [];
orderNoItemList: any = [];
orderNoItemListdes: any = [];
@MutationAction
async PurchaseOrderPda(data: any) {
const result: any = await http.post(url.lanjuwms.raw.ReceivePO.PurchaseOrderPda, data);
let orderNoItemList: any = [];
if (result.data.length) {
orderNoItemList = result.data.map((item: any) => ({
label: item.materialDesc,
value: item.materialCode,
...item,
}));
} else {
orderNoItemList = [];
}
return { orderNoItemList };
}
Alreadycode: any = '';
ProcureOrderAlreadylist: any = '';
@MutationAction
async selectOdsProcureOrderAlready(data: any) {
const result: any = await http.post(url.lanjuwms.raw.ReceivePO.selectOdsProcureOrderAlready, data);
const Alreadycode = result.code;
const ProcureOrderAlreadylist = result.data;
return { Alreadycode, ProcureOrderAlreadylist };
}
sapPurchasecode: any = '';
@MutationAction
async sapPurchaseOrderSync(data: any) {
const result: any = await http.post(url.lanjuwms.raw.ReceivePO.sapPurchaseOrderSync, data);
const sapPurchasecode = result.code;
return { sapPurchasecode };
}
deliverycode: any = '';
@MutationAction
async getDeliveryNoteDetail(data: any) {
const result: any = await http.post(url.lanjuwms.raw.ReceivePO.getDeliveryNoteDetail, data);
const deliverycode = result.code;
return { deliverycode };
}
SubmitCode: any = '';
@MutationAction
async PurchaseOrderdeliPda(data: any) {
const result: any = await http.post(url.lanjuwms.raw.ReceivePO.PurchaseOrderdeliPda, data);
const SubmitCode: [] = result;
return { SubmitCode };
}
@MutationAction
async PurchaseOrderdetailPda(data: any) {
const result: any = await http.post(url.lanjuwms.raw.ReceivePO.PurchaseOrderdetailPda, data);
const orderNoItemListdes = result.data;
return { orderNoItemListdes };
}
DictTypeList: any = [];
@MutationAction
async Stashlist() {
const result: any = await http.post(url.lanjuwms.raw.ReceivePO.list, {
factoryCode: session.FactoryCode,
});
const DictTypeListoild: [] = result.data;
const DictTypeList = DictTypeListoild.map((item: any) => ({
label: item.warehouseName,
value: item.warehouseCode,
...item,
}));
return { DictTypeList };
}
wacodelist: any = [];
@MutationAction
async WarehouseList(data: any) {
const result: any = await http.post(url.lanjuwms.raw.ReceivePO.WarehouseList, data);
const oldwacode = result.data;
let wacodelist = oldwacode.map((item: any) => ({
label: item.areaDesc,
value: item.areaCode,
...item,
}));
if (!wacodelist.length) {
wacodelist = [];
}
return { wacodelist };
}
submitcode: any = '';
@MutationAction
async OnSubmit(data: any) {
const result: any = await http.post(url.lanjuwms.raw.ReceivePO.PurchaseOrderdeliPdaConfirm, data);
const submitcode = result.code;
return {
submitcode,
};
}
Arrivalcode: any = '';
Arrivalmsg: any = '';
@MutationAction
async ArrivalRegistration(data: any) {
const result: any = await http.post(url.lanjuwms.raw.ReceivePO.ArrivalRegistration, data);
const Arrivalcode = result.code;
const Arrivalmsg = result.msg;
return {
Arrivalcode,
Arrivalmsg,
};
}
singcode: any = '';
singobj: any = {};
@MutationAction
async selectArrivalRegistration(data: any) {
const result: any = await http.post(url.lanjuwms.raw.ReceivePO.selectArrivalRegistration, data);
const singcode = result.code;
const singobj = result.data;
return { singcode, singobj };
}
}
export default getModule(ArrivalRegistrationPO);

@ -23,6 +23,17 @@
<!-- <u-input :border="true" v-model="materialCode" placeholder="" @confirm="query" style="overflow: hidden" /> -->
<jPicker sureColor="#ff0000" :showCode="true" @bindpicker="bookTypeChange" duoyukey="procureCode" showKey="label" valKey="value" :val="aimWl.value" :options="materilist" />
</u-form-item>
<u-form-item label="库区">
<u-search placeholder="请扫描" v-model="areaCode" @search="queryloc" :show-action="false"></u-search>
<!-- <jPicker sureColor="#ff0000" :moren="moren" @bindpicker="selectProductlocCode" showKey="label" valKey="value" :val="productCodeTypeList.value" :options="whList" /> -->
</u-form-item>
<u-form-item label="仓库">
{{ waCodeList && waCodeList.warehouseName }}
<!-- <jPicker sureColor="#ff0000" :moren="moren1" @bindpicker="selectProductwaCode" showKey="label" valKey="value" :val="waCodeTypeList.value" :options="waCodeList" /> -->
</u-form-item>
<u-form-item label="标志卡">
<u-search placeholder="请扫描" v-model="Idcard" @search="querybyidcard" :show-action="false"></u-search>
</u-form-item>
<view class="creatshow">
<u-button class="buttonshow" type="primary" @click="generate"></u-button>
<u-input border placeholder="" class="inputshow" disabled v-model="receiptNoCode" />
@ -30,7 +41,7 @@
</u-form>
<view class="matshow">
<view v-for="item in list" :key="item.id" @dblclick="onFormDoubleClick(item)">
<u-form style="margin-top: 10rpx" class="form2">
<u-form :style="{ marginTop: '10rpx', backgroundColor: item.planNumber <= item.realityNumber ? '#4eea9b59' : '#ffffff' }" class="form2">
<view class="list">
<view class="righttitle">
<!-- 0是未收货1是正在收货2是收货完成 -->
@ -60,46 +71,50 @@
<view class="list-item"> 应收/已收: </view>
<view>{{ item.planNumber }}/{{ item.realityNumber }}</view>
</view>
<view a:if="true" class="righttitle">
<view @click.stop="onPass(item)" class="boder-icon-rigth"> 收货 </view>
</view>
</view>
</u-form>
</view>
</view>
<view class="scroll">
<view v-for="item in receivedlist" :key="item.id" @dblclick="onFormDoubleClick(item)">
<u-form style="margin-top: 10rpx" class="form2">
<view class="list">
<view class="righttitle">
<!-- 0是未收货1是正在收货2是收货完成 -->
<view class="boder-icon-top zhuangtai" data-state="0">已收货</view>
</view>
<view class="row-list">
<view class="list-item"> 采购单号: </view>
<view> {{ item.procureCode }} </view>
</view>
<view class="row-list">
<view class="list-item"> 行项目: </view>
<view> {{ item.userDefined3 }} </view>
</view>
<view class="row-list">
<view class="list-item"> 物料编码: </view>
<view> {{ item.handlematerialCode }}</view>
</view>
<view class="row-list">
<view class="list-item"> 物料描述: </view>
<view>{{ item.materialDesc }}</view>
</view>
<view class="row-list">
<view class="list-item"> 工厂号: </view>
<view>{{ item.siteCode }}</view>
</view>
<view class="row-list">
<view class="list-item"> 应收/已收: </view>
<view>{{ item.planNumber }}/{{ item.realityNumber }}</view>
</view>
<!-- <view a:if="true" class="righttitle">
<view @click.stop="onPass(item)" class="boder-icon-rigth"> 收货 </view>
</view> -->
</view>
</u-form>
</view>
</view>
<view class="scroll">
<view v-for="item in receivedlist" :key="item.id">
<u-form style="margin-top: 10rpx" class="form2">
<view class="list">
<view class="righttitle">
<!-- 0是未收货1是正在收货2是收货完成 -->
<view class="boder-icon-top zhuangtai" data-state="0">{{ item.userDefined10 == '0' ? '未收货' : '已收货' }}</view>
</view>
<view class="row-list">
<view class="list-item"> 采购单号: </view>
<view> {{ item.procureCode }} </view>
</view>
<view class="row-list">
<view class="list-item"> 行项目: </view>
<view> {{ item.userDefined3 }} </view>
</view>
<view class="row-list">
<view class="list-item"> 物料编码: </view>
<view> {{ item.handlematerialCode }}</view>
</view>
<view class="row-list">
<view class="list-item"> 物料描述: </view>
<view>{{ item.materialDesc }}</view>
</view>
<view class="row-list">
<view class="list-item"> 工厂号: </view>
<view>{{ item.siteCode }}</view>
</view>
<view class="row-list">
<view class="list-item"> 托盘: </view>
<view>{{ item.sn }}</view>
</view>
<view class="row-list">
<view class="list-item"> 实际收货: </view>
<u-input border placeholder="" @blur="confirmNumber" v-model="item.planNumber" />
</view>
<!-- <view a:if="true" class="righttitle">
<view @click.stop="onPass(item)" class="boder-icon-rigth"> 收货 </view>
</view> -->
@ -109,92 +124,18 @@
</view>
<view class="bottom-bar">
<u-row class="button-bar">
<u-col :span="6">
<u-button type="error" @click="SignIn"></u-button>
</u-col>
<!-- 确定 -->
<u-col :span="6">
<u-button @click="onSubmit" type="primary">确认收货</u-button>
</u-col>
<!-- 返回 -->
<u-col :span="6">
<u-button type="error" @click="uni.navigateBack()"></u-button>
</u-col>
</u-row>
</view>
<view>
<u-popup v-model="show" mode="center" width="580rpx" height="650rpx">
<view class="form3">
<view class="poupitem">
<view class="pouptitle">标识码</view>
<u-search placeholder="请扫描" v-model="form3.userDefined6" :show-action="false"></u-search>
<!-- <u-input class="poupcontent" :clearable="false" v-model="form3.incomeBatchNo" placeholder="" style="overflow: hidden" /> -->
</view>
<view class="poupitem">
<view class="pouptitle">数量</view>
<u-input class="poupcontent" :clearable="false" v-model="form3.planNumber" placeholder="" style="overflow: hidden" />
</view>
<view class="poupitem">
<view class="pouptitle">收货方式</view>
<jPicker sureColor="#ff0000" @bindpicker="bookTypeChangeway" showKey="lable" valKey="value" :val="bimWl.value" :options="waylist" />
<!-- <u-select mode="single-column" :list="waylist" @confirm="bookTypeChangeway"></u-select> -->
</view>
<view v-show="showshow">
<view v-show="!selectway" class="poupitem">
<view class="pouptitle">物料号</view>
<u-input disabled class="poupcontent" :clearable="false" v-model="aimWl.value" placeholder="" style="overflow: hidden" />
</view>
<view v-show="selectway" class="poupitem">
<view class="pouptitle">托盘号</view>
<u-input class="poupcontent" :clearable="false" v-model="form3.sn" placeholder="" style="overflow: hidden" />
</view>
</view>
<view class="poupitem">
<view class="pouptitle">收货仓库</view>
<jPicker sureColor="#ff0000" :moren="moren" @bindpicker="selectProductlocCode" showKey="label" valKey="value" :val="productCodeTypeList.value" :options="whList" />
</view>
<view class="poupitem">
<view class="pouptitle">库区</view>
<jPicker sureColor="#ff0000" :moren="moren1" @bindpicker="selectProductwaCode" showKey="label" valKey="value" :val="waCodeTypeList.value" :options="waCodeList" />
</view>
</view>
<view class="poupbutton" style="margin-top: 10px">
<div>
<u-button style="width: 100px; height: 35px" @click="onOk" size="mini" type="primary">确定</u-button>
</div>
<div>
<u-button style="width: 100px; height: 35px" size="mini" type="error" @click="nopoup"></u-button>
</div>
</view>
</u-popup>
<view v-if="show" class="mask"></view>
</view>
<u-toast ref="uToast" />
<view>
<u-popup v-model="singshow" mode="center" width="580rpx" height="500rpx">
<view class="form4">
<view class="poupitem">
<view class="pouptitle">已登记数量</view>
<u-input disabled class="poupcontent" :clearable="false" v-model="operationNumber" placeholder="" style="overflow: hidden; background-color: #ddd" />
</view>
<view class="poupitem">
<view class="pouptitle">未登记数量</view>
<u-input disabled class="poupcontent" :clearable="false" v-model="nooperationNumber" placeholder="" style="overflow: hidden; background-color: #ddd" />
</view>
<view class="poupitem">
<view class="pouptitle">登记数量</view>
<u-input class="poupcontent" :clearable="false" v-model="czNumber" placeholder="" style="overflow: hidden" />
</view>
<view class="poupbutton" style="margin-top: 10px">
<div>
<u-button style="width: 100px; height: 35px" @click="onOksing" size="mini" type="primary">确定</u-button>
</div>
<div>
<u-button style="width: 100px; height: 35px" size="mini" type="error" @click="nopoupsing"></u-button>
</div>
</view>
</view>
</u-popup>
<view v-if="singshow" class="mask"></view>
</view>
</view>
</template>
<script lang="ts">
@ -217,38 +158,15 @@ export default class receivePO extends BasePage {
model = model;
list: any = [];
receivedlist: any = [];
realityaddNumber = 0;
operationNumber = 0;
nooperationNumber = 0;
czNumber = '';
// receivedlist=[{
// orderStatus:'1',
// procureCode:'111',
// materialCode:'ddewcc',
// materialDesc:'ewdcxw',
// siteCode:'1061',
// planNumber:'1',
// realityNumber:'1'
// },{
// orderStatus:'1',
// procureCode:'111',
// materialCode:'ddewcc',
// materialDesc:'ewdcxw',
// siteCode:'1061',
// planNumber:'1',
// realityNumber:'1'
// },
// {
// orderStatus:'1',
// procureCode:'111',
// materialCode:'ddewcc',
// materialDesc:'ewdcxw',
// siteCode:'1061',
// planNumber:'1',
// realityNumber:'1'
// }
// ]
areaCode = '';
Idcard = '';
waCodeList: any = {};
whList: any = [];
waCodeList: any = [];
//waCodeList: any = [];
show = false;
singshow = false;
form3: any = {};
@ -300,8 +218,8 @@ export default class receivePO extends BasePage {
productCodeList: any = {};
receiptNoCode = '';
async onReady() {
await this.model.Stashlist();
this.whList = model.DictTypeList;
//await this.model.Stashlist();
//this.whList = model.DictTypeList;
//this.remove = this.model.WlList[0];
}
//
@ -309,18 +227,49 @@ export default class receivePO extends BasePage {
const today = dayjs().format('YYYYMMDDHHmmss');
this.receiptNoCode = `sn${today}`;
}
//
onPass(item) {
this.clickitem = item;
this.show = true;
this.form3 = {};
this.productCodeTypeList = {};
this.waCodeTypeList = {};
this.waCodeList = [];
this.showshow = true;
this.bimWl = this.waylist[0];
this.selectway = true;
async queryloc() {
let params = {
factoryCode: session.FactoryCode,
areaCode: this.areaCode,
};
await this.model.getworkloc(params);
this.waCodeList = model.workloclist;
}
//
async querybyidcard() {
let item = {
factoryCode: session.FactoryCode,
userDefined1: this.Idcard,
};
await this.model.getByidcard(item);
if (model.getidcardcode == '200') {
let alreadyList = model.byidcardobj;
alreadyList.handlematerialCode = alreadyList.materialCode.slice(alreadyList.materialCode.search(/[1-9]/));
this.receivedlist.push(alreadyList);
this.confirmNumber();
this.Idcard = '';
}
}
confirmNumber() {
let addNumber = 0;
this.receivedlist.forEach((item) => {
addNumber += parseFloat(item.planNumber ? item.planNumber : '0');
});
this.list[0].realityNumber = this.realityaddNumber + addNumber;
}
//
// onPass(item) {
// this.clickitem = item;
// this.show = true;
// this.form3 = {};
// this.productCodeTypeList = {};
// this.waCodeTypeList = {};
// this.waCodeList = [];
// this.showshow = true;
// this.bimWl = this.waylist[0];
// this.selectway = true;
// }
nopoup() {
this.show = false;
this.form3 = {};
@ -333,83 +282,83 @@ export default class receivePO extends BasePage {
this.czNumber = '';
}
//
async onOk() {
console.log(this.form3);
// if (this.form3.userDefined6 == '' || this.form3.userDefined6 == undefined) {
// async onOk() {
// console.log(this.form3);
// // if (this.form3.userDefined6 == '' || this.form3.userDefined6 == undefined) {
// // (this.$refs.uToast as any).show({
// // title: '',
// // type: 'default',
// // });
// // return;
// // }
// if (this.form3.planNumber == '' || this.form3.planNumber == undefined) {
// (this.$refs.uToast as any).show({
// title: '',
// title: '',
// type: 'default',
// });
// return;
// }
if (this.form3.planNumber == '' || this.form3.planNumber == undefined) {
(this.$refs.uToast as any).show({
title: '数量不能为空',
type: 'default',
});
return;
}
if (this.form3.sn == '' && this.selectway == true) {
(this.$refs.uToast as any).show({
title: '托盘号不能为空',
type: 'default',
});
return;
}
if (this.productCodeTypeList.value == '' || this.productCodeTypeList.value == undefined) {
(this.$refs.uToast as any).show({
title: '请选择仓库',
type: 'default',
});
return;
}
if (this.waCodeTypeList.value == '' || this.waCodeTypeList.value == undefined) {
(this.$refs.uToast as any).show({
title: '请选择库区',
type: 'default',
});
return;
}
if (this.receiptNoCode == '' || this.receiptNoCode == undefined) {
(this.$refs.uToast as any).show({
title: '请先生成收货单号',
type: 'default',
});
return;
}
console.log('1234567');
let query = this.clickitem;
// query.applyList = this.Sparepartlist;
query.workStatus = this.form3.workStatus;
if (this.selectway == true) {
query.sn = this.form3.sn;
} else {
query.sn = dayjs().format('YYYYMMDDHHmmss');
}
query.planNumber = this.form3.planNumber;
query.whCode = this.productCodeTypeList.warehouseCode;
query.waCode = this.waCodeTypeList.value;
query.factoryCode = session.FactoryCode;
query.userDefined6 = this.form3.userDefined6;
query.receiptNoCode = this.receiptNoCode;
query.poLine = this.clickitem.userDefined3;
await this.model.PurchaseOrderdeliPda(query);
console.log(this.model.SubmitCode);
if (this.model.SubmitCode.code == 200) {
(this.$refs.uToast as any).show({
title: '成功',
type: 'default',
});
this.show = false;
this.query();
// this.ProcureOrderAlready();
} else {
(this.$refs.uToast as any).show({
title: '失败',
type: this.model.SubmitCode.msg,
});
}
}
// if (this.form3.sn == '' && this.selectway == true) {
// (this.$refs.uToast as any).show({
// title: '',
// type: 'default',
// });
// return;
// }
// if (this.productCodeTypeList.value == '' || this.productCodeTypeList.value == undefined) {
// (this.$refs.uToast as any).show({
// title: '',
// type: 'default',
// });
// return;
// }
// if (this.waCodeTypeList.value == '' || this.waCodeTypeList.value == undefined) {
// (this.$refs.uToast as any).show({
// title: '',
// type: 'default',
// });
// return;
// }
// if (this.receiptNoCode == '' || this.receiptNoCode == undefined) {
// (this.$refs.uToast as any).show({
// title: '',
// type: 'default',
// });
// return;
// }
// console.log('1234567');
// let query = this.clickitem;
// // query.applyList = this.Sparepartlist;
// query.workStatus = this.form3.workStatus;
// if (this.selectway == true) {
// query.sn = this.form3.sn;
// } else {
// query.sn = dayjs().format('YYYYMMDDHHmmss');
// }
// query.planNumber = this.form3.planNumber;
// query.whCode = this.productCodeTypeList.warehouseCode;
// query.waCode = this.waCodeTypeList.value;
// query.factoryCode = session.FactoryCode;
// query.userDefined6 = this.form3.userDefined6;
// query.receiptNoCode = this.receiptNoCode;
// query.poLine = this.clickitem.userDefined3;
// await this.model.PurchaseOrderdeliPda(query);
// console.log(this.model.SubmitCode);
// if (this.model.SubmitCode.code == 200) {
// (this.$refs.uToast as any).show({
// title: '',
// type: 'default',
// });
// this.show = false;
// this.query();
// // this.ProcureOrderAlready();
// } else {
// (this.$refs.uToast as any).show({
// title: '',
// type: this.model.SubmitCode.msg,
// });
// }
// }
async onFormDoubleClick(item) {
console.log('双击', item);
//await this.model.OnSubmit(item.id);
@ -455,7 +404,7 @@ export default class receivePO extends BasePage {
} else {
this.aimWl = {} as OptionType;
}
this.ProcureOrderAlready();
//this.ProcureOrderAlready();
//this.list = model.orderNoItemList;
}
// async querydelivery() {
@ -558,7 +507,21 @@ export default class receivePO extends BasePage {
async onSubmit() {
if (this.procureCode == '' || this.procureCode.length == 0) {
(this.$refs.uToast as any).show({
title: '请输入采购单号',
title: '请输入采购单号查询',
type: 'default',
});
return;
}
if (this.areaCode == '') {
(this.$refs.uToast as any).show({
title: '请先扫描或输入库区',
type: 'default',
});
return;
}
if (Object.keys(this.waCodeList).length == 0) {
(this.$refs.uToast as any).show({
title: '没有仓库信息',
type: 'default',
});
return;
@ -570,12 +533,29 @@ export default class receivePO extends BasePage {
});
return;
}
let filteredList = [];
if (this.receivedlist.length == 0) {
(this.$refs.uToast as any).show({
title: '没有扫描标志卡收货',
type: 'default',
});
return;
} else {
filteredList = this.receivedlist.filter((item) => item.userDefined10 !== '1');
filteredList.forEach((item) => {
item.userDefined6 = item.userDefined1;
});
}
let params = {
id: this.list[0].id, //id
factoryCode: session.FactoryCode,
procureCode: this.procureCode,
receiptNoCode: this.receiptNoCode,
id: this.list[0].id,
whCode: this.waCodeList.warehouseCode, //
waCode: this.areaCode, //
receiptNoCode: this.receiptNoCode, //
poLine: this.list[0].userDefined3, //
createBy: session.loginName,
list: filteredList,
};
await this.model.OnSubmit(params);
if (this.model.submitcode == '200') {
@ -585,6 +565,9 @@ export default class receivePO extends BasePage {
});
await this.query();
this.receiptNoCode = '';
this.Idcard = '';
this.areaCode = '';
this.waCodeList = {};
}
}
bookTypeChange(e: any) {
@ -596,64 +579,17 @@ export default class receivePO extends BasePage {
//this.queryinformation();
//this.getlist();
}
bookTypeChangeway(e) {
//this.showshow = true;
this.bimWl.value = e.pickerName.value;
console.log(e);
// if (e.pickerName.value == '0') {
// this.selectway = false;
// } else {
// this.selectway = true;
// bookTypeChangeway(e) {
// //this.showshow = true;
// this.bimWl.value = e.pickerName.value;
// console.log(e);
// // if (e.pickerName.value == '0') {
// // this.selectway = false;
// // } else {
// // this.selectway = true;
// // }
// }
}
//
async SignIn() {
let params = {
factoryCode: session.FactoryCode,
id: this.list[0].id,
};
await this.model.selectArrivalRegistration(params);
if (this.model.singcode == 200) {
this.singshow = true;
this.operationNumber = model.singobj.operationNumber;
this.nooperationNumber = model.singobj.planNumber - model.singobj.operationNumber;
}
}
//
async onOksing() {
if (this.procureCode == '' || this.procureCode.length == 0) {
(this.$refs.uToast as any).show({
title: '请输入采购单号',
type: 'default',
});
return;
}
if (parseFloat(this.czNumber) == 0 || this.czNumber == '') {
(this.$refs.uToast as any).show({
title: '填写登记数量且不能为0',
type: 'default',
duration: 4000,
});
return;
}
let params = {
factoryCode: session.FactoryCode,
procureCode: this.procureCode,
id: this.list[0].id,
czNumber: this.czNumber,
lastUpdateBy: session.loginName,
};
//console.log('99999',params);
await this.model.ArrivalRegistration(params);
if (this.model.Arrivalcode == 200) {
(this.$refs.uToast as any).show({
title: model.Arrivalmsg,
duration: 4000,
});
this.nopoupsing();
}
}
}
</script>
<style lang="scss" scoped>
.page-product-receipt {
@ -702,7 +638,7 @@ export default class receivePO extends BasePage {
box-shadow: 0 0 20rpx 0 rgba(128, 128, 128, 0.2);
.u-form-item {
padding: 30rpx 0;
padding: 10rpx 0;
line-height: 35rpx;
.Transfer {

@ -95,12 +95,15 @@ export class receivePO extends VuexModule {
return { wacodelist };
}
submitcode: any = '';
submitmsg: any = '';
@MutationAction
async OnSubmit(data: any) {
const result: any = await http.post(url.lanjuwms.raw.ReceivePO.PurchaseOrderdeliPdaConfirm, data);
const result: any = await http.post(url.lanjuwms.raw.ReceivePO.addOrderCard, data);
const submitcode = result.code;
const submitmsg = result.msg;
return {
submitcode,
submitmsg,
};
}
Arrivalcode: any = '';
@ -124,6 +127,30 @@ export class receivePO extends VuexModule {
const singobj = result.data;
return { singcode, singobj };
}
//最新仓库查询
workloclist: any = {};
@MutationAction
async getworkloc(data: any) {
const result: any = await http.post(url.lanjuwms.raw.ReceivePO.listTableCK, data);
const workloclist = result.data;
// let workloclist = oldworkloclist.map((item: any) => ({
// label: item.warehouseName,
// value: item.warehouseCode,
// ...item,
// }));
//let wacode = oldwacode[0].areaCode;
return { workloclist };
}
///扫描标志卡
getidcardcode: any = '';
byidcardobj: any = {};
@MutationAction
async getByidcard(data: any) {
const result: any = await http.post(url.lanjuwms.raw.ReceivePO.selectOrderCard, data);
const getidcardcode = result.code;
const byidcardobj = result.data;
return { getidcardcode, byidcardobj };
}
}
export default getModule(receivePO);

@ -483,7 +483,7 @@ export default class receiveSRM extends BasePage {
this.query();
}
}
//
//
async querybyidcard() {
// if(this.receivedlist.length!=0){
// const result = this.receivedlist.every(item => item.userDefined4 == this.prodobj.id);

@ -113,6 +113,9 @@ export const url = {
selectArrivalRegistration: qianzhuione + '/wms/WmsToWCSmission/selectArrivalRegistration',
getDeliveryNoteDetail: qianzhuione + '/wms/WmsToWCSmission/getDeliveryNoteDetail',
WarehouseList: qianzhuione + '/wms/WmsToWCSmission/listTableDataInfo',
addOrderCard: qianzhuione + '/wms/WmsToWCSmission/addOrderCard',
selectOrderCard: qianzhuione + '/wms/WmsToWCSmission/selectOrderCard',
listTableCK: qianzhuione + '/wms/WmsToWCSmission/listTableCK',
},
ReceiveSRM: {
// 手持 --包材采购单采购收货查询

Loading…
Cancel
Save