Compare commits
No commits in common. "cda7f34f8dc596e6cf23b2a539558ecc4b305896" and "5af2ad91d6ee9759f8bad4762e03f1f148a5829a" have entirely different histories.
cda7f34f8d
...
5af2ad91d6
|
|
@ -301,8 +301,6 @@ public class SaOrderController extends ParentOrderController {
|
|||
if (StringUtils.isNotBlank(waresOrderVo.getOperateScope())) {
|
||||
waresOrderVo.setOperateScope(ESupplyWay.getLabelByVal(Integer.parseInt(waresOrderVo.getOperateScope())));
|
||||
}
|
||||
// 商品类型
|
||||
waresOrderVo.setIsMakerGiftVal(EWaresType.getLabelByValue(waresOrderVo.getIsMakerGift()));
|
||||
// 发货类型
|
||||
waresOrderVo.setShippingChannelStr(EShippingChannel.getLabelByValue(waresOrderVo.getShippingChannel()));
|
||||
}
|
||||
|
|
|
|||
|
|
@ -292,13 +292,6 @@ public class WaresOrderInfoVo implements Serializable {
|
|||
*/
|
||||
private Integer systemType;
|
||||
|
||||
/**
|
||||
* 商品类型
|
||||
*/
|
||||
private Integer isMakerGift;
|
||||
@Excel(name = "商品类型")
|
||||
private String isMakerGiftVal;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -771,11 +771,11 @@
|
|||
left join sa_order so on oi.PK_ORDER = so.PK_ID
|
||||
left join cu_member m on m.PK_ID = so.PK_CREATOR
|
||||
left join cu_member cm on cm.PK_ID = so.PK_MEMBER
|
||||
left join bd_vertex ver on ver.PK_ID = cm.PK_VERTEX and ver.del_flag = 0
|
||||
left join bd_vertex ver on ver.PK_ID = cm.PK_VERTEX
|
||||
left join bd_wares_extend we on we.PK_WARES = oi.PK_WARES
|
||||
left join bd_wares bw on bw.PK_ID = we.PK_WARES
|
||||
left join bd_product bp on bp.PK_ID = oi.PK_PRODUCT
|
||||
where oi.del_flag = 0 and so.del_flag = 0
|
||||
where oi.del_flag = 0 and so.del_flag = 0 and ver.del_flag = 0
|
||||
<if test="addPurchaseFlag != null and addPurchaseFlag == 0">
|
||||
and oi.pk_order in (
|
||||
select distinct soi.pk_order
|
||||
|
|
|
|||
|
|
@ -658,8 +658,9 @@
|
|||
from sa_order so
|
||||
left join CU_MEMBER cm on cm.PK_ID = so.PK_MEMBER
|
||||
left join CU_MEMBER m on m.PK_ID = so.PK_CREATOR
|
||||
left join BD_VERTEX ver on ver.PK_ID = cm.PK_VERTEX and ver.DEL_FLAG = 0
|
||||
left join BD_VERTEX ver on ver.PK_ID = cm.PK_VERTEX
|
||||
where so.DEL_FLAG = 0
|
||||
and ver.DEL_FLAG = 0
|
||||
<if test="addPurchaseFlag != null and addPurchaseFlag == 0">
|
||||
and so.PK_ID in (
|
||||
select distinct soi.pk_order
|
||||
|
|
|
|||
|
|
@ -86,13 +86,13 @@ public class BdWaresExtend extends BaseEntity {
|
|||
/**
|
||||
* 上架时间
|
||||
*/
|
||||
@TableField(value = "PUT_ON_TIME", jdbcType = JdbcType.DATE, updateStrategy = FieldStrategy.IGNORED)
|
||||
@TableField("PUT_ON_TIME")
|
||||
private Date putOnTime;
|
||||
|
||||
/**
|
||||
* 下架时间
|
||||
*/
|
||||
@TableField(value = "PUT_OFF_TIME", jdbcType = JdbcType.DATE, updateStrategy = FieldStrategy.IGNORED)
|
||||
@TableField("PUT_OFF_TIME")
|
||||
private Date putOffTime;
|
||||
|
||||
/**
|
||||
|
|
@ -134,7 +134,7 @@ public class BdWaresExtend extends BaseEntity {
|
|||
/**
|
||||
* (预计时间)到货时间
|
||||
*/
|
||||
@TableField(value = "ARRIVAL_TIME", jdbcType = JdbcType.DATE, updateStrategy = FieldStrategy.IGNORED)
|
||||
@TableField("ARRIVAL_TIME")
|
||||
private Date arrivalTime;
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in New Issue