Commit b03aeec7 by 郑云飞

添加收货人、收货电话、收货详细地址

parent f2aed4ee
......@@ -99,12 +99,9 @@ public class OrderMain {
@JsonInclude(JsonInclude.Include.NON_NULL)
private String sdef1; // 自定义项1
@JsonInclude(JsonInclude.Include.NON_NULL)
private String sdef2; // 自定义项2
@JsonInclude(JsonInclude.Include.NON_NULL)
private String sdef3; // 自定义项3
private String sdef1; // 自定义项1 团购收货联系人
private String sdef2; // 自定义项2 团购收获手机号
private String sdef3; // 自定义项3 团购收货详细地址
@JsonInclude(JsonInclude.Include.NON_NULL)
private String sdef4; // 自定义项4
@JsonInclude(JsonInclude.Include.NON_NULL)
......
......@@ -309,7 +309,10 @@
om.dactmoney,
om.tpaytime,
concat(om.sprovince, om.scity, om.sregion, om.scusaddr) as scusaddr,
om.sremark
om.sremark,
om.sdef1,
om.sdef2,
om.sdef3
from order_main om
left join customer c on om.customerid = c.id
where om.group_order_id = #{id,jdbcType=BIGINT}
......
......@@ -194,6 +194,9 @@
, {field: 'dactmoney', title: '实付金额'}
, {field: 'tpaytime', title: '付款时间'}
, {field: 'scusaddr', title: '收获地址'}
, {field: 'sdef1', title: '联系人'}
, {field: 'sdef2', title: '联系电话'}
, {field: 'sdef3', title: '详细地址'}
, {field: 'sremark', title: '备注'}
, {field: '', width: 130, title: '操作', toolbar: '#table-handle', fixed: "right"}
]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment