ziwen 1 年之前
父节点
当前提交
2eeaee6c8f
共有 2 个文件被更改,包括 68 次插入10 次删除
  1. 10 10
      controller/census/invoice_payment.go
  2. 58 0
      services/crm/company_seller.go

+ 10 - 10
controller/census/invoice_payment.go

@@ -760,7 +760,7 @@ func (ct *InvoicePaymentController) List(c *gin.Context) {
 				}
 			}
 			sellerTypeMap := map[int]string{2: "FICC销售", 5: "权益销售"}
-			sellerList, e := crmService.GetSellerDepartmentListWithGroupAndTeam()
+			sellerList, e := crmService.GetSellerDepartmentListWithEnable()
 			if e != nil {
 				resp.FailData("获取销售失败", "Err:"+e.Error(), c)
 				return
@@ -1742,14 +1742,14 @@ func (ct *InvoicePaymentController) NotInvoiceList(c *gin.Context) {
 			//	//summaryIds = append(summaryIds, summaryList[i].SummaryId)
 			//}
 
-			fmt.Println("len(NotInvoiceSummaryMap):", len(NotInvoiceSummaryMap))
+			//fmt.Println("len(NotInvoiceSummaryMap):", len(NotInvoiceSummaryMap))
 
 			for _, v := range summaryList {
-				fmt.Println("ProductIds:", v.ProductIds)
-				fmt.Println("ContractRegisterId:", v.ContractRegisterId)
-				fmt.Println("ServiceProductId:", v.ServiceProductId)
-				fmt.Println("RegisterId:", v.RegisterId)
-				fmt.Println("len(NotInvoiceSummaryMap[v.RegisterId]):", len(NotInvoiceSummaryMap[v.ContractRegisterId]))
+				//fmt.Println("ProductIds:", v.ProductIds)
+				//fmt.Println("ContractRegisterId:", v.ContractRegisterId)
+				//fmt.Println("ServiceProductId:", v.ServiceProductId)
+				//fmt.Println("RegisterId:", v.RegisterId)
+				//fmt.Println("len(NotInvoiceSummaryMap[v.RegisterId]):", len(NotInvoiceSummaryMap[v.ContractRegisterId]))
 				if (v.ProductIds == "1,2" || v.ProductIds == "2,1") && len(NotInvoiceSummaryMap[v.ContractRegisterId]) == 1 {
 					if v.ServiceProductId == 1 {
 						item := fms.NotInvoicePaymentSummaryItem{
@@ -1823,7 +1823,7 @@ func (ct *InvoicePaymentController) NotInvoiceList(c *gin.Context) {
 			}
 
 			// 重组汇总数据
-			sellerList, e := crmService.GetSellerDepartmentListWithGroupAndTeam()
+			sellerList, e := crmService.GetSellerDepartmentListWithEnable()
 			if e != nil {
 				resp.FailData("获取销售失败", "Err:"+e.Error(), c)
 				return
@@ -2252,7 +2252,7 @@ func (ct *InvoicePaymentController) NotPaymentList(c *gin.Context) {
 			//	}
 			//	serviceAmountMap[v.ContractRegisterId][v.ProductId] = v
 			//}
-			sellerList, e := crmService.GetSellerDepartmentListWithGroupAndTeam()
+			sellerList, e := crmService.GetSellerDepartmentListWithEnable()
 			if e != nil {
 				resp.FailData("获取销售失败", "Err:"+e.Error(), c)
 				return
@@ -2505,7 +2505,7 @@ func ExportNotInvoiceCensusList(c *gin.Context, results *fms.NotInvoicePaymentCe
 	incomeSummaryItemList := make([]*fms.NotPaymentCensusItem, 0)
 	incomeSummaryItemList = list
 
-	sellerList, e := crmService.GetSellerDepartmentListWithGroupAndTeam()
+	sellerList, e := crmService.GetSellerDepartmentListWithEnable()
 	if e != nil {
 		resp.FailData("获取销售失败", "Err:"+e.Error(), c)
 		return

+ 58 - 0
services/crm/company_seller.go

@@ -384,5 +384,63 @@ func GetSellerList() (resp crm.SellerAdminWithGroupList, err error) {
 	allList = append(allList, tmp2)
 	resp.AllList = allList
 
+	return
+}
+
+// 获取销售部门列表-包含禁用
+func GetSellerDepartmentListWithEnable() (sellerList []*crm.SellerAdminWithGroupTeam, err error) {
+	departmentIds := []int{crm.SellerDepartmentId,crm.RaiSellerDepartmentId}
+	sellerList = make([]*crm.SellerAdminWithGroupTeam, 0)
+	// 获取组别列表
+	groupCond := "department_id in (?)"
+	groupPars := make([]interface{}, 0)
+	groupPars = append(groupPars, departmentIds)
+	groupOB := new(crm.SysGroup)
+	groupList, e := groupOB.List(groupCond, groupPars)
+	if e != nil {
+		err = errors.New("获取组别列表失败, Err: " + e.Error())
+		return
+	}
+	groupMap := make(map[int]*crm.SysGroup)
+	for i := range groupList {
+		groupMap[groupList[i].GroupId] = groupList[i]
+	}
+
+	// 获取销售部门所有销售信息
+	adminCond := "department_id in (?) "
+	adminPars := make([]interface{}, 0)
+	adminPars = append(adminPars, departmentIds)
+	adminOB := new(crm.Admin)
+	adminList, e := adminOB.List(adminCond, adminPars)
+	if e != nil {
+		err = errors.New("获取销售列表失败, Err: " + e.Error())
+		return
+	}
+
+	// 销售列表
+	for i := range adminList {
+		v := new(crm.SellerAdminWithGroupTeam)
+		v.DepartmentId = adminList[i].DepartmentId
+		v.SellerId = adminList[i].AdminId
+		v.SellerName = adminList[i].RealName
+		g := groupMap[adminList[i].GroupId]
+		if g != nil {
+			if g.ParentId > 0 {
+				// 三级分组
+				p := groupMap[g.ParentId]
+				if p != nil {
+					v.GroupId = p.GroupId
+					v.GroupName = p.GroupName
+					v.TeamId = g.GroupId
+					v.TeamName = g.GroupName
+				}
+			} else {
+				// 二级分组
+				v.GroupId = g.GroupId
+				v.GroupName = g.GroupName
+			}
+		}
+		sellerList = append(sellerList, v)
+	}
 	return
 }