feat(crm): 添加客户联系方式和公司名称字段
在订单和客户管理界面中新增联系方式和公司名称字段显示 调整客户列表和订单列表的布局及字段展示 优化收款表单首次加载时的处理逻辑
This commit is contained in:
@@ -116,6 +116,10 @@ public class CrmOrderVo extends BaseEntity {
|
||||
// @ExcelProperty(value = "地址")
|
||||
private String address;
|
||||
|
||||
private String contactWay;
|
||||
|
||||
private String companyName;
|
||||
|
||||
//创建人
|
||||
private String createByName;
|
||||
//更新人
|
||||
|
||||
@@ -47,6 +47,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
co.update_time AS updateTime,
|
||||
cu.customer_code AS customerCode,
|
||||
cu.contact_person AS contactPerson,
|
||||
cu.contact_way AS contactWay,
|
||||
cu.company_name AS companyName,
|
||||
cu.address AS address
|
||||
FROM crm_order co
|
||||
LEFT JOIN crm_customer cu ON co.customer_id = cu.customer_id
|
||||
|
||||
Reference in New Issue
Block a user