You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

210 lines
6.3 KiB
Vue

<template>
<view class="page-kan-dan-index">
<view class="header" :style="{ backgroundColor: `rgba(23, 83, 234, ${scrollTop / 100})` }">
<view class="left">
<u-icon class="icon" name="arrow-left" @click="uni.navigateBack({})" />
</view>
<view class="title">{{ $t('message.RowRelocation') }}</view>
<view class="right"></view>
</view>
<u-form class="form" ref="form" :error-type="['toast']" label-width="150rpx">
<!-- 单号查询 -->
<u-form-item :required="true" :label="$t('message.InventoryOrderNo')" prop="orderNo">
<u-search :placeholder="$t('message.Commission_tips1')" v-model.trim="order3" @search="query" :show-action="false"></u-search>
<view class="single-right">
<u-button type="primary" @click="query">{{ $t('message.Query') }}</u-button>
</view>
</u-form-item>
<!-- 物料号选择 -->
<u-form-item :required="true" :label="$t('message.CommissionedMaterielNo')">
<jPicker sureColor="#ff0000" style="width: 230rpx" @bindpicker="materialConfirm" showKey="value" valKey="value" :val="orderlist.productCode" class="search" :options="model.materielList" />
</u-form-item>
<!-- 物料描述 -->
<u-form-item :label="$t('message.po_MaterielDes')">
<u-input :disabled="true" v-model="orderlist.productDescZh" placeholder="" style="overflow: hidden" />
</u-form-item>
<!-- 出库库位 -->
<u-form-item :label="$t('message.Outbound')">
<u-input :disabled="true" v-model="orderlist.originWl" placeholder="" />
</u-form-item>
<!-- 入库库位 -->
<u-form-item :label="$t('message.Warehousing')">
<u-input :disabled="true" v-model="orderlist.aimWl" placeholder="" />
</u-form-item>
<!-- 总数 -->
<u-form-item :label="$t('message.Warehouse_TotalNumber')">
<u-input :disabled="true" v-model="orderlist.qty" placeholder="" />
</u-form-item>
<!-- 本次数量 -->
<u-form-item :label="$t('message.CommissionedThisNumber')">
<u-input v-model="NEWqty" :placeholder="$t('message.Summary_PleaseInputNumber')" :border="border" type="number" />
</u-form-item>
</u-form>
<view class="bottom-bar">
<u-row class="button-bar">
<!-- 确定 -->
<u-col :span="6">
<u-button type="primary" @click="submit">{{ $t('message.product_Confirm') }}</u-button>
</u-col>
<!-- 返回 -->
<u-col :span="6">
<u-button type="error" @click="uni.navigateBack()">{{ $t('message.po_Return') }}</u-button>
</u-col>
</u-row>
</view>
</view>
</template>
<script lang="ts">
import { Component } from 'vue-property-decorator';
import { BasePage } from '@/components/base/page';
import model from './model';
import { session } from '@/store/modules/session';
import jPicker from '@/components/J-Picker/jPicker.vue';
@Component({
components: {
jPicker,
},
})
export default class KanDanHandOver extends BasePage {
order3 = '';
NEWqty = '';
model = model;
border = true;
materialCodeSelect = false;
orderlist: any = [];
//查询单号
async query() {
if (this.order3 === '') {
this.customToast(this.$t('message.Warehouse_Tip') as string);
return;
} else {
await this.model.takeYKOrder({
order3: this.order3,
});
if (model.code == '1') {
uni.showToast({
//icon: 'success',
title: this.$t('message.successful') as string,
duration: 2000,
image: '/static/icons/icon-51.png',
});
this.orderlist = model.materielList[0];
this.NEWqty = model.materielList[0].qty;
}
}
}
//选择物料回调函数
materialConfirm(v: any) {
this.orderlist.productCode = v.pickerName.productCode;
model.materielList.forEach((item: any) => {
if (this.orderlist.productCode == item.productCode) {
this.orderlist = item;
this.NEWqty = item.qty;
}
});
}
//提交数据
async submit() {
if (this.order3 == '') {
this.customToast(this.$t('message.InventoryPleaseScan') as string);
return;
}
if (this.orderlist.length == 0) {
this.customToast(this.$t('message.Commission_tips6') as string);
return;
}
if (this.NEWqty == '' || parseFloat(this.NEWqty) == 0) {
this.customToast(this.$t('message.PleaseQuantity') as string);
return;
}
if (parseFloat(this.NEWqty) > parseFloat(this.orderlist.qty)) {
this.customToast(this.$t('message.greater') as string);
return;
}
this.orderlist.type = '1';
this.orderlist.keepBy = session.loginName;
this.orderlist.orderType = '0';
this.orderlist.qty = this.NEWqty;
let arr = [];
arr.push(this.orderlist);
await model.onTakeoutConfirm(arr);
if (model.code == '1') {
uni.showToast({
title: this.$t('message.Warehouse_Tip9') as string,
duration: 2000,
image: '/static/icons/icon-51.png',
});
this.orderlist = {};
this.model.materielList.length = 0;
this.NEWqty = '';
this.query();
}
}
}
</script>
<style lang="scss" scoped>
.page-kan-dan-index {
background: #f2f2f2 linear-gradient(0deg, #f2f2f2 0%, #4a78ea 51%, #1753ea 100%) no-repeat;
background-size: 100% 600rpx;
padding: 118rpx 30rpx 162rpx;
min-height: 100%;
.header {
position: fixed;
top: 36rpx;
left: 0;
right: 0;
z-index: 99;
display: flex;
height: 88rpx;
line-height: 88rpx;
color: #fff;
font-size: 34rpx;
font-weight: 500;
text-align: center;
.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: 40rpx;
border-radius: 10rpx;
box-shadow: 0 0 20rpx 0 rgba(128, 128, 128, 0.2);
.u-form-item {
padding: 30rpx 0;
line-height: 35rpx;
}
}
.single-right {
button {
//margin-top: 15rpx;
width: 110rpx;
height: 70rpx;
}
}
.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;
}
}
</style>