Compare commits
No commits in common. "2a6fd29be87897a98a7b7f5e2c4a536980a6bd11" and "9231eb833dedf1bad131cbcfa999a03088646dfe" have entirely different histories.
2a6fd29be8
...
9231eb833d
|
|
@ -203,6 +203,7 @@ public class SaDeliverHandledController extends BaseController {
|
||||||
.productName(deliverHandled.getProductName())
|
.productName(deliverHandled.getProductName())
|
||||||
.specsName(deliverHandled.getSpecsName())
|
.specsName(deliverHandled.getSpecsName())
|
||||||
.quantity(deliverHandled.getQuantity())
|
.quantity(deliverHandled.getQuantity())
|
||||||
|
.price(BigDecimal.ZERO)
|
||||||
.build();
|
.build();
|
||||||
if (!deliverCode.equals(deliverHandled.getDeliverCode())) {
|
if (!deliverCode.equals(deliverHandled.getDeliverCode())) {
|
||||||
deliverCode = deliverHandled.getDeliverCode();
|
deliverCode = deliverHandled.getDeliverCode();
|
||||||
|
|
|
||||||
|
|
@ -18,53 +18,89 @@ import java.math.BigDecimal;
|
||||||
@Data
|
@Data
|
||||||
public class DeliverWmsVO implements Serializable {
|
public class DeliverWmsVO implements Serializable {
|
||||||
|
|
||||||
@Excel(name = "平台订单号")
|
@Excel(name = "<必填>订单号")
|
||||||
private String deliverCode;
|
private String deliverCode;
|
||||||
@Excel(name = "收件人姓名")
|
|
||||||
|
@Excel(name = "下单时间")
|
||||||
|
private String createTime;
|
||||||
|
@Excel(name = "付款时间")
|
||||||
|
private String payTime;
|
||||||
|
|
||||||
|
@Excel(name = "交易类型")
|
||||||
|
private String payType;
|
||||||
|
@Excel(name = "业务员")
|
||||||
|
private String peopleName;
|
||||||
|
@Excel(name = "备注")
|
||||||
|
private String orderRemark;
|
||||||
|
@Excel(name = "买家留言")
|
||||||
|
private String buyRemark;
|
||||||
|
@Excel(name = "系统备注")
|
||||||
|
private String sysRemark;
|
||||||
|
@Excel(name = "仓库")
|
||||||
|
private String storeName;
|
||||||
|
@Excel(name = "总金额")
|
||||||
|
private BigDecimal totalAmount;
|
||||||
|
@Excel(name = "运费")
|
||||||
|
private String postAmount;
|
||||||
|
@Excel(name = "实付总额")
|
||||||
|
private String realTotalAmount;
|
||||||
|
@Excel(name = "本次收款")
|
||||||
|
private String receiveAmount;
|
||||||
|
@Excel(name = "结算账户")
|
||||||
|
private String settleAccount;
|
||||||
|
|
||||||
|
@Excel(name = "<必填>收货人姓名")
|
||||||
private String recName;
|
private String recName;
|
||||||
@Excel(name = "收件人手机号/电话")
|
|
||||||
|
@Excel(name = "手机")
|
||||||
private String recPhone;
|
private String recPhone;
|
||||||
@Excel(name = "收件人地址")
|
|
||||||
|
@Excel(name = "固话")
|
||||||
|
private String fixedPhone;
|
||||||
|
|
||||||
|
@Excel(name = "<必填>地址")
|
||||||
private String recAddress;
|
private String recAddress;
|
||||||
@Excel(name = "商家编码")
|
|
||||||
|
@Excel(name = "邮编")
|
||||||
|
private String postal;
|
||||||
|
|
||||||
|
@Excel(name = "电子邮箱")
|
||||||
|
private String email;
|
||||||
|
|
||||||
|
@Excel(name = "<必填>商品编码")
|
||||||
private String wmsCode;
|
private String wmsCode;
|
||||||
@Excel(name = "货品信息")
|
|
||||||
|
@Excel(name = "产品名称")
|
||||||
private String productName;
|
private String productName;
|
||||||
@Excel(name = "规格信息")
|
|
||||||
|
@Excel(name = "规格名称")
|
||||||
private String specsName;
|
private String specsName;
|
||||||
@Excel(name = "货品数量")
|
|
||||||
|
@Excel(name = "<必填>数量")
|
||||||
private Integer quantity;
|
private Integer quantity;
|
||||||
|
|
||||||
|
@Excel(name = "单价")
|
||||||
|
private BigDecimal price;
|
||||||
|
|
||||||
|
@Excel(name = "实付")
|
||||||
|
private BigDecimal realPay;
|
||||||
|
|
||||||
|
@Excel(name = "配送方式")
|
||||||
|
private String delivery;
|
||||||
|
|
||||||
|
@Excel(name = "明细备注")
|
||||||
|
private String remark;
|
||||||
|
|
||||||
|
@Excel(name = "批次号")
|
||||||
|
private String batchNo;
|
||||||
|
|
||||||
|
@Excel(name = "生产日期")
|
||||||
|
private String produceDate;
|
||||||
|
|
||||||
|
@Excel(name = "过期日期")
|
||||||
|
private String expireDate;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@Excel(name = "货品单价")
|
|
||||||
private String str1;
|
|
||||||
@Excel(name = "金额小计")
|
|
||||||
private String str2;
|
|
||||||
@Excel(name = "邮费收入")
|
|
||||||
private String str3;
|
|
||||||
@Excel(name = "店铺")
|
|
||||||
private String str4;
|
|
||||||
@Excel(name = "买家留言")
|
|
||||||
private String str5;
|
|
||||||
@Excel(name = "客服备注")
|
|
||||||
private String str6;
|
|
||||||
@Excel(name = "买家昵称")
|
|
||||||
private String str7;
|
|
||||||
@Excel(name = "主播ID")
|
|
||||||
private String str8;
|
|
||||||
@Excel(name = "主播名称")
|
|
||||||
private String str9;
|
|
||||||
@Excel(name = "业务员")
|
|
||||||
private String str10;
|
|
||||||
@Excel(name = "付款类型")
|
|
||||||
private String str11;
|
|
||||||
@Excel(name = "下单时间")
|
|
||||||
private String str12;
|
|
||||||
@Excel(name = "付款时间")
|
|
||||||
private String str13;
|
|
||||||
@Excel(name = "仓库")
|
|
||||||
private String str14;
|
|
||||||
@Excel(name = "快递公司")
|
|
||||||
private String str15;
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,5 @@
|
||||||
package com.hzs.common.domain.sale.order;
|
package com.hzs.common.domain.sale.order;
|
||||||
|
|
||||||
import com.baomidou.mybatisplus.annotation.KeySequence;
|
|
||||||
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
||||||
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
||||||
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
||||||
|
|
@ -19,7 +18,6 @@ import java.util.Date;
|
||||||
@Data
|
@Data
|
||||||
@EqualsAndHashCode(callSuper = false)
|
@EqualsAndHashCode(callSuper = false)
|
||||||
@Accessors(chain = true)
|
@Accessors(chain = true)
|
||||||
@KeySequence("SA_ORDER_SYNC_SEQ")
|
|
||||||
@TableName("SA_ORDER_SYNC")
|
@TableName("SA_ORDER_SYNC")
|
||||||
public class SaOrderSync implements Serializable {
|
public class SaOrderSync implements Serializable {
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue