瀏覽代碼

销售统计时统计预开票

ziwen 1 年之前
父節點
當前提交
da57c67a7f
共有 1 個文件被更改,包括 8 次插入8 次删除
  1. 8 8
      controller/census/seller.go

+ 8 - 8
controller/census/seller.go

@@ -58,8 +58,8 @@ func (ct *SellerController) GroupInvoiceList(c *gin.Context) {
 	}
 	outCond := ` department_id = %d AND parent_id = 0 `
 	outCond = fmt.Sprintf(outCond, departmentId)
-	cond := ` invoice_type = %d AND is_deleted = 0 AND seller_group_id != 0 `
-	cond = fmt.Sprintf(cond, fms.ContractInvoiceTypeMake)
+	cond := ` (invoice_type = %d OR invoice_type = %d) AND is_deleted = 0 AND seller_group_id != 0 `
+	cond = fmt.Sprintf(cond, fms.ContractInvoiceTypeMake, fms.ContractInvoiceTypePreMake)
 	pars := make([]interface{}, 0)
 	// 开票日期
 	if req.StartDate != "" && req.EndDate != "" {
@@ -282,13 +282,13 @@ func (ct *SellerController) InvoiceList(c *gin.Context) {
 		totalCond += ` AND group_id IN (?) `
 		totalPars = append(totalPars, groupIds)
 	}
-	sumCond := ` invoice_type = ? AND is_deleted = 0 AND seller_id != 0 `
+	sumCond := ` (invoice_type = ? OR invoice_type = ? ) AND is_deleted = 0 AND seller_id != 0 `
 	sumPars := make([]interface{}, 0)
-	sumPars = append(sumPars, fms.ContractInvoiceTypeMake)
-	cond := ` c.invoice_type = %d AND c.is_deleted = 0 AND c.seller_id != 0 `
-	inCond := ` invoice_type = %d AND is_deleted = 0 AND seller_id != 0 `
-	cond = fmt.Sprintf(cond, fms.ContractInvoiceTypeMake)
-	inCond = fmt.Sprintf(inCond, fms.ContractInvoiceTypeMake)
+	sumPars = append(sumPars, fms.ContractInvoiceTypeMake, fms.ContractInvoiceTypePreMake)
+	cond := ` (c.invoice_type = %d OR c.invoice_type = %d) AND c.is_deleted = 0 AND c.seller_id != 0 `
+	inCond := ` (invoice_type = %d OR invoice_type = %d) AND is_deleted = 0 AND seller_id != 0 `
+	cond = fmt.Sprintf(cond, fms.ContractInvoiceTypeMake, fms.ContractInvoiceTypePreMake)
+	inCond = fmt.Sprintf(inCond, fms.ContractInvoiceTypeMake, fms.ContractInvoiceTypePreMake)
 	// 开票日期
 	if req.StartDate != "" && req.EndDate != "" {
 		st := fmt.Sprint(req.StartDate, " 00:00:00")