Feature/get bank info #23
|
@ -0,0 +1,55 @@
|
||||||
|
package client
|
||||||
|
|
||||||
|
import (
|
||||||
|
"encoding/json"
|
||||||
|
"errors"
|
||||||
|
|
||||||
|
"github.com/Selly-Modules/natsio"
|
||||||
|
"github.com/Selly-Modules/natsio/model"
|
||||||
|
"github.com/Selly-Modules/natsio/subject"
|
||||||
|
)
|
||||||
|
|
||||||
|
// Bank ...
|
||||||
|
type Bank struct{}
|
||||||
|
|
||||||
|
// GetBank ...
|
||||||
|
func GetBank() Bank {
|
||||||
|
return Bank{}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (s Bank) GetBankById(bankID string) (*model.BankBrief, error) {
|
||||||
|
msg, err := natsio.GetServer().Request(subject.Bank.GetBankById, toBytes(bankID))
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
var r struct {
|
||||||
|
Data *model.BankBrief `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 Bank) CheckBankAndBranchByID(p model.BankBranchRequest) bool {
|
||||||
|
msg, err := natsio.GetServer().Request(subject.Bank.CheckBankAndBranchByID, toBytes(p))
|
||||||
|
if err != nil {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
var r struct {
|
||||||
|
Error string `json:"error"`
|
||||||
|
}
|
||||||
|
|
||||||
|
if err = json.Unmarshal(msg.Data, &r); err != nil {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
return r.Error == ""
|
||||||
|
}
|
|
@ -0,0 +1,39 @@
|
||||||
|
package client
|
||||||
|
|
||||||
|
import (
|
||||||
|
"encoding/json"
|
||||||
|
"errors"
|
||||||
|
|
||||||
|
"github.com/Selly-Modules/natsio"
|
||||||
|
"github.com/Selly-Modules/natsio/model"
|
||||||
|
"github.com/Selly-Modules/natsio/subject"
|
||||||
|
)
|
||||||
|
|
||||||
|
// BankBranch ...
|
||||||
|
type BankBranch struct{}
|
||||||
|
|
||||||
|
// GetBankBranch ...
|
||||||
|
func GetBankBranch() BankBranch {
|
||||||
|
return BankBranch{}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (s BankBranch) GetBankBranchById(bankBranchID string) (*model.BankBranchBrief, error) {
|
||||||
|
msg, err := natsio.GetServer().Request(subject.Bank.GetBankBranchById, toBytes(bankBranchID))
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
var r struct {
|
||||||
|
Data *model.BankBranchBrief `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
|
||||||
|
}
|
|
@ -0,0 +1,40 @@
|
||||||
|
package client
|
||||||
|
|
||||||
|
import (
|
||||||
|
"encoding/json"
|
||||||
|
"errors"
|
||||||
|
"github.com/Selly-Modules/natsio"
|
||||||
|
"github.com/Selly-Modules/natsio/model"
|
||||||
|
"github.com/Selly-Modules/natsio/subject"
|
||||||
|
)
|
||||||
|
|
||||||
|
// Seller ...
|
||||||
|
type Seller struct{}
|
||||||
|
|
||||||
|
// GetSeller ...
|
||||||
|
func GetSeller() Seller {
|
||||||
|
return Seller{}
|
||||||
|
}
|
||||||
|
|
||||||
|
// GetSellerInfoByID ...
|
||||||
|
func (s Seller) GetSellerInfoByID(p model.GetSellerByIDRequest) (*model.ResponseSellerInfo, error) {
|
||||||
|
msg, err := natsio.GetServer().Request(subject.Seller.GetSellerInfoByID, toBytes(p))
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
var r struct {
|
||||||
|
Data *model.ResponseSellerInfo `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
|
||||||
|
}
|
|
@ -79,3 +79,39 @@ func (s Supplier) FindAll(supplierID model.SupplierRequestPayload) (*model.Suppl
|
||||||
|
|
||||||
return r.Data, nil
|
return r.Data, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// CreateWarehouseIntoServiceSupplier ...
|
||||||
|
func (s Supplier) CreateWarehouseIntoServiceSupplier(p model.CreateSupplierWarehousePayload) error {
|
||||||
|
msg, err := natsio.GetServer().Request(subject.Warehouse.CreateWarehouseIntoServiceSupplier, toBytes(p))
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
var r struct {
|
||||||
|
Error string `json:"error"`
|
||||||
|
}
|
||||||
|
if err = json.Unmarshal(msg.Data, &r); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if r.Error != "" {
|
||||||
|
return errors.New(r.Error)
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// UpdateWarehouseIntoServiceSupplier ...
|
||||||
|
func (s Supplier) UpdateWarehouseIntoServiceSupplier(p model.UpdateSupplierWarehousePayload) error {
|
||||||
|
msg, err := natsio.GetServer().Request(subject.Warehouse.UpdateWarehouseIntoServiceSupplier, toBytes(p))
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
var r struct {
|
||||||
|
Error string `json:"error"`
|
||||||
|
}
|
||||||
|
if err = json.Unmarshal(msg.Data, &r); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if r.Error != "" {
|
||||||
|
return errors.New(r.Error)
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,11 @@
|
||||||
|
package model
|
||||||
|
|
||||||
|
// BankBranchBrief ...
|
||||||
|
type BankBranchBrief struct {
|
||||||
|
ID string `json:"_id"`
|
||||||
|
City string `json:"city"`
|
||||||
|
BankCode string `json:"bankCode"`
|
||||||
|
Bank string `json:"bank"`
|
||||||
|
Active bool `json:"active"`
|
||||||
|
Name string `json:"name"`
|
||||||
|
}
|
|
@ -0,0 +1,6 @@
|
||||||
|
package model
|
||||||
|
|
||||||
|
type BankBranchRequest struct {
|
||||||
|
BankID string `json:"bankId"`
|
||||||
|
BranchID string `json:"branchId"`
|
||||||
|
}
|
|
@ -0,0 +1,21 @@
|
||||||
|
package model
|
||||||
|
|
||||||
|
// MultiLang ...
|
||||||
|
type MultiLang struct {
|
||||||
|
En string `json:"en"`
|
||||||
|
Vi string `json:"vi"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// BankBrief ...
|
||||||
|
type BankBrief struct {
|
||||||
|
ID string `json:"_id"`
|
||||||
|
Name MultiLang `json:"name"`
|
||||||
|
ShortName string `json:"shortName"`
|
||||||
|
Active bool `json:"active"`
|
||||||
|
BenBankName string `json:"benBankName"`
|
||||||
|
BankCode int `json:"bankCode"`
|
||||||
|
IsBranchRequired bool `json:"isBranchRequired"`
|
||||||
|
SearchString string `json:"searchString"`
|
||||||
|
BeneficiaryForVietinbank string `json:"beneficiaryForVietinbank"`
|
||||||
|
CreatedBy string `json:"createdBy,omitempty"`
|
||||||
|
}
|
|
@ -0,0 +1,8 @@
|
||||||
|
package model
|
||||||
|
|
||||||
|
import "go.mongodb.org/mongo-driver/bson/primitive"
|
||||||
|
|
||||||
|
// GetSellerByIDRequest ...
|
||||||
|
type GetSellerByIDRequest struct {
|
||||||
|
SellerID primitive.ObjectID `json:"sellerId"`
|
||||||
|
}
|
|
@ -0,0 +1,8 @@
|
||||||
|
package model
|
||||||
|
|
||||||
|
// ResponseSellerInfo ...
|
||||||
|
type ResponseSellerInfo struct {
|
||||||
|
ID string `json:"id"`
|
||||||
|
Name string `json:"name"`
|
||||||
|
Code string `json:"code"`
|
||||||
|
}
|
|
@ -22,3 +22,19 @@ type SupplierRequestPayload struct {
|
||||||
PIC string
|
PIC string
|
||||||
ContractStatus string
|
ContractStatus string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type CreateSupplierWarehousePayload struct {
|
||||||
|
Supplier string `json:"supplier"`
|
||||||
|
Warehouse string `json:"warehouse"`
|
||||||
|
ProvinceCode int `json:"provinceCode"`
|
||||||
|
DistrictCode int `json:"districtCode"`
|
||||||
|
WardCode int `json:"wardCode"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type UpdateSupplierWarehousePayload struct {
|
||||||
|
Supplier string `json:"supplier"`
|
||||||
|
Warehouse string `json:"warehouse"`
|
||||||
|
ProvinceCode int `json:"provinceCode"`
|
||||||
|
DistrictCode int `json:"districtCode"`
|
||||||
|
WardCode int `json:"wardCode"`
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,17 @@
|
||||||
|
package subject
|
||||||
|
|
||||||
|
import "fmt"
|
||||||
|
|
||||||
|
func getBankValue(val string) string {
|
||||||
|
return fmt.Sprintf("%s.%s", prefixes.Bank, val)
|
||||||
|
}
|
||||||
|
|
||||||
|
var Bank = struct {
|
||||||
|
GetBankById string
|
||||||
|
GetBankBranchById string
|
||||||
|
CheckBankAndBranchByID string
|
||||||
|
}{
|
||||||
|
GetBankById: getBankValue("get_bank_by_id"),
|
||||||
|
GetBankBranchById: getBankValue("get_bank_branch_by_id"),
|
||||||
|
CheckBankAndBranchByID: getBankValue("check_bank_and_brach_by_id"),
|
||||||
|
}
|
|
@ -5,11 +5,15 @@ var prefixes = struct {
|
||||||
Order string
|
Order string
|
||||||
Warehouse string
|
Warehouse string
|
||||||
Location string
|
Location string
|
||||||
|
Bank string
|
||||||
Supplier string
|
Supplier string
|
||||||
|
Seller string
|
||||||
}{
|
}{
|
||||||
Communication: "communication",
|
Communication: "communication",
|
||||||
Order: "order",
|
Order: "order",
|
||||||
Warehouse: "warehouse",
|
Warehouse: "warehouse",
|
||||||
Location: "location",
|
Location: "location",
|
||||||
Supplier: "supplier",
|
Supplier: "supplier",
|
||||||
|
Bank: "bank",
|
||||||
|
Seller: "seller",
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,14 @@
|
||||||
|
package subject
|
||||||
|
|
||||||
|
import "fmt"
|
||||||
|
|
||||||
|
func getSellerValue(val string) string {
|
||||||
|
return fmt.Sprintf("%s.%s", prefixes.Seller, val)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Seller ...
|
||||||
|
var Seller = struct {
|
||||||
|
GetSellerInfoByID string
|
||||||
|
}{
|
||||||
|
GetSellerInfoByID: getSellerValue("get_seller_info_by_id"),
|
||||||
|
}
|
|
@ -21,6 +21,8 @@ var Warehouse = struct {
|
||||||
AfterUpdateWarehouse string
|
AfterUpdateWarehouse string
|
||||||
AfterCreateWarehouse string
|
AfterCreateWarehouse string
|
||||||
UpdateIsClosedSupplier string
|
UpdateIsClosedSupplier string
|
||||||
|
CreateWarehouseIntoServiceSupplier string
|
||||||
|
UpdateWarehouseIntoServiceSupplier string
|
||||||
}{
|
}{
|
||||||
AfterCreateWarehouse: getWarehouseValue("after_create_warehouse"),
|
AfterCreateWarehouse: getWarehouseValue("after_create_warehouse"),
|
||||||
AfterUpdateWarehouse: getWarehouseValue("after_update_warehouse"),
|
AfterUpdateWarehouse: getWarehouseValue("after_update_warehouse"),
|
||||||
|
@ -36,4 +38,6 @@ var Warehouse = struct {
|
||||||
Distinct: getWarehouseValue("distinct"),
|
Distinct: getWarehouseValue("distinct"),
|
||||||
Count: getWarehouseValue("count"),
|
Count: getWarehouseValue("count"),
|
||||||
UpdateIsClosedSupplier: getWarehouseValue("update_is_closed_supplier"),
|
UpdateIsClosedSupplier: getWarehouseValue("update_is_closed_supplier"),
|
||||||
|
CreateWarehouseIntoServiceSupplier: getWarehouseValue("create_warehouse_into_service_supplier"),
|
||||||
|
UpdateWarehouseIntoServiceSupplier: getWarehouseValue("update_warehouse_into_service_supplier"),
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue