| | |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.vincent.rsf.server.manager.controller.dto.OrderOutItemDto; |
| | | import com.vincent.rsf.server.manager.entity.LocItem; |
| | | import com.vincent.rsf.server.manager.entity.WkOrderItem; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | |
| | | |
| | | public OutStockToTaskParams(){}; |
| | | |
| | | public OutStockToTaskParams(OrderOutItemDto orderOutItemDto){ |
| | | public OutStockToTaskParams(OrderOutItemDto orderOutItemDto, LocItem locItem){ |
| | | // this.locCode = w;//库位 |
| | | // this.id = wkOrderItem.getId(); |
| | | this.barcode = orderOutItemDto.getBarcode(); |
| | | this.batch = orderOutItemDto.getBatch(); |
| | | this.unit = orderOutItemDto.getUnit(); |
| | | this.platOrderCode = orderOutItemDto.getPlatOrderCode(); |
| | | this.fieldsIndex = orderOutItemDto.getFieldsIndex(); |
| | | this.extendFields = orderOutItemDto.getExtendFields(); |
| | | this.outQty = orderOutItemDto.getAnfme(); |
| | | this.barcode = locItem.getBarcode(); |
| | | this.batch = locItem.getBatch(); |
| | | this.unit = locItem.getUnit(); |
| | | this.platOrderCode = locItem.getPlatOrderCode(); |
| | | this.fieldsIndex = locItem.getFieldsIndex(); |
| | | this.extendFields = locItem.getExtendFields(); |
| | | // this.outQty = locItem.getAnfme(); |
| | | // this.siteNo = siteNo; |
| | | }; |
| | | |