123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- // Copyright 2019 getensh.com. All rights reserved.
- // Use of this source code is governed by getensh.com.
- package charge
- import (
- "context"
- "encoding/json"
- "fmt"
- "git.getensh.com/common/gopkgs/database"
- "git.getensh.com/common/gopkgs/logger"
- "go.uber.org/zap"
- "google.golang.org/grpc/status"
- "gorm.io/gorm"
- "property-garden/errors"
- "property-garden/impl/v1/charge_utils"
- dbmodel "property-garden/model"
- pb_v1 "property-garden/pb/v1"
- "property-garden/utils"
- )
- func checkChargeHouseNotBindListParam(req *pb_v1.ChargeHouseNotBindListRequest) error {
- switch {
- case req.GardenId < 1:
- return status.Error(10003, "小区不能为空")
- case req.ChargeId < 1:
- return status.Error(10003, "费用项目不能为空")
- }
- if req.Page == 0 {
- req.Page = 1
- }
- if req.PageSize == 0 {
- req.PageSize = 10
- }
- return nil
- }
- func ChargeHouseNotBindList(ctx context.Context, req *pb_v1.ChargeHouseNotBindListRequest) (reply *pb_v1.ChargeHouseNotBindListReply, err error) {
- reply = &pb_v1.ChargeHouseNotBindListReply{}
- // 捕获各个task中的异常并返回给调用者
- defer func() {
- if r := recover(); r != nil {
- err = fmt.Errorf("%+v", r)
- e := &status.Status{}
- if er := json.Unmarshal([]byte(err.Error()), e); er != nil {
- logger.Error("err",
- zap.String("system_err", err.Error()),
- zap.Stack("stacktrace"))
- }
- }
- }()
- // 参数检查
- err = checkChargeHouseNotBindListParam(req)
- if err != nil {
- return nil, err
- }
- reply.Page = req.Page
- dbname := utils.GetGardenDbName(req.GardenId)
- chargeInfo := dbmodel.NewChargeConf(dbname)
- filter := map[string]interface{}{
- "id": req.ChargeId,
- }
- err = chargeInfo.Find(database.DB(), filter)
- if err != nil && err != gorm.ErrRecordNotFound {
- return nil, errors.DataBaseError
- }
- if chargeInfo.ID == 0 {
- return nil, errors.ErrRecordNotFound
- }
- house := dbmodel.NewHouseUnitBuilding(dbname)
- where := map[string]interface{}{}
- notExist := fmt.Sprintf("not exists(select obj_id from %s.t_charge_bind where t_charge_bind.obj_id=t_house_unit_building.id and t_charge_bind.charge_id=? && t_charge_bind.obj_type = %d)", dbname, charge_utils.ObjTypeHouse)
- where[notExist] = req.ChargeId
- if !charge_utils.IsOtherChargeType[chargeInfo.ChargeType] {
- notExist = fmt.Sprintf("not exists(select obj_id from %s.t_charge_bind where t_charge_bind.obj_id=t_house_unit_building.id and t_charge_bind.charge_type=? && t_charge_bind.obj_type = %d)", dbname, charge_utils.ObjTypeHouse)
- where[notExist] = chargeInfo.ChargeType
- }
- if req.HouseId > 0 {
- where["id"] = req.HouseId
- }
- if req.HouseId == 0 && req.Layer > 0 {
- where["layer"] = req.Layer
- }
- if req.HouseId == 0 && req.UnitId > 0 {
- where["unit_id"] = req.UnitId
- }
- if req.HouseId == 0 && req.UnitId == 0 && req.BuildingId > 0 {
- where["building_id"] = req.BuildingId
- }
- if req.HouseNumber != "" {
- where["house_number"] = req.HouseNumber
- }
- reply.Total, err = house.Count(database.DB(), where, nil)
- if err != nil {
- return nil, errors.DataBaseError
- }
- if reply.Total == 0 {
- return reply, nil
- }
- list, err := house.List(database.DB(), where, nil, int(req.Page), int(req.PageSize))
- if err != nil {
- return nil, errors.DataBaseError
- }
- reply.List = make([]*pb_v1.ChargeHouseData, len(list))
- for i, v := range list {
- item := &pb_v1.ChargeHouseData{
- HouseId: v.ID,
- HouseArea: v.HouseArea,
- HouseUsedArea: v.HouseUsedArea,
- HouseNumber: v.HouseNumber,
- Layer: v.Layer,
- HouseType: int32(v.HouseType),
- HouseStatus: int32(v.Status),
- HouseName: fmt.Sprintf("%v-%v-%v",
- v.BuildingNumber,
- v.UnitNumber,
- v.HouseNumber),
- }
- reply.List[i] = item
- }
- return reply, nil
- }
|