|
@@ -821,6 +821,12 @@ func (rg *RegisterController) Detail(c *gin.Context) {
|
|
|
resp.FailData("获取失败", "获取合同登记详情失败, Err:"+e.Error(), c)
|
|
|
return
|
|
|
}
|
|
|
+
|
|
|
+ item.SellerIds = strconv.Itoa(item.SellerId)
|
|
|
+ if item.RaiSellerId != 0 {
|
|
|
+ item.SellerIds += ","+strconv.Itoa(item.RaiSellerId)
|
|
|
+ }
|
|
|
+ item.SellerIds = strings.Trim(item.SellerIds, ",")
|
|
|
result.ContractRegisterItem = item
|
|
|
|
|
|
// 套餐信息
|