diff --git a/client/supplier.go b/client/supplier.go index fa96d66..7c19bd6 100644 --- a/client/supplier.go +++ b/client/supplier.go @@ -81,6 +81,27 @@ func (s Supplier) FindAll(supplierID model.SupplierRequestPayload) (*model.Suppl return r.Data, nil } +func (s Supplier) FindAllOld(req model.SupplierFindAllReq) (*model.SupplierAll, error) { + msg, err := natsio.GetServer().Request(subject.Supplier.FindAllOld, toBytes(req)) + if err != nil { + return nil, err + } + + var r struct { + Data *model.SupplierAll `json:"data"` + Error string `json:"error"` + } + + if err = json.Unmarshal(msg.Data, &r); err != nil { + return nil, err + } + if r.Error != "" { + return nil, errors.New(r.Error) + } + + return r.Data, nil +} + func (s Supplier) GetBankInfoByID(supplierID model.SupplierRequestPayload) (*model.SupplierAll, error) { msg, err := natsio.GetServer().Request(subject.Supplier.FindAll, toBytes(supplierID)) if err != nil { diff --git a/model/supplier_request.go b/model/supplier_request.go index 222f0d0..bd3714f 100644 --- a/model/supplier_request.go +++ b/model/supplier_request.go @@ -48,3 +48,10 @@ type SupplierGetCurrentBalanceReq struct { type SupplierDeleteCashflowReq struct { CashflowID string `json:"cashflowId"` } + +type SupplierFindAllReq struct { + Page int64 `json:"page"` + Limit int64 `json:"limit"` + Segment string `json:"segment"` + IDs []string `json:"ids"` +} diff --git a/subject/supplier.go b/subject/supplier.go index 441118f..03bb0aa 100644 --- a/subject/supplier.go +++ b/subject/supplier.go @@ -16,6 +16,7 @@ var Supplier = struct { UpdateBalance string GetCurrentBalance string GetFreeShipInfo string + FindAllOld string }{ GetListSupplierInfo: getSupplierValue("get_list_supplier_info"), GetSupplierContractBySupplierID: getSupplierValue("get_supplier_contract_by_supplier_id"), @@ -26,4 +27,5 @@ var Supplier = struct { UpdateBalance: getSupplierValue("update_balance"), GetCurrentBalance: getSupplierValue("get_current_balance"), GetFreeShipInfo: getSupplierValue("get_free_ship_info"), + FindAllOld: getSupplierValue("find_all_old"), }