|
|
package com.glxp.api.req.inout;
|
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
|
@Data
|
|
|
public class AddOrderRequest {
|
|
|
private String corpOrderId;
|
|
|
private String code;
|
|
|
private String mainAction;
|
|
|
private String action;
|
|
|
private String fromCorp;
|
|
|
private String fromCorpName;
|
|
|
private String fromName;
|
|
|
private String fromInvCode;
|
|
|
private String deptCode;
|
|
|
private String invCode;
|
|
|
private String billNo;
|
|
|
private Long customerId;
|
|
|
private boolean outChangeEnable;
|
|
|
private boolean ignoreExpire;
|
|
|
private boolean ignoreRecentExpire;
|
|
|
private boolean ignoreCode;
|
|
|
private boolean preCheck;
|
|
|
private String batchNo;
|
|
|
private String produceDate;
|
|
|
private String expireDate;
|
|
|
private String serialNo;
|
|
|
private boolean vailInv;
|
|
|
private boolean codeFillCheck;
|
|
|
private Integer orderType;
|
|
|
private String remark;
|
|
|
private String checkPreInOrders;
|
|
|
private String selectSupId;
|
|
|
private Long relId;
|
|
|
private Integer checkVailDate;
|
|
|
// 预验收货位
|
|
|
private String checkPreInSpaceCode;
|
|
|
private String curSpaceCode;
|
|
|
private String preCurSpaceCode;
|
|
|
private int fromVailPi; //是否需要校验三期;1:不需要,2:需要
|
|
|
|
|
|
//预验收价格
|
|
|
private String preInPrice;
|
|
|
private String preInBatchNo;
|
|
|
private String sickerAdNum;
|
|
|
|
|
|
private String workPlaceCode;
|
|
|
private Integer productType;
|
|
|
|
|
|
/**
|
|
|
* 上货方式:1:拆零上货;2:整取上货
|
|
|
*/
|
|
|
private Integer fifoSplit;
|
|
|
}
|