| | |
| | | </el-select> |
| | | </el-form-item> |
| | | </el-form> |
| | | <el-form ref="form" :model="form" label-width="90px" v-if="isBatch === 1" v-show="this.outboundQuantity>1"> |
| | | <el-form ref="form" :model="form" label-width="90px" v-if="isBatch === 1"> |
| | | <el-form-item label="åºåºæ°é:"> |
| | | <el-input-number v-model="outboundQuantity" :controls="true" placeholder="è¯·éæ©åºåºæ°é" |
| | | style="width: 100%;"></el-input-number> |
| | |
| | | const requestParams = { |
| | | detailIds: this.keys, |
| | | OutboundTargetLocation: this.station, |
| | | outboundQuantity: this.outboundQuantity, |
| | | outboundQuantity: this.keys.length > 1 ? 1 : this.outboundQuantity, |
| | | operator: "", |
| | | orderNo: this.orderNo, |
| | | }; |
| | | console.log(requestParams); |
| | | this.http.post("api/Outbound/ProcessPickingOutbound", requestParams, 'æ°æ®å¤çä¸...') |
| | | .then((x) => { |
| | | if (!x.status) { |
| | |
| | | const keys = this.selection.map((item) => item.id); |
| | | const requestParams = { |
| | | detailIds: keys, |
| | | outboundQuantity: this.selection.length > 1 ? 1 : this.selection[0].orderQuantity - this.selection[0].lockQuantity, |
| | | outboundQuantity: this.selection[0].orderQuantity - this.selection[0].lockQuantity, |
| | | operator: "", |
| | | orderNo: this.row.orderNo, |
| | | isBatch: this.isBatch |