|
|
|
@ -1925,6 +1925,12 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
batchVailCode(params) {
|
|
|
|
|
if (this.$isBlank(this.orderFormData.corpOrderId)) {
|
|
|
|
|
let date = new Date();
|
|
|
|
|
this.orderFormData.corpOrderId =
|
|
|
|
|
parseTime(date, "{y}{m}{d}{h}{i}{s}") +
|
|
|
|
|
Math.ceil(Math.random() * 89 + 10);
|
|
|
|
|
}
|
|
|
|
|
batchVailCode(params).then((response) => {
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
console.log("==滴码接收==", response.data);
|
|
|
|
@ -1939,18 +1945,16 @@ export default {
|
|
|
|
|
this.$refs.inputRef.focus();
|
|
|
|
|
this.$refs.inputRef.select();
|
|
|
|
|
if (this.valiCodes != null && this.valiCodes.length > 0) {
|
|
|
|
|
|
|
|
|
|
if (this.$isBlank(this.orderFormData.corpOrderId)) {
|
|
|
|
|
let date = new Date();
|
|
|
|
|
this.orderFormData.corpOrderId =
|
|
|
|
|
parseTime(date, "{y}{m}{d}{h}{i}{s}") +
|
|
|
|
|
Math.ceil(Math.random() * 89 + 10);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.orderFormData.codeList = this.valiCodes
|
|
|
|
|
if (this.splitType == "out")
|
|
|
|
|
this.orderFormData.inoutType = 1
|
|
|
|
|
else
|
|
|
|
|
this.orderFormData.inoutType = 2
|
|
|
|
|
// this.orderFormData.inoutType = this.splitType;
|
|
|
|
|
batchAddCode(this.orderFormData).then((res) => {
|
|
|
|
|
if (res.code === 20000) {
|
|
|
|
|
this.orderFormData.billNo = res.data.orderId;
|
|
|
|
|
if (res.data.orderId != null)
|
|
|
|
|
this.orderFormData.billNo = res.data.orderId;
|
|
|
|
|
this.refreshCodesPanel(this);
|
|
|
|
|
this.printMutiCodeResult(res.data.vailCodeResultResponses)
|
|
|
|
|
} else {
|
|
|
|
|