Merge pull request #9 from Selly-Modules/get-location-warehouse
fix get supplier
This commit is contained in:
commit
50c9c9e65f
|
@ -17,14 +17,35 @@ func GetSupplier() Supplier {
|
||||||
return Supplier{}
|
return Supplier{}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s Supplier) GetSupplierInfo(supplierID model.GetSupplierRequest) (*model.ResponseSupplierInfo, error) {
|
func (s Supplier) GetListSupplierInfo(p model.GetSupplierRequest) ([]*model.ResponseSupplierInfo, error) {
|
||||||
msg, err := natsio.GetServer().Request(subject.Supplier.GetSupplierInfo, toBytes(supplierID))
|
msg, err := natsio.GetServer().Request(subject.Supplier.GetListSupplierInfo, toBytes(p))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
var r struct {
|
var r struct {
|
||||||
Data *model.ResponseSupplierInfo `json:"data"`
|
Data []*model.ResponseSupplierInfo `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) GetSupplierContractBySupplierID(p model.GetSupplierContractRequest) (*model.ResponseSupplierContract, error) {
|
||||||
|
msg, err := natsio.GetServer().Request(subject.Supplier.GetSupplierContractBySupplierID, toBytes(p))
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
var r struct {
|
||||||
|
Data *model.ResponseSupplierContract `json:"data"`
|
||||||
Error string `json:"error"`
|
Error string `json:"error"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -6,5 +6,9 @@ import (
|
||||||
|
|
||||||
// GetSupplierRequest ...
|
// GetSupplierRequest ...
|
||||||
type GetSupplierRequest struct {
|
type GetSupplierRequest struct {
|
||||||
ID primitive.ObjectID `json:"_id"`
|
ListID []primitive.ObjectID `json:"listID"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type GetSupplierContractRequest struct {
|
||||||
|
SupplierID primitive.ObjectID `json:"supplierID"`
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,3 +5,11 @@ type ResponseSupplierInfo struct {
|
||||||
ID string `json:"id"`
|
ID string `json:"id"`
|
||||||
Name string `json:"name"`
|
Name string `json:"name"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ResponseSupplierContract ...
|
||||||
|
type ResponseSupplierContract struct {
|
||||||
|
ID string `json:"id"`
|
||||||
|
Supplier string `json:"supplier"`
|
||||||
|
Name string `json:"name"`
|
||||||
|
Status string `json:"status"`
|
||||||
|
}
|
||||||
|
|
|
@ -7,7 +7,9 @@ func getSupplierValue(val string) string {
|
||||||
}
|
}
|
||||||
|
|
||||||
var Supplier = struct {
|
var Supplier = struct {
|
||||||
GetSupplierInfo string
|
GetListSupplierInfo string
|
||||||
|
GetSupplierContractBySupplierID string
|
||||||
}{
|
}{
|
||||||
GetSupplierInfo: getSupplierValue("get_supplier_info"),
|
GetListSupplierInfo: getSupplierValue("get_list_supplier_info"),
|
||||||
|
GetSupplierContractBySupplierID: getSupplierValue("get_supplier_contract_by_supplier_id"),
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue