Compare commits
No commits in common. "ff2baf4d264151b14e79da03bd8a57a35b7488b4" and "88f57a962ec9f4cbe56530d3e7b1a280ae8a4f20" have entirely different histories.
ff2baf4d26
...
88f57a962e
@ -1,6 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<view style="margin: 10rpx;">
|
<view style="margin: 10rpx;">
|
||||||
<u-navbar back-text="返回" title="报废出库" :background="background"></u-navbar>
|
<u-navbar back-text="返回" title="无单据出库" :background="background"></u-navbar>
|
||||||
<u-form ref="testForm">
|
<u-form ref="testForm">
|
||||||
<u-form-item :border-bottom="false">
|
<u-form-item :border-bottom="false">
|
||||||
<p>扫描条码:</p>
|
<p>扫描条码:</p>
|
||||||
@ -45,7 +45,7 @@
|
|||||||
<uni-td align="center">{{ item.LOCATIONNAME }}</uni-td>
|
<uni-td align="center">{{ item.LOCATIONNAME }}</uni-td>
|
||||||
</uni-tr>
|
</uni-tr>
|
||||||
</uni-table>
|
</uni-table>
|
||||||
<view class="tabbar_bottom bottom-margin">
|
<view class="tabbar_bottom">
|
||||||
<u-input v-if="false" v-model="opCode" />
|
<u-input v-if="false" v-model="opCode" />
|
||||||
<uni-datetime-picker style="align-items: center;" type="date" :clear-icon="false" v-model="commitDate"
|
<uni-datetime-picker style="align-items: center;" type="date" :clear-icon="false" v-model="commitDate"
|
||||||
@maskClick="maskClick" />
|
@maskClick="maskClick" />
|
||||||
@ -93,7 +93,7 @@
|
|||||||
DURABLENAMECode: "", //卷芯
|
DURABLENAMECode: "", //卷芯
|
||||||
focusBarCode: false, //焦点是否被选中
|
focusBarCode: false, //焦点是否被选中
|
||||||
focusShipRequest: true, //默认焦点在单号
|
focusShipRequest: true, //默认焦点在单号
|
||||||
siteName: "SDK",
|
siteName: "",
|
||||||
userId: "",
|
userId: "",
|
||||||
commitDate: '',
|
commitDate: '',
|
||||||
opCode: '',
|
opCode: '',
|
||||||
@ -157,7 +157,7 @@
|
|||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
this.$MyRequest('/api/NoInvoice/getQTCList', {
|
this.$MyRequest('/NoInvoice/getQTCList', {
|
||||||
MATERIALPACKINGNAME: this.MATERIALPACKINGNAME
|
MATERIALPACKINGNAME: this.MATERIALPACKINGNAME
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
if (res.data.success) {
|
if (res.data.success) {
|
||||||
@ -215,8 +215,7 @@
|
|||||||
opcode: this.opCode,
|
opcode: this.opCode,
|
||||||
user: this.userId
|
user: this.userId
|
||||||
}).then((res) => {
|
}).then((res) => {
|
||||||
this.opCode = res.resultObj
|
this.$MyRequest('/NoInvoice/QTCCommit', {
|
||||||
this.$MyRequest('/api/NoInvoice/QTCCommit', {
|
|
||||||
boxList: this.BoxListInfo,
|
boxList: this.BoxListInfo,
|
||||||
user: this.userId,
|
user: this.userId,
|
||||||
siteName: this.siteName,
|
siteName: this.siteName,
|
||||||
@ -228,7 +227,6 @@
|
|||||||
this.bqts = 0
|
this.bqts = 0
|
||||||
this.bqkcs = 0
|
this.bqkcs = 0
|
||||||
this.resetValue();
|
this.resetValue();
|
||||||
this.opCode = "";
|
|
||||||
} else {
|
} else {
|
||||||
this.loading = false;
|
this.loading = false;
|
||||||
}
|
}
|
||||||
@ -269,9 +267,6 @@
|
|||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
.bottom-margin {
|
|
||||||
margin-bottom: 80rpx;
|
|
||||||
}
|
|
||||||
switch {
|
switch {
|
||||||
color: #FFCC33;
|
color: #FFCC33;
|
||||||
}
|
}
|
||||||
|
@ -36,6 +36,15 @@
|
|||||||
},
|
},
|
||||||
//要展示的数组元素
|
//要展示的数组元素
|
||||||
elements: [
|
elements: [
|
||||||
|
{
|
||||||
|
title: '无单据出库',
|
||||||
|
name: 'OtherStockOutNoInvoice/OtherStockOutNoInvoice',
|
||||||
|
en_name:'OtherStockOutNoInvoice',
|
||||||
|
color: 'cyan',
|
||||||
|
cuIcon: '',
|
||||||
|
label: '无单据出库',
|
||||||
|
id:'200001'
|
||||||
|
},
|
||||||
{
|
{
|
||||||
title: '备货出库',
|
title: '备货出库',
|
||||||
name: 'ShipRequestReservation/index',
|
name: 'ShipRequestReservation/index',
|
||||||
@ -84,15 +93,6 @@
|
|||||||
cuIcon: '',
|
cuIcon: '',
|
||||||
label: '销售出货',
|
label: '销售出货',
|
||||||
id:'200007'
|
id:'200007'
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '报废出库',
|
|
||||||
name: 'OtherStockOutNoInvoice/OtherStockOutNoInvoice',
|
|
||||||
en_name:'OtherStockOutNoInvoice',
|
|
||||||
color: 'cyan',
|
|
||||||
cuIcon: '',
|
|
||||||
label: '报废出库',
|
|
||||||
id:'200001'
|
|
||||||
}
|
}
|
||||||
// {
|
// {
|
||||||
// title: '销售出库确认',
|
// title: '销售出库确认',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user