| | |
| | | </view> |
| | | <view class="row-list"> |
| | | <view class="_label"> |
| | | <view class="_label-name">取消下发数量:</view> |
| | | <view class="_label-name">取消数量:</view> |
| | | </view> |
| | | <view class="_content"> |
| | | {{ item.suppliedQuantity }} |
| | | {{ item.stockQuantity }} |
| | | </view> |
| | | </view> |
| | | </view> |
| | |
| | | :show-confirm-button="true" |
| | | @confirm="confirm" |
| | | @cancel="cancel" |
| | | |
| | | > |
| | | <view class="popup-content"> |
| | | <view class="packing-registration-param"> |
| | |
| | | </view> |
| | | <view class="packing-registration-param-item param-extra"> |
| | | <view class="packing-registration-param-item-left"> |
| | | <text class="item-one">取消下发数量</text> |
| | | <text class="item-one">取消数量</text> |
| | | </view> |
| | | <view class="packing-registration-param-item-right"> |
| | | <u-input |
| | | class="item-one item-two" |
| | | v-model="modalList.returnQuantity" |
| | | v-model="modalList.stockQuantity" |
| | | /> |
| | | </view> |
| | | </view> |
| | |
| | | this.$refs.uModal.clearLoading(); // 清除加载状态 |
| | | return; |
| | | } |
| | | if (!this.modalList.returnQuantity) { |
| | | this.$u.toast("请输入取消下发数量"); |
| | | if (!this.modalList.stockQuantity) { |
| | | this.$u.toast("请输入取消数量"); |
| | | this.$refs.uModal.clearLoading(); // 清除加载状态 |
| | | return; |
| | | } |
| | |
| | | this.$u.toast("提交成功"); |
| | | this.showModal = false; |
| | | const obj = { |
| | | suppliedQuantity: this.modalList.suppliedQuantity, |
| | | outBatchNo: this.modalList.returnQuantity, |
| | | stockQuantity: this.modalList.stockQuantity, |
| | | outBatchNo: this.modalList.outBatchNo, |
| | | }; |
| | | this.hasScanSnList.push(obj); |
| | | } |
| | |
| | | }, |
| | | // 扫码后数据回显 |
| | | scanHandle(val) { |
| | | const { outBatchNo } = val; |
| | | const { workstationId, operationTaskId } = this.registerInfo; |
| | | const { BN } = val; |
| | | const { id } = this.registerInfo; |
| | | const obj = { |
| | | outBatchNo: outBatchNo, |
| | | feedingWorkstationId: workstationId, |
| | | operationTaskId: operationTaskId, |
| | | outBatchNo: BN, |
| | | moId: id, |
| | | }; |
| | | this.getReturnInfo(obj); |
| | | // this.$u.api.WorkshopOrderCancellationIssued.checkReturnPartPDA(obj).then( |
| | |
| | | } |
| | | |
| | | .packing-registration-param-view { |
| | | height: 450rpx; |
| | | height: 200rpx; |
| | | background-color: #fff; |
| | | border-radius: 10rpx; |
| | | padding: 0rpx 23rpx; |