huangjiajun 1 개월 전
부모
커밋
2fc9e90cc6
1개의 변경된 파일8개의 추가작업 그리고 4개의 파일을 삭제
  1. +8
    -4
      app/hdl/hdl_store_index.go

+ 8
- 4
app/hdl/hdl_store_index.go 파일 보기

@@ -60,10 +60,14 @@ func StoreIndexTotal(c *gin.Context) {
tmp := []map[string]string{
{"name": "营业总额", "value": svc.GetCommissionPrec(c, amount, "2", "1")},
}
if store.StoreType == 0 {
tmp = append(tmp, map[string]string{"name": "佣金收益", "value": svc.GetCommissionPrec(c, commission, "2", "1")})
}
if store.StoreType > 0 {
if store != nil {
if store.StoreType == 0 {
tmp = append(tmp, map[string]string{"name": "佣金收益", "value": svc.GetCommissionPrec(c, commission, "2", "1")})
}
if store.StoreType > 0 {
tmp = append(tmp, map[string]string{"name": "订单收益", "value": svc.GetCommissionPrec(c, money, "2", "1")})
}
} else {
tmp = append(tmp, map[string]string{"name": "订单收益", "value": svc.GetCommissionPrec(c, money, "2", "1")})
}
tmp = append(tmp, map[string]string{"name": "已付款订单量", "value": utils.IntToStr(utils.StrToInt(successCount))})


불러오는 중...
취소
저장