Commit e6648b2c authored by 何远江's avatar 何远江

装箱功能修改

parent c43b1c9e
......@@ -57,6 +57,8 @@ const install = (Vue, vm) => {
sapLgpla: (params = {}, client = sapClient) => vm.$u.post(config.adminPath + '/sap/bc/erp_ep/search/sch_LGPLA?sap-language=ZH&sap-client=' + client, params),
// 装箱
sapCasePlnr: (params = {}, client = sapClient) => vm.$u.post(config.adminPath + '/sap/bc/erp_ep/pda_case/pda_case_plnr?sap-language=ZH&sap-client=' + client, params),
// 装箱信息查询
sapCaseInfo: (params = {}, client = sapClient) => vm.$u.post(config.adminPath + '/sap/bc/erp_ep/pda_case/pda_case_sch?sap-language=ZH&sap-client=' + client, params),
sapCasePlnr2: (params = {}, client = sapClient) => vm.$u.post(config.adminPath + '/sap/bc/erp_ep/pda_case/pda_case_plnr2?sap-language=ZH&sap-client=' + client, params),
// 待盘点
sapInventory: (params = {}, client = sapClient) => vm.$u.post(config.adminPath + '/sap/bc/erp_ep/search/sch_inventory?sap-language=ZH&sap-client='+ client, params),
......
<template>
<!-- <view class="bottomBtn" :class="{'btnContent': btnArr.length === 1}"> -->
<view class="bottomBtn">
<view v-for="(item, index) in btnArr" :key="index">
<view v-for="(item, index) in btnArr" :key="index" class="btns">
<u-button class="widthBtn" :class="item.style" :type="item.type" @click='handleClick(item)'>
{{item.text}}
</u-button>
......@@ -30,24 +30,29 @@ export default {
</script>
<style scoped>
.bottomBtn {
width: 100%;
position: fixed;
display: flex;
bottom: 0;
left: 0;
z-index: 10;
width: 750rpx;
height: 140rpx;
justify-content: space-around;
align-items: center;
background: #fff;
.u-btn {
width: 300rpx ;
padding: 0 10rpx;
/* .u-btn {
flex: 1;
} */
.btns {
flex: 1;
margin-right: 10rpx;
}
}
.btnContent{
justify-content: space-around;
}
.widthBtn{
/* .widthBtn{
width: 300rpx ;
}
} */
</style>
\ No newline at end of file
......@@ -230,6 +230,8 @@
}
this.$u.toast(res[0].MESSAGE)
this.goBack()
} else {
this.$u.toast('提交盘点数据未返回成功消息!')
}
})
},
......
<template>
<view class="metering">
<!-- <uni-forms :modelValue="form">
<uni-forms-item label="长" name="long">
<uni-easyinput type="text" v-model="form.long" placeholder="请输入姓名" />
</uni-forms-item>
</uni-forms> -->
<u-row gutter="16" class="itemRow">
<view class="btn">
<uni-easyinput
prefixIcon="search"
class="topSearch"
v-model="blpl"
:disabled="isEdit"
placeholder="请扫描箱码"
@change="handleInputNlpla"
></uni-easyinput>
</view>
<u-row gutter="16" class="itemRow" style="margin-top: 10rpx;">
<u-col span="3">
长(cm):
</u-col>
<u-col span="6">
<uni-easyinput v-model="form.long" @input="updateWeight"></uni-easyinput>
<uni-easyinput v-model="form.LONG" @input="updateWeight"></uni-easyinput>
</u-col>
</u-row>
<u-row gutter="16" class="itemRow">
......@@ -18,7 +23,7 @@
宽(cm):
</u-col>
<u-col span="6">
<uni-easyinput v-model="form.wide" @input="updateWeight"></uni-easyinput>
<uni-easyinput v-model="form.WIDE" @input="updateWeight"></uni-easyinput>
</u-col>
</u-row>
<u-row gutter="16" class="itemRow">
......@@ -26,7 +31,7 @@
高(cm):
</u-col>
<u-col span="6">
<uni-easyinput v-model="form.high" @input="updateWeight"></uni-easyinput>
<uni-easyinput v-model="form.HIGH" @input="updateWeight"></uni-easyinput>
</u-col>
</u-row>
<u-row gutter="16" class="itemRow">
......@@ -34,7 +39,7 @@
毛重(kg):
</u-col>
<u-col span="6">
<uni-easyinput v-model="form.brgew"></uni-easyinput>
<uni-easyinput v-model="form.BRGEW"></uni-easyinput>
</u-col>
</u-row>
<u-row gutter="16" class="itemRow">
......@@ -42,7 +47,7 @@
箱重(kg):
</u-col>
<u-col span="6">
<uni-easyinput v-model="form.zxntgew" @input="updateWeight"></uni-easyinput>
<uni-easyinput v-model="form.ZXNTGEW" @input="updateWeight"></uni-easyinput>
</u-col>
</u-row>
<u-row gutter="16" class="itemRow">
......@@ -58,7 +63,7 @@
装箱备注:
</u-col>
<u-col span="8">
<u-input v-model="form.zxtext" type="textarea" :border="true" height="70" ></u-input>
<u-input v-model="form.ZXTEXT" type="textarea" :border="true" height="70" ></u-input>
</u-col>
</u-row>
<u-row gutter="16" class="itemRow">
......@@ -66,7 +71,7 @@
备注:
</u-col>
<u-col span="8">
<u-input v-model="form.ztext" type="textarea" :border="true" height="70" ></u-input>
<u-input v-model="form.ZTEXT" type="textarea" :border="true" height="70" ></u-input>
</u-col>
</u-row>
......@@ -79,7 +84,7 @@ export default {
},
data() {
return {
blpl: '',
};
},
created() {
......@@ -90,14 +95,41 @@ export default {
default: function () {
return {};
}
},
isEdit: {
type: Boolean,
default: false
},
isBL: {
type: Boolean,
default: false
}
},
watch: {
form: {
handler(nv) {
if (this.isBL) {
this.blpl = nv.ZCODE
} else {
this.blpl = nv.PLNR
}
},
deep:true
}
},
computed:{
weight(){
return (this.form.brgew-0) - (this.form.zxntgew-0)
return (this.form.BRGEW-0) - (this.form.ZXNTGEW-0)
}
},
methods: {
handleInputNlpla(e) {
console.log(e, 'handleInputNlpla');
this.$emit('plinput', e)
},
setWeightEdit() {
},
updateWeight(e) {
console.log(e, '----')
const reg = /^\d+\*\d+\*\d+\-\d+(\.\d+)+$/
......@@ -106,11 +138,11 @@ export default {
console.log('扫码11111');
const arr = e.split('*')
setTimeout(() => {
this.form.long = arr[0]
this.form.wide = arr[1]
this.form.LONG = arr[0]
this.form.WIDE = arr[1]
const data = arr[2].split('-')
this.form.high = data[0]
this.form.zxntgew = data[1]
this.form.HIGH = data[0]
this.form.ZXNTGEW = data[1]
}, 500)
}
}
......
const mockData = {
bls: [
{
"ZCODE": "BL24070000041",
"PLNR": "10000820240402000001|10000320004",
"WERKS": "1000",
"KUNNR": "",
"ZZXFS": "BL+PL",
"ZSTATUS": "N",
"ZXSPE": "56*41*32",
"ZXVOLUM": 0.073,
"ZXNTGEW": 1.250,
"NTGEW": 20.750,
"BRGEW": 22.000,
"ZXTEXT": "",
"ZTEXT": "",
"ZIFSHMARK": "Y",
"VBELN": "",
"UNAME": "TS-LIUQI",
"DATUM": "20240709",
"UZEIT": "084744",
"MNAME": "",
"MDATE": "00000000",
"MTIME": "000000",
"AUNAME": "",
"AUDATE": "00000000",
"AUTIME": "000000"
},
{
"ZCODE": "BL24070000041",
"PLNR": "10000820240402000003|10000320003",
"WERKS": "1000",
"KUNNR": "",
"ZZXFS": "BL+PL",
"ZSTATUS": "N",
"ZXSPE": "56*41*32",
"ZXVOLUM": 0.073,
"ZXNTGEW": 1.250,
"NTGEW": 20.750,
"BRGEW": 22.000,
"ZXTEXT": "",
"ZTEXT": "",
"ZIFSHMARK": "Y",
"VBELN": "",
"UNAME": "TS-LIUQI",
"DATUM": "20240709",
"UZEIT": "084744",
"MNAME": "",
"MDATE": "00000000",
"MTIME": "000000",
"AUNAME": "",
"AUDATE": "00000000",
"AUTIME": "000000"
},
{
"ZCODE": "BL24060000034",
"PLNR": "PL16",
"WERKS": "1000",
"KUNNR": "0000600009",
"ZZXFS": "BL+PL",
"ZSTATUS": "N",
"ZXSPE": "10*10*10",
"ZXVOLUM": 0.001,
"ZXNTGEW": 1.000,
"NTGEW": 10.000,
"BRGEW": 11.000,
"ZXTEXT": "123",
"ZTEXT": "321",
"ZIFSHMARK": "Y",
"VBELN": "",
"UNAME": "admin",
"DATUM": "20240621",
"UZEIT": "195225",
"MNAME": "CHENWL",
"MDATE": "20240708",
"MTIME": "174601",
"AUNAME": "",
"AUDATE": "00000000",
"AUTIME": "000000"
},
{
"ZCODE": "BL24060000034",
"PLNR": "PL17",
"WERKS": "1000",
"KUNNR": "0000600009",
"ZZXFS": "BL+PL",
"ZSTATUS": "N",
"ZXSPE": "10*10*10",
"ZXVOLUM": 0.001,
"ZXNTGEW": 1.000,
"NTGEW": 10.000,
"BRGEW": 11.000,
"ZXTEXT": "123",
"ZTEXT": "321",
"ZIFSHMARK": "Y",
"VBELN": "",
"UNAME": "admin",
"DATUM": "20240621",
"UZEIT": "195225",
"MNAME": "CHENWL",
"MDATE": "20240708",
"MTIME": "174601",
"AUNAME": "",
"AUDATE": "00000000",
"AUTIME": "000000"
}
],
pls: [
{
"ZCODE": "BL24070000085",
"PLNR": "PL0006000400001000000455021",
"WERKS": "1000",
"KUNNR": "0000600247",
"ZZXFS": "PL",
"ZSTATUS": "N",
"ZXSPE": "56*41*32",
"ZXVOLUM": 0.073,
"ZXNTGEW": 1.250,
"NTGEW": 48.750,
"BRGEW": 50.000,
"ZXTEXT": "",
"ZTEXT": "",
"ZIFSHMARK": "Y",
"VBELN": "",
"UNAME": "admin",
"DATUM": "20240709",
"UZEIT": "162212",
"MNAME": "TS-LIUQI",
"MDATE": "20240726",
"MTIME": "154440",
"AUNAME": "",
"AUDATE": "00000000",
"AUTIME": "000000"
},
{
"ZCODE": "BL24070000072",
"PLNR": "10000001240424000004|10000000002",
"WERKS": "1000",
"KUNNR": "0000600005",
"ZZXFS": "PL",
"ZSTATUS": "N",
"ZXSPE": "56*41*32",
"ZXVOLUM": 0.073,
"ZXNTGEW": 1.250,
"NTGEW": 20.750,
"BRGEW": 22.000,
"ZXTEXT": "",
"ZTEXT": "",
"ZIFSHMARK": "Y",
"VBELN": "",
"UNAME": "TS-LIUQI",
"DATUM": "20240709",
"UZEIT": "084744",
"MNAME": "",
"MDATE": "00000000",
"MTIME": "000000",
"AUNAME": "",
"AUDATE": "00000000",
"AUTIME": "000000"
},
{
"ZCODE": "BL24070000071",
"PLNR": "10000001240424000004|10000000001",
"WERKS": "1000",
"KUNNR": "0000600005",
"ZZXFS": "PL",
"ZSTATUS": "N",
"ZXSPE": "56*41*32",
"ZXVOLUM": 0.073,
"ZXNTGEW": 1.250,
"NTGEW": 20.750,
"BRGEW": 22.000,
"ZXTEXT": "",
"ZTEXT": "",
"ZIFSHMARK": "Y",
"VBELN": "",
"UNAME": "TS-LIUQI",
"DATUM": "20240709",
"UZEIT": "084744",
"MNAME": "",
"MDATE": "00000000",
"MTIME": "000000",
"AUNAME": "",
"AUDATE": "00000000",
"AUTIME": "000000"
}
]
}
/**
* 模拟查询PL和BL
* @param {*} val
* @param {*} type false:PL, true:BL
*/
export const requestMock = (val, type = false) => {
const datas = mockData[type ? 'bls' : 'pls']
return datas.filter(item => {
if (type) {
return item.ZCODE == val
}
return item.PLNR == val
})
}
\ No newline at end of file
<template>
<view class="lists">
<StickyNavBar :class="{'meteringTab':current !== 0}">
<StickyNavBar :class="{ meteringTab: current !== 0 }">
<NavBar title="装箱"></NavBar>
<view class="selectSheet">
<u-tabs :list="list" :is-scroll="false" :current="current" @change="changeTab"></u-tabs>
<u-tabs
:list="list"
:is-scroll="false"
:current="current"
@change="changeTab"
></u-tabs>
</view>
<view class="" v-if="current === 0">
<view class="btn">
<view class="boxSelect">
<u-picker v-model="show" mode="selector" :default-selector="[0]" range-key="text"
:range="actionSheetList" @confirm="actionSheetCallback"></u-picker>
<u-input v-model="form.ZZXFS" placeholder="请选择装箱方式" type="select" :border="true"
@click="show = true" />
<u-picker
v-model="show"
mode="selector"
:default-selector="[0]"
range-key="text"
:range="actionSheetList"
@confirm="actionSheetCallback"
></u-picker>
<u-input
v-model="form.ZZXFS"
placeholder="请选择装箱方式"
type="select"
:border="true"
@click="show = true"
/>
</view>
<uni-easyinput prefixIcon="search" class="topSearch" v-model="blNum" focus placeholder="请扫描箱码"
@change="handleInputNlpla" :disabled="form.ZZXFS === 'PL'"></uni-easyinput>
<uni-easyinput prefixIcon="search" :disabled="isDisabled" v-model="wxparams" :focus="isFocus"
placeholder="请扫描产品包装条码/外箱码" @input="handleInputPlnr"></uni-easyinput>
<uni-easyinput
prefixIcon="search"
class="topSearch"
v-model="blNum"
focus
placeholder="请扫描箱码"
@change="handleInputNlpla"
:disabled="form.ZZXFS === 'PL'"
></uni-easyinput>
<uni-easyinput
prefixIcon="search"
:disabled="isDisabled"
v-model="wxparams"
:focus="isFocus"
placeholder="请扫描产品包装条码/外箱码"
@input="handleInputPlnr"
></uni-easyinput>
<checkbox-group style="margin-top: 10rpx;" @change="checkedChange">
<checkbox value="r1" :checked="checkedBox" />是否审核
</checkbox-group>
</view>
<view class="total">
<view class="left">明细</view>
......@@ -27,155 +59,307 @@
</view>
</view>
</StickyNavBar>
<relationships v-show="current === 0" :list="goodsList" @deleGonds="deleGonds" />
<metering v-show="current === 1" :form="form" />
<relationships
v-show="current === 0"
:list="goodsList"
:isEdit="isEdit"
@deleGonds="deleGonds"
/>
<metering
v-show="current === 1"
:form="form"
:isBL="isBL"
:isEdit="isEdit"
@plinput="changePLBLForm"
/>
<unpacking v-show="current === 2" />
<BottomBtn :btnArr="btnArr" @getBtnHandle="getBtnHandle" v-if="current !== 2"></BottomBtn>
<BottomBtn
:btnArr="btnArr"
@getBtnHandle="getBtnHandle"
v-if="current !== 2"
></BottomBtn>
</view>
</template>
<script>
import StickyNavBar from '@/components/StickyNavBar/index.vue';
import ContentLoadingMore from '@/components/ContentLoadingMore/index.vue';
import BottomBtn from '@/components/BottomBtn/index.vue';
import relationships from './relationships.vue';
import metering from './metering.vue';
import unpacking from './unpacking.vue';
import {
parseTime
} from "@/utils/ruoyi";
export default {
import StickyNavBar from "@/components/StickyNavBar/index.vue";
import ContentLoadingMore from "@/components/ContentLoadingMore/index.vue";
import BottomBtn from "@/components/BottomBtn/index.vue";
import relationships from "./relationships.vue";
import metering from "./metering.vue";
import unpacking from "./unpacking.vue";
import { parseTime } from "@/utils/ruoyi";
import { requestMock } from "./mock";
export default {
components: {
StickyNavBar,
ContentLoadingMore,
BottomBtn,
relationships,
metering,
unpacking
unpacking,
},
data() {
return {
value: '',
type: 'select',
type: "select",
show: false,
border: true,
list: [{
name: '装箱关联'
},{
name: '计量称重'
},{
name: '解除装箱'
}
// 是否编辑状态
isEdit: false,
isBL: false,
list: [
{
name: "装箱关联",
},
{
name: "计量称重",
},
{
name: "解除装箱",
},
],
current: 0,
status: 'loadmore',
btnArr: [{
style: '',
type: 'warning',
text: '返回',
way: 'goBack'
checkedBox: false,
status: "loadmore",
btnArr: [
{
style: "",
type: "warning",
text: "返回",
way: "goBack",
},
{
style: '',
type: 'primary',
text: '提交',
way: 'goSubmit'
}
style: "",
type: "primary",
text: "重置",
way: "resetState",
},
{
style: "",
type: "primary",
text: "提交",
way: "goSubmit",
},
],
wxparams: '',
blNum: '',
// 扫描的PL
wxparams: "",
// 扫描的BL
blNum: "",
isFocus: false,
isDisabled: false,
orderBoxNum: '',
show: false,
actionSheetList: [{
text: 'BL+PL'
actionSheetList: [
{
text: "BL+PL",
},
{
text: 'PL'
text: "PL",
},
],
form: {
ZZXFS: 'BL+PL',
zxspe: '', //箱规格(cm)
zxvolum: '', //体积(m132)
zxntgew: '', //箱重(kg)
ntgew: '', //净重(kg)
brgew: '', //毛重(kg)
long: '', //长
wide: '', //宽
high: '', //高
updkz: 'I',
datum: '', //扫描日期
uzeit: '', //扫描时间
uname: 'admin', //扫描人
zxtext: '',
ztext: '',
ZZXFS: "BL+PL",
ZXSPE: "", //箱规格(cm)
ZXVOLUM: "", //体积(m132)
ZXNTGEW: "", //箱重(kg)
NTGEW: "", //净重(kg)
BRGEW: "", //毛重(kg)
LONG: "", //长
WIDE: "", //宽
HIGH: "", //高
updkz: "I",
datum: "", //扫描日期
uzeit: "", //扫描时间
uname: "admin", //扫描人
ZXTEXT: "",
ZTEXT: "",
},
goodsList: [],
};
},
// onLoad(option) {
// if(option && option.order){
// this.orderBoxNum = option.order
// }
// },
computed: {},
methods: {
/**
* 重置
*/
resetState() {
this.goodsList = []
this.form = {
ZZXFS: "BL+PL",
ZXSPE: "", //箱规格(cm)
ZXVOLUM: "", //体积(m132)
ZXNTGEW: "", //箱重(kg)
NTGEW: "", //净重(kg)
BRGEW: "", //毛重(kg)
LONG: "", //长
WIDE: "", //宽
HIGH: "", //高
updkz: "I",
datum: "", //扫描日期
uzeit: "", //扫描时间
uname: "admin", //扫描人
ZXTEXT: "",
ZTEXT: "",
}
this.isBL = false;
this.isEdit = false;
},
checkedChange(){
this.checkedBox = !this.checkedBox
},
searchCaseInfo(blpl) {
// 判空
if (!blpl) return;
// 是否BL
const isBL = blpl.startsWith("BL");
this.isBL = isBL;
// 验证是否有重复
if (this.goodsList.find((v) => v.ZCODE == blpl || v.PLNR == blpl)) {
this.$u.toast("请勿重复扫描!");
return this.reset();
}
// 查询是否装箱
const params = {
ZCODE: isBL ? blpl : "",
PLNR: isBL ? "" : blpl,
};
this.$u.api.sapApi.sapCaseInfo(params).then(({ DATA: res }) => {
this.isEdit = !!res.length && isBL;
// 如果已经装箱
if (res.length) {
// 扫描的PL
if (!isBL) {
const [plInfo] = res;
// 如果有规格,需要解析出长宽高
if (/^\d+\*\d+\*\d+$/.test(plInfo.ZXSPE)) {
const [LONG, WIDE, HIGH] = plInfo.ZXSPE.split("*");
plInfo.LONG = LONG;
plInfo.WIDE = WIDE;
plInfo.HIGH = HIGH;
}
this.goodsList.push({ ...plInfo });
} else {
this.goodsList = res.map((v) => {
// 如果有规格,需要解析出长宽高
if (/^\d+\*\d+\*\d+$/.test(v.ZXSPE)) {
const [LONG, WIDE, HIGH] = v.ZXSPE.split("*");
v.LONG = LONG;
v.WIDE = WIDE;
v.HIGH = HIGH;
}
return v;
});
this.form = this.goodsList[0];
}
} else {
if (!isBL) {
console.log("没有装箱的PL");
const plInfo = { PLNR: blpl };
// 获取已经扫描过的最后一个PL信息,如果存在需要他的称重信息
const lastPLInfo = this.goodsList.at(-1);
const weightInfo = {
ZXVOLUM: "",
ZXNTGEW: "",
NTGEW: "",
BRGEW: "",
LONG: "",
WIDE: "",
HIGH: "",
};
if (lastPLInfo) {
weightInfo.ZXVOLUM = lastPLInfo.ZXVOLUM;
weightInfo.ZXNTGEW = lastPLInfo.ZXNTGEW;
weightInfo.NTGEW = lastPLInfo.NTGEW;
weightInfo.BRGEW = lastPLInfo.BRGEW;
weightInfo.LONG = lastPLInfo.LONG;
weightInfo.WIDE = lastPLInfo.WIDE;
weightInfo.HIGH = lastPLInfo.HIGH;
}
this.goodsList.push({ ...plInfo, ...weightInfo });
}
}
console.log(this.goodsList, "goodsList-----");
// 默认设置为扫描的第一项
if (!this.form.PLNR) {
this.form = this.goodsList[0];
}
});
},
goSubmit() {
if (this.goodsList.length === 0) {
this.$u.toast('暂无提交数据');
return
this.$u.toast("暂无提交数据");
return;
}
if (!this.blNum && this.form.ZZXFS === 'BL+PL') {
this.$u.toast('请扫描箱码');
return
if (!this.blNum && this.form.ZZXFS === "BL+PL") {
this.$u.toast("请扫描箱码");
return;
}
if (!this.form.long || !this.form.wide || !this.form.high || !this.form.brgew || !this.form.zxntgew) {
// 是否超过45kg
const NTGEW = this.goodsList.reduce((acc, cur) => acc + +cur.NTGEW, 0);
if (NTGEW > 45) {
uni.showModal({
title: '提示',
content: '还未填写计量称重信息!是否继续提交?',
title: "提示",
content: "净重超过45KG,是否继续提交?",
success: (res) => {
if (res.confirm) {
console.log('用户点击确定');
this.subRequest()
console.log("用户点击确定");
this.subRequest();
} else if (res.cancel) {
console.log('用户点击取消');
}
console.log("用户点击取消");
}
},
});
} else {
this.subRequest()
this.subRequest();
}
// if (
// !this.form.long ||
// !this.form.wide ||
// !this.form.high ||
// !this.form.brgew ||
// !this.form.zxntgew
// ) {
// uni.showModal({
// title: "提示",
// content: "还未填写计量称重信息!是否继续提交?",
// success: (res) => {
// if (res.confirm) {
// console.log("用户点击确定");
// this.subRequest();
// } else if (res.cancel) {
// console.log("用户点击取消");
// }
// },
// });
// } else {
// }
},
// 请求发送
subRequest() {
const arr = []
this.goodsList.forEach(ele => {
const arr = [];
this.goodsList.forEach((ele) => {
arr.push({
plnr: ele,
...ele,
werks: this.vuex_user_factory,
...this.form,
kunnr: "",
zxspe: this.form.long + '*' + this.form.wide + '*' + this.form.high,
zxvolum: (this.form.long * this.form.wide * this.form.high) / 1000000,
ntgew: (this.form.brgew - 0) - (this.form.zxntgew - 0),
zcode: this.form.ZZXFS === 'PL' ? '' : this.blNum,
datum: parseTime(new Date(), '{y}{m}{d}'),
uzeit: parseTime(new Date(), '{h}{i}{s}'),
})
zxspe: ele.LONG + "*" + ele.WIDE + "*" + ele.HIGH,
ntgew: +ele.BRGEW - ele.ZXNTGEW,
zcode: this.form.ZZXFS === "PL" ? "" : this.blNum,
datum: parseTime(new Date(), "{y}{m}{d}"),
uzeit: parseTime(new Date(), "{h}{i}{s}"),
zstatus: this.checkedBox ? 'Y': 'N'
});
this.$u.api.sapApi
.sapCasePlnr(arr)
.then((res) => {
});
this.$u.api.sapApi.sapCasePlnr(arr).then((res) => {
if (!Array.isArray(res)) {
return
return;
}
if (res.every((item) => item.TYPE === 'S')) {
if (res.every((item) => item.TYPE === "S")) {
this.$u.toast(res[0].MESSAGE);
this.resetData()
this.resetData();
}
const foundObject = res.find(item => item.TYPE === 'E');
const foundObject = res.find((item) => item.TYPE === "E");
if (foundObject && foundObject.MESSAGE) {
this.$u.toast(foundObject.MESSAGE);
}
......@@ -185,98 +369,113 @@
resetData() {
this.$nextTick(() => {
this.goodsList = [];
this.form.brgew = ''
this.current = 0
})
this.form.brgew = "";
this.current = 0;
});
},
// 删除
deleGonds(idx) {
this.goodsList.splice(idx, 1);
},
/**
* 扫描BL
* 查询是否已经有装箱,有装箱情况只能做修改称重操作
* @param {*} e
*/
handleInputNlpla(e) {
console.log(`output->e`, e)
this.searchCaseInfo(e);
},
changePLBLForm(blpl) {
console.log("changePLBLForm", "00000");
if (!this.isBL) {
const info = this.goodsList.find((v) => v.PLNR == blpl);
this.form = info;
}
},
reset() {
setTimeout(() => {
this.isFocus = true;
this.isDisabled = false;
this.wxparams = ''
this.wxparams = "";
}, 1000);
},
handleInputPlnr(e) {
this.isFocus = false;
this.isDisabled = true;
if (this.goodsList.some((item) => item === e)) {
this.$u.toast('已经存在当前条码');
this.reset()
return
this.$u.toast("已经存在当前条码");
this.reset();
return;
}
e && this.goodsList.push(e)
this.reset()
this.searchCaseInfo(e);
this.reset();
return;
e && this.goodsList.push(e);
this.reset();
},
// 点击actionSheet回调
actionSheetCallback(index) {
this.form.ZZXFS = this.actionSheetList[index].text;
if (this.form.ZZXFS === 'PL') {
this.blNum = ''
if (this.form.ZZXFS === "PL") {
this.blNum = "";
}
},
// 加载更多
onReachBottom() {
console.log('加载更多inventoryCounting');
console.log("加载更多inventoryCounting");
},
getBtnHandle(row) {
console.log('getBtnHandle', row);
console.log("getBtnHandle", row);
this[row.way]();
},
goBack() {
console.log('返回了');
console.log("返回了");
uni.navigateBack();
},
changeTab(index) {
this.current = index;
}
}
};
},
},
};
</script>
<style lang="scss" scoped>
.selectSheet {
.selectSheet {
border-bottom: 1px solid #ccc;
}
}
/deep/ .u-sticky {
/deep/ .u-sticky {
top: 0 !important;
background: #fff;
}
}
.contentMore {
.contentMore {
margin: 20rpx;
}
}
page {
page {
background: #f8f8f8;
}
}
.headerTitle {
.headerTitle {
padding: 20rpx;
font-weight: 600;
.items {
line-height: 40rpx;
}
}
}
.btn {
.btn {
padding: 20rpx;
background: #fff;
.boxSelect {
margin-bottom: 20rpx;
}
}
}
.total {
.total {
background: #fff;
color: #000;
padding: 0rpx 40rpx;
......@@ -287,17 +486,16 @@
.line {
margin: 0px 10rpx;
}
}
.meteringTab {
}
.meteringTab {
// height: 200rpx;
/deep/.u-sticky-wrap {
height: 170rpx !important;
}
}
}
.topSearch {
.topSearch {
margin-bottom: 20rpx;
}
}
</style>
......@@ -6,14 +6,13 @@
<!-- <scanningList :item='item'/> -->
<view class="listItemTitle">
<view>
<view class="item">PL号:{{ list[index] }}</view>
<view class="item">PL号:{{ item.PLNR }}</view>
<!-- <view class="item">物料编号:{{ item.MATNR }}</view>
<view class="item">物料描述:{{ item.MAKTX }}</view>
<view class="item">数量:{{ item.MAKTX }}</view> -->
</view>
<u-button size="mini" type="primary" plain @click="deleGonds(index)">
<u-button v-if="!isEdit" size="mini" type="primary" plain @click="deleGonds(index)">
<u-icon name="trash" size="28"></u-icon>
删除
</u-button>
</view>
</view>
......@@ -43,6 +42,10 @@ export default {
return [];
}
},
isEdit: {
type: Boolean,
default: false
}
},
data() {
return {
......@@ -102,6 +105,7 @@ export default {
});
},
deleGonds(idx) {
console.log(idx, '--0000----');
this.$emit('deleGonds',idx)
},
// 加载更多
......@@ -157,7 +161,7 @@ export default {
padding: 20rpx;
border-bottom: 2px solid #f8f8f8;
.u-btn {
width: 150rpx;
// width: 150rpx;
margin: 0px;
margin-top: 10rpx;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment