|
|
|
<template>
|
|
|
|
<view class="">
|
|
|
|
<uni-popup ref="popup" :maskClick="false">
|
|
|
|
<view class="uni-flex uni-column pop_customer">
|
|
|
|
<view class="" style="padding:10rpx">
|
|
|
|
<view class="uni-flex u-col-center uni-row space-between" style="padding: 10rpx 10rpx 20rpx 10rpx">
|
|
|
|
<view class="" style="font-size: 35rpx;">
|
|
|
|
{{title}}
|
|
|
|
</view>
|
|
|
|
<image style="width: 35rpx;height: 35rpx;" src="/static/icons/icons_close.svg"
|
|
|
|
@click="closeRequestPopup()"></image>
|
|
|
|
</view>
|
|
|
|
<u-line />
|
|
|
|
<view class="uni-flex uni-column" style="background-color: white; ">
|
|
|
|
<view class="uni-flex uni-column ">
|
|
|
|
<view class="uni-flex uni-row padding title u-col-center">
|
|
|
|
<text>客户 : </text>
|
|
|
|
<view class="uni-flex u-col-center uni-row" @click="showSelect">
|
|
|
|
<view class="" style="margin-left: 20rpx;">
|
|
|
|
{{customerName}}
|
|
|
|
</view>
|
|
|
|
<u-select v-model="showCustomer" mode="single-column" :list="customerList"
|
|
|
|
@confirm="confirmSelect"></u-select>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<u-line />
|
|
|
|
|
|
|
|
<view class="uni-flex uni-row padding title u-col-center">
|
|
|
|
<text>物料 : </text>
|
|
|
|
<view class="uni-flex u-col-center uni-row">
|
|
|
|
<u-input v-model="itemCode" :focus="itemCodeFocus" :border="true"
|
|
|
|
placeholder="请输入需求物料" @confirm="itemCodeConfirm" />
|
|
|
|
<image src="/static/search.svg" mode=""
|
|
|
|
style=" width: 40rpx;height: 40rpx;margin-left: 10rpx;" @click="itemCodeClick">
|
|
|
|
</image>
|
|
|
|
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<u-line />
|
|
|
|
|
|
|
|
<view class="uni-flex uni-row padding title u-col-center">
|
|
|
|
<text>数量 : </text>
|
|
|
|
<view class="uni-flex uni-row uni-center"
|
|
|
|
style="align-items: center;margin-left: 20rpx;">
|
|
|
|
<uni-number-box :value="counQty" @change="change" style='margin-left: 10rpx;'
|
|
|
|
:focus="numberFocus" @blur='numberFocus = false'>
|
|
|
|
</uni-number-box>
|
|
|
|
<uom :uom="uom"></uom>
|
|
|
|
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<u-line />
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<view class="uni-flex uni-row hide_border">
|
|
|
|
<button class="btn_edit_big_cancle" hover-class="btn_edit_big_after" @click="cancel()">取消</button>
|
|
|
|
<button class="btn_edit_big_confirm" hover-class="btn_edit_big_after" @click="confirm()">确认</button>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</uni-popup>
|
|
|
|
|
|
|
|
<comMessage ref="comMessage"></comMessage>
|
|
|
|
<selectList ref='selectList' @selectedItem="selectedItem"></selectList>
|
|
|
|
</view>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import {
|
|
|
|
getBasicLocationByCode,
|
|
|
|
getBasicItemByCode,
|
|
|
|
getProductionlineItem,
|
|
|
|
getWorkShopLineStation,
|
|
|
|
getBasicCustomerList,
|
|
|
|
} from '@/api/request2.js';
|
|
|
|
import {
|
|
|
|
getLocationTypeName,
|
|
|
|
getListLocationTypeDesc,
|
|
|
|
checkDirectoryItemExist
|
|
|
|
} from '@/common/directory.js';
|
|
|
|
import uom from '@/mycomponents/qty/uom.vue'
|
|
|
|
import balanceStatus from '@/mycomponents/status/balanceStatus.vue'
|
|
|
|
import comMessage from '@/mycomponents/common/comMessage.vue'
|
|
|
|
import selectList from '@/mycomponents/popup/selectList.vue'
|
|
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
components: {
|
|
|
|
uom,
|
|
|
|
balanceStatus,
|
|
|
|
comMessage,
|
|
|
|
selectList
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
// itemCode: 'CE115F11161AG',
|
|
|
|
itemCode: '',
|
|
|
|
itemName: "",
|
|
|
|
qty: 0,
|
|
|
|
itemCodeFocus: false,
|
|
|
|
requestInfo: null,
|
|
|
|
itemCodeList: [],
|
|
|
|
isCheckItemCode: false,
|
|
|
|
counQty: 0,
|
|
|
|
editPosition: true,
|
|
|
|
numberFocus: false,
|
|
|
|
uom: "",
|
|
|
|
showCustomer: false,
|
|
|
|
isModifiedPosition: true,
|
|
|
|
customerList: [],
|
|
|
|
customerName: "请选择客户",
|
|
|
|
customerCode:""
|
|
|
|
}
|
|
|
|
},
|
|
|
|
props: {
|
|
|
|
title: {
|
|
|
|
type: String,
|
|
|
|
default: '需求信息'
|
|
|
|
},
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
openRequestPopup(editPosition) {
|
|
|
|
if (this.customerList.length == 0) {
|
|
|
|
getBasicCustomerList().then(res => {
|
|
|
|
if (res.data.length > 0) {
|
|
|
|
var list = res.data;
|
|
|
|
list.forEach(item => {
|
|
|
|
item.label = item.name
|
|
|
|
item.value = item.code
|
|
|
|
})
|
|
|
|
this.customerList = list;
|
|
|
|
}
|
|
|
|
}).catch(error => {
|
|
|
|
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
this.editPosition = editPosition;
|
|
|
|
if (this.isModifiedPosition) {
|
|
|
|
this.isModifiedPosition = false
|
|
|
|
} else {
|
|
|
|
this.itemCode = "";
|
|
|
|
this.uom = ""
|
|
|
|
this.qty = 0
|
|
|
|
this.itemCodeGetFocus();
|
|
|
|
}
|
|
|
|
|
|
|
|
this.$refs.popup.open('bottom')
|
|
|
|
},
|
|
|
|
closeRequestPopup() {
|
|
|
|
this.$refs.popup.close()
|
|
|
|
},
|
|
|
|
locationConfirm() {
|
|
|
|
//查询库位信息
|
|
|
|
this.checkLocatioCode();
|
|
|
|
},
|
|
|
|
itemCodeClick() {
|
|
|
|
if (this.customerName == "请选择客户") {
|
|
|
|
this.showErrorMessage("请选择客户")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
this.$refs.selectList.queryList(this.customerCode)
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
itemCodeGetFocus() {
|
|
|
|
this.itemCodeFocus = true;
|
|
|
|
},
|
|
|
|
itemCodeLoseFocus() {
|
|
|
|
this.itemCodeFocus = false;
|
|
|
|
},
|
|
|
|
selectedItem(item) {
|
|
|
|
this.itemCode = item.itemCode;
|
|
|
|
this.checkItemCode();
|
|
|
|
},
|
|
|
|
|
|
|
|
confirm() {
|
|
|
|
if (this.itemCode == "" || !this.isCheckItemCode) {
|
|
|
|
this.showErrorMessage("请输入物料", "itemCode")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if (this.qty == 0) {
|
|
|
|
this.showErrorMessage("数量必须大于0")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
this.callback('add');
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
confirmSelect(e){
|
|
|
|
this.customerName = e[0].label
|
|
|
|
this.customerCode = e[0].value
|
|
|
|
},
|
|
|
|
|
|
|
|
checkItemCode() {
|
|
|
|
//校验物料
|
|
|
|
getBasicItemByCode(this.itemCode).then(res => {
|
|
|
|
uni.hideLoading();
|
|
|
|
if (res.data != null && res.data.list.length > 0) {
|
|
|
|
this.itemCode = res.data.list[0].code;
|
|
|
|
this.itemName = res.data.list[0].name
|
|
|
|
this.isCheckItemCode = true;
|
|
|
|
this.numberFocus = true
|
|
|
|
this.uom = res.data.list[0].uom
|
|
|
|
} else {
|
|
|
|
this.showErrorMessage('未查找到物料【' + this.itemCode + '】', "itemCode");
|
|
|
|
}
|
|
|
|
|
|
|
|
}).catch(error => {
|
|
|
|
uni.hideLoading();
|
|
|
|
this.showErrorMessage(error, "itemCode");
|
|
|
|
})
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
callback(action) {
|
|
|
|
let item = {
|
|
|
|
customerName :this.customerName,
|
|
|
|
customerCode:this.customerCode,
|
|
|
|
itemCode: this.itemCode,
|
|
|
|
itemName: this.itemName,
|
|
|
|
uom: this.uom,
|
|
|
|
qty: this.qty
|
|
|
|
};
|
|
|
|
this.closeRequestPopup();
|
|
|
|
this.$emit("confirm", action, item);
|
|
|
|
},
|
|
|
|
|
|
|
|
showErrorMessage(message, type) {
|
|
|
|
setTimeout(r => {
|
|
|
|
this.$refs.comMessage.showErrorMessage(message, res => {
|
|
|
|
if (type == "itemCode") {
|
|
|
|
this.itemCodeGetFocus();
|
|
|
|
} else {
|
|
|
|
this.numberFocus = true;
|
|
|
|
}
|
|
|
|
})
|
|
|
|
if (type == "itemCode") {
|
|
|
|
this.itemCode = ""
|
|
|
|
this.isCheckItemCode = false;
|
|
|
|
}
|
|
|
|
})
|
|
|
|
},
|
|
|
|
itemCodeConfirm() {
|
|
|
|
this.checkItemCode();
|
|
|
|
},
|
|
|
|
change(value) {
|
|
|
|
this.qty = value;
|
|
|
|
},
|
|
|
|
cancel(e) {
|
|
|
|
this.closeRequestPopup();
|
|
|
|
},
|
|
|
|
showSelect() {
|
|
|
|
if (this.editPosition) {
|
|
|
|
this.showCustomer = true
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
.title {
|
|
|
|
font-size: 30rpx;
|
|
|
|
}
|
|
|
|
</style>
|