|
@@ -41,6 +41,7 @@ type Company struct {
|
|
|
Remark string `description:"备注信息"`
|
|
|
RegionType string `description:"地区类型,国内,国外"`
|
|
|
OpenCompanyCode string `description:"开放给第三方的客户编码,不让第三方定位我们的客户信息"`
|
|
|
+ Nation string `description:"所属国家"`
|
|
|
}
|
|
|
|
|
|
// 新增客户
|
|
@@ -94,6 +95,7 @@ type CompanySearchItem struct {
|
|
|
IsSigning int `description:"是否签约过,1是,0否"`
|
|
|
SigningStatus string `description:"签约状态,已签约过/未签约过"`
|
|
|
CompanyStatusButton *CompanyStatusButton
|
|
|
+ Nation string `description:"所属国家"`
|
|
|
}
|
|
|
|
|
|
type CompanySearchListResp struct {
|
|
@@ -213,6 +215,7 @@ type CompanyItem struct {
|
|
|
IsSigning int `description:"是否签约过,1是,0否"`
|
|
|
SigningStatus string `description:"签约状态,已签约过/未签约过"`
|
|
|
CompanyStatusButton *CompanyStatusButton
|
|
|
+ Nation string `description:"所属国家"`
|
|
|
}
|
|
|
|
|
|
type CompanyListItem struct {
|
|
@@ -389,7 +392,8 @@ as sort_todo_end_time,
|
|
|
MIN(b.end_date) as min_end_date,
|
|
|
SUM(b.view_total) as all_view_total,
|
|
|
SUM(b.try_out_day_total) as all_try_out_day_total,
|
|
|
- IF(LEFT(GROUP_CONCAT(DISTINCT b.last_view_time ORDER BY b.product_id), 19) >= "` + t + `", 1, 0) AS week_view_active
|
|
|
+ IF(LEFT(GROUP_CONCAT(DISTINCT b.last_view_time ORDER BY b.product_id), 19) >= "` + t + `", 1, 0) AS week_view_active,
|
|
|
+ a.nation
|
|
|
FROM company AS a
|
|
|
INNER JOIN company_product AS b ON a.company_id=b.company_id
|
|
|
WHERE a.enabled=1 `
|
|
@@ -567,6 +571,7 @@ type CompanyAddReq struct {
|
|
|
RegionType string `description:"地区类型,国内,海外"`
|
|
|
UserId int `description:"联系人ID"`
|
|
|
Scale string `description:"管理规模,空不填,1::50亿以下,2:50~100亿,3:100亿以上。"`
|
|
|
+ Nation string `description:"所属国家"`
|
|
|
}
|
|
|
|
|
|
// 新增客户请求参数
|
|
@@ -601,6 +606,7 @@ type CompanyDetail struct {
|
|
|
ShareSeller string `description:"共享销售员"`
|
|
|
ShareSellerId int `description:"共享销售员id"`
|
|
|
IsScrounge int `description:"是否白嫖 0不是 1是"`
|
|
|
+ Nation string `description:"所属国家"`
|
|
|
}
|
|
|
|
|
|
type CompanyDetailResp struct {
|
|
@@ -705,6 +711,7 @@ type CompanyEditReq struct {
|
|
|
CreditCode string `description:"社会统一信用码"`
|
|
|
Province string `description:"省"`
|
|
|
City string `description:"市"`
|
|
|
+ Nation string `description:"所属国家"`
|
|
|
Products []*CompanyProductEditReq `description:"产品信息"`
|
|
|
}
|
|
|
|
|
@@ -761,9 +768,10 @@ func ModifyCompany(item *Company) (err error) {
|
|
|
address = ?,
|
|
|
last_updated_time = NOW(),
|
|
|
province = ?,
|
|
|
- city = ?
|
|
|
+ city = ?,
|
|
|
+ nation=?
|
|
|
WHERE company_id =?`
|
|
|
- _, err = o.Raw(sql, item.CompanyName, item.CreditCode, item.Address, item.Province, item.City, item.CompanyId).Exec()
|
|
|
+ _, err = o.Raw(sql, item.CompanyName, item.CreditCode, item.Address, item.Province, item.City, item.Nation, item.CompanyId).Exec()
|
|
|
return
|
|
|
}
|
|
|
|