Compare commits
78 Commits
refactor-l
...
master
Author | SHA1 | Date |
---|---|---|
Minh Nguyen | 9c48edf1e3 | |
Nguyen Minh | 78194a2d43 | |
sinhluu | 0f40121bf7 | |
Minh Nguyen | de84fdc2bf | |
Minh Nguyen | 72d45ed239 | |
Nguyen Minh | a4a6f31ec6 | |
Nguyen Minh | 7ab8f1f3a5 | |
Nguyen Minh | ff223e2b46 | |
Sinh | 2b0d33efc2 | |
Sinh | dfdccfa86a | |
sinhluu | 1384cae433 | |
sinhluu | c82bf48503 | |
Minh Nguyen | 2e5a5b5f0f | |
Nguyen Minh | 2d04611fee | |
Sinh | 1d0b13285a | |
Minh Nguyen | 2b9092ecbe | |
Sinh | fd41b1eadf | |
Sinh | 9004771704 | |
Sinh | 524db8391f | |
sinhluu | 546c45aad4 | |
Sinh | 3a5046f65d | |
Sinh | c6284f3200 | |
Nguyen Minh | 02b699f144 | |
Sinh | a409c0d17c | |
sinhluu | 5edec97ee3 | |
Sinh | 430e07b7d0 | |
Sinh | 7302b78f25 | |
Sinh | e84157281b | |
Sinh | 28178e0c31 | |
Sinh | b3bde5cd09 | |
kingphon | 2ba590a0a0 | |
kingphon | a62eeb60d2 | |
kingphon | 31a13546bb | |
kingphon | b240d7a9d1 | |
kingphon | f58dfd4291 | |
kingphon | ba8af50460 | |
kingphon | 8dd914ca4e | |
trunglam | 10aec9f710 | |
trunglt251292 | 1c7e947344 | |
sinhluu | 898ee7822f | |
sinhluu | 1ca2e5720e | |
Sinh | 202dca2c28 | |
Sinh | 1579e563ac | |
Sinh | a432e7fd44 | |
Sinh | 041dd43616 | |
Minh Nguyen | aaf8de9830 | |
Nguyen Minh | 9c2f55e434 | |
Nguyen Minh | 8ed19af4ea | |
Nguyen Minh | 985a86dbd7 | |
Nguyen Minh | afd6b215d6 | |
Minh Nguyen | d6f50295c7 | |
sinhluu | 983731715b | |
Sinh | d03758a32d | |
Nguyen Minh | 71d674b74c | |
Nguyen Minh | 41b79b4ae8 | |
sinhluu | 53b2215309 | |
Nguyen Minh | ffe9418671 | |
Nguyen Minh | 7b01640583 | |
Sinh | 2e069b94e7 | |
Sinh | aee7b01b40 | |
tuannt20 | 2f64f1fa37 | |
tuannt20 | a1d6840fd9 | |
Nguyen Minh | 0401a57930 | |
Nguyen Minh | 79ad5c401c | |
trunglam | e64ba040b0 | |
quang | dba7cf4691 | |
sinhluu | 0269010ce8 | |
Sinh | 4c328c0858 | |
trunglam | 6626bc8588 | |
anbuiselly | f4f15ea224 | |
trunglam | f43a99628e | |
trunglt251292 | 5a47acc373 | |
quang | f32844916a | |
anbuiselly | 49156e576d | |
anbuiselly | 292c7733f0 | |
anbuiselly | 9a30faa3a2 | |
anbuiselly | f9b2edb032 | |
Sinh | df1fbbcf57 |
|
@ -1,37 +0,0 @@
|
||||||
package client
|
|
||||||
|
|
||||||
import (
|
|
||||||
"encoding/json"
|
|
||||||
"errors"
|
|
||||||
"git.selly.red/Selly-Modules/natsio"
|
|
||||||
"git.selly.red/Selly-Modules/natsio/model"
|
|
||||||
"git.selly.red/Selly-Modules/natsio/subject"
|
|
||||||
)
|
|
||||||
|
|
||||||
// AuthSMS ...
|
|
||||||
type AuthSMS struct{}
|
|
||||||
|
|
||||||
// GetAuthSMS ...
|
|
||||||
func GetAuthSMS() AuthSMS {
|
|
||||||
return AuthSMS{}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (s AuthSMS) CheckPermission(p model.CheckPermissionRequest) error {
|
|
||||||
msg, err := natsio.GetServer().Request(subject.AuthSMS.CheckPermission, 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
|
|
||||||
}
|
|
|
@ -17,15 +17,14 @@ func GetBank() Bank {
|
||||||
return Bank{}
|
return Bank{}
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetBankInfo ...
|
func (s Bank) GetBankById(bankID string) (*model.BankBrief, error) {
|
||||||
func (s Bank) GetBankInfo(p []model.GetBankInfoRequest) ([]*model.ResponseBankInfo, error) {
|
msg, err := natsio.GetServer().Request(subject.Bank.GetBankById, toBytes(bankID))
|
||||||
msg, err := natsio.GetServer().Request(subject.Bank.GetBankInfo, toBytes(p))
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
var r struct {
|
var r struct {
|
||||||
Data []*model.ResponseBankInfo `json:"data"`
|
Data *model.BankBrief `json:"data"`
|
||||||
Error string `json:"error"`
|
Error string `json:"error"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -39,40 +38,18 @@ func (s Bank) GetBankInfo(p []model.GetBankInfoRequest) ([]*model.ResponseBankIn
|
||||||
return r.Data, nil
|
return r.Data, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s Bank) CheckBankAndBranchByID(p model.CheckBankAndBranchByIDRequest) bool {
|
func (s Bank) CheckBankAndBranchByID(p model.BankBranchRequest) bool {
|
||||||
msg, err := natsio.GetServer().Request(subject.Bank.CheckBankAndBranchByID, toBytes(p))
|
msg, err := natsio.GetServer().Request(subject.Bank.CheckBankAndBranchByID, toBytes(p))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
var r struct {
|
var r struct {
|
||||||
Data bool `json:"data"`
|
Error string `json:"error"`
|
||||||
}
|
}
|
||||||
|
|
||||||
if err = json.Unmarshal(msg.Data, &r); err != nil {
|
if err = json.Unmarshal(msg.Data, &r); err != nil {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
return r.Data
|
return r.Error == ""
|
||||||
}
|
|
||||||
|
|
||||||
// GetBankAndBranchDetail ...
|
|
||||||
func (s Bank) GetBankAndBranchDetail(p model.GetBankInfoRequest) (*model.ResponseBankInfo, error) {
|
|
||||||
msg, err := natsio.GetServer().Request(subject.Bank.GetBankInfoDetail, toBytes(p))
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
var r struct {
|
|
||||||
Data *model.ResponseBankInfo `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,39 @@
|
||||||
|
package client
|
||||||
|
|
||||||
|
import (
|
||||||
|
"encoding/json"
|
||||||
|
"errors"
|
||||||
|
|
||||||
|
"git.selly.red/Selly-Modules/natsio"
|
||||||
|
"git.selly.red/Selly-Modules/natsio/model"
|
||||||
|
"git.selly.red/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
|
||||||
|
}
|
|
@ -1,30 +0,0 @@
|
||||||
package client
|
|
||||||
|
|
||||||
// Email ...
|
|
||||||
type Email struct{}
|
|
||||||
|
|
||||||
// GetEmail ...
|
|
||||||
func GetEmail() Email {
|
|
||||||
return Email{}
|
|
||||||
}
|
|
||||||
|
|
||||||
// func (s Email) Send(p model.GetEmailRequest) ([]*model.ResponseEmailInfo, error) {
|
|
||||||
// msg, err := natsio.GetServer().Request(subject.Email.GetListEmailInfo, toBytes(p))
|
|
||||||
// if err != nil {
|
|
||||||
// return nil, err
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// var r struct {
|
|
||||||
// Data []*model.ResponseEmailInfo `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
|
|
||||||
// }
|
|
|
@ -19,7 +19,28 @@ func GetLocation() Location {
|
||||||
|
|
||||||
// GetLocationByCode ...
|
// GetLocationByCode ...
|
||||||
func (l Location) GetLocationByCode(payload model.LocationRequestPayload) (*model.ResponseLocationAddress, error) {
|
func (l Location) GetLocationByCode(payload model.LocationRequestPayload) (*model.ResponseLocationAddress, error) {
|
||||||
msg, err := natsio.GetServer().Request(subject.Location.GetLocationByCodeNew, toBytes(payload))
|
msg, err := natsio.GetServer().Request(subject.Location.GetLocationByCodeFromLocationService, toBytes(payload))
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
var r struct {
|
||||||
|
Data *model.ResponseLocationAddress `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
|
||||||
|
}
|
||||||
|
|
||||||
|
// GetLocationByWardCode ...
|
||||||
|
func (l Location) GetLocationByWardCode(payload model.RequestCondition) (*model.ResponseLocationAddress, error) {
|
||||||
|
msg, err := natsio.GetServer().Request(subject.Location.GetLocationByWardCode, toBytes(payload))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
@ -40,7 +61,7 @@ func (l Location) GetLocationByCode(payload model.LocationRequestPayload) (*mode
|
||||||
|
|
||||||
// GetProvincesByCodes ...
|
// GetProvincesByCodes ...
|
||||||
func (l Location) GetProvincesByCodes(p model.ProvinceRequestPayload) (*model.LocationProvinceResponse, error) {
|
func (l Location) GetProvincesByCodes(p model.ProvinceRequestPayload) (*model.LocationProvinceResponse, error) {
|
||||||
msg, err := natsio.GetServer().Request(subject.Location.GetProvincesByCodesNew, toBytes(p))
|
msg, err := natsio.GetServer().Request(subject.Location.GetProvincesByCodesFromLocationService, toBytes(p))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
@ -62,7 +83,7 @@ func (l Location) GetProvincesByCodes(p model.ProvinceRequestPayload) (*model.Lo
|
||||||
|
|
||||||
// GetDistrictsByCodes ...
|
// GetDistrictsByCodes ...
|
||||||
func (l Location) GetDistrictsByCodes(p model.DistrictRequestPayload) (*model.LocationDistrictResponse, error) {
|
func (l Location) GetDistrictsByCodes(p model.DistrictRequestPayload) (*model.LocationDistrictResponse, error) {
|
||||||
msg, err := natsio.GetServer().Request(subject.Location.GetDistrictsByCodesNew, toBytes(p))
|
msg, err := natsio.GetServer().Request(subject.Location.GetDistrictsByCodesFromLocationService, toBytes(p))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
@ -84,7 +105,7 @@ func (l Location) GetDistrictsByCodes(p model.DistrictRequestPayload) (*model.Lo
|
||||||
|
|
||||||
// GetWardsByCodes ...
|
// GetWardsByCodes ...
|
||||||
func (l Location) GetWardsByCodes(p model.WardRequestPayload) (*model.LocationWardResponse, error) {
|
func (l Location) GetWardsByCodes(p model.WardRequestPayload) (*model.LocationWardResponse, error) {
|
||||||
msg, err := natsio.GetServer().Request(subject.Location.GetWardsByCodesNew, toBytes(p))
|
msg, err := natsio.GetServer().Request(subject.Location.GetWardsByCodesFromLocationService, toBytes(p))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,31 +0,0 @@
|
||||||
package client
|
|
||||||
|
|
||||||
import (
|
|
||||||
"encoding/json"
|
|
||||||
"errors"
|
|
||||||
|
|
||||||
"git.selly.red/Selly-Modules/natsio"
|
|
||||||
"git.selly.red/Selly-Modules/natsio/model"
|
|
||||||
"git.selly.red/Selly-Modules/natsio/subject"
|
|
||||||
)
|
|
||||||
|
|
||||||
func GetNotification() Notification {
|
|
||||||
return Notification{}
|
|
||||||
}
|
|
||||||
|
|
||||||
type Notification struct{}
|
|
||||||
|
|
||||||
func (n Notification) SupplierChangeBalanceRequestApproved(p model.NotificationSupplierChangeBalanceRequestApprovedReq) error {
|
|
||||||
msg, err := natsio.GetServer().Request(subject.Notification.SupplierChangeBalanceRequestApproved, toBytes(p))
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
var r model.CommonResponseData
|
|
||||||
if err = json.Unmarshal(msg.Data, &r); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
if r.Error != "" {
|
|
||||||
return errors.New(r.Error)
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
|
@ -120,18 +120,16 @@ func (o Order) GetSupplierOrders(p model.OrderSupplierQuery) (*model.SupplierOrd
|
||||||
return &r.Data, nil
|
return &r.Data, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetSupplierCash ...
|
// GetUserTotalWarningOrder ...
|
||||||
func (o Order) GetSupplierCash(p model.OrderSupplierCashReq) (*model.OrderSupplierCashRes, error) {
|
func (o Order) GetUserTotalWarningOrder(p model.OrderGetTotalWarningPayload) (*model.OrderGetTotalWarningRes, error) {
|
||||||
msg, err := natsio.GetServer().Request(subject.Order.GetSupplierCash, toBytes(p))
|
msg, err := natsio.GetServer().Request(subject.Order.GetUserTotalWarningOrders, toBytes(p))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
var (
|
var r struct {
|
||||||
r struct {
|
Data model.OrderGetTotalWarningRes `json:"data"`
|
||||||
Data model.OrderSupplierCashRes `json:"data"`
|
|
||||||
Error string `json:"error"`
|
Error string `json:"error"`
|
||||||
}
|
}
|
||||||
)
|
|
||||||
if err = json.Unmarshal(msg.Data, &r); err != nil {
|
if err = json.Unmarshal(msg.Data, &r); err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
|
@ -34,6 +34,23 @@ func (c Product) ApplyRequest(p model.ProductApplyRequestPayload) error {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (c Product) CreateRequestSteps(p model.ProductCreateStepsPayload) error {
|
||||||
|
msg, err := natsio.GetServer().Request(subject.Product.CreateRequestStep, 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
|
||||||
|
}
|
||||||
|
|
||||||
func (c Product) ProcessApplyRequest(p model.ProductApplyRequestPayload) error {
|
func (c Product) ProcessApplyRequest(p model.ProductApplyRequestPayload) error {
|
||||||
msg, err := natsio.GetServer().Request(subject.Product.ProcessApplyRequest, toBytes(p))
|
msg, err := natsio.GetServer().Request(subject.Product.ProcessApplyRequest, toBytes(p))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -50,3 +67,20 @@ func (c Product) ProcessApplyRequest(p model.ProductApplyRequestPayload) error {
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (c Product) RequestChangeStatus(p model.ProductRequestChangeStatus) error {
|
||||||
|
msg, err := natsio.GetServer().Request(subject.Product.RequestChangeStatus, 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,27 @@
|
||||||
|
package client
|
||||||
|
|
||||||
|
import (
|
||||||
|
"git.selly.red/Selly-Modules/natsio"
|
||||||
|
"git.selly.red/Selly-Modules/natsio/model"
|
||||||
|
"git.selly.red/Selly-Modules/natsio/subject"
|
||||||
|
)
|
||||||
|
|
||||||
|
// Socket ...
|
||||||
|
type Socket struct{}
|
||||||
|
|
||||||
|
// GetSocket ...
|
||||||
|
func GetSocket() Socket {
|
||||||
|
return Socket{}
|
||||||
|
}
|
||||||
|
|
||||||
|
// EmitSocketEventDataReward ...
|
||||||
|
func (s Socket) EmitSocketEventDataReward(p model.PayloadEmitSocketEvent) error {
|
||||||
|
_, err := natsio.GetServer().Request(subject.Socket.EmitEventReward, toBytes(p))
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
// EmitEventToUser ...
|
||||||
|
func (s Socket) EmitEventToUser(p model.PayloadEmitSocketEvent) error {
|
||||||
|
_, err := natsio.GetServer().Request(subject.Socket.EmitEventToUser, toBytes(p))
|
||||||
|
return err
|
||||||
|
}
|
|
@ -3,7 +3,6 @@ package client
|
||||||
import (
|
import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"errors"
|
"errors"
|
||||||
"go.mongodb.org/mongo-driver/bson"
|
|
||||||
|
|
||||||
"git.selly.red/Selly-Modules/natsio"
|
"git.selly.red/Selly-Modules/natsio"
|
||||||
"git.selly.red/Selly-Modules/natsio/model"
|
"git.selly.red/Selly-Modules/natsio/model"
|
||||||
|
@ -166,9 +165,9 @@ func (s Supplier) Count(req model.SupplierCountReq) (*model.SupplierCountRes, er
|
||||||
return r.Data, nil
|
return r.Data, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// SyncWarehouseIntoServiceSupplier ...
|
// CreateWarehouseIntoServiceSupplier ...
|
||||||
func (s Supplier) SyncWarehouseIntoServiceSupplier(p model.SyncSupplierWarehousePayload) error {
|
func (s Supplier) CreateWarehouseIntoServiceSupplier(p model.CreateSupplierWarehousePayload) error {
|
||||||
msg, err := natsio.GetServer().Request(subject.Warehouse.SyncWarehouseIntoServiceSupplier, toBytes(p))
|
msg, err := natsio.GetServer().Request(subject.Warehouse.CreateWarehouseIntoServiceSupplier, toBytes(p))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
@ -184,104 +183,9 @@ func (s Supplier) SyncWarehouseIntoServiceSupplier(p model.SyncSupplierWarehouse
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetListWarehouseFreeShip ...
|
// UpdateWarehouseIntoServiceSupplier ...
|
||||||
func (s Supplier) GetListWarehouseFreeShip() (*model.SupplierListWarehouseFreeShipResponse, error) {
|
func (s Supplier) UpdateWarehouseIntoServiceSupplier(p model.UpdateSupplierWarehousePayload) error {
|
||||||
msg, err := natsio.GetServer().Request(subject.Supplier.GetListWarehouseFreeShip, toBytes(bson.M{}))
|
msg, err := natsio.GetServer().Request(subject.Warehouse.UpdateWarehouseIntoServiceSupplier, toBytes(p))
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
var r struct {
|
|
||||||
Data *model.SupplierListWarehouseFreeShipResponse `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
|
|
||||||
}
|
|
||||||
|
|
||||||
// GetFreeShipInfo ...
|
|
||||||
func (s Supplier) GetFreeShipInfo(p model.SupplierFreeShipInfoRequestPayload) ([]*model.SupplierFreeShipInfoResponse, error) {
|
|
||||||
msg, err := natsio.GetServer().Request(subject.Supplier.GetFreeShipInfo, toBytes(p))
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
var r struct {
|
|
||||||
Data []*model.SupplierFreeShipInfoResponse `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
|
|
||||||
}
|
|
||||||
|
|
||||||
// CreateCashflow ...
|
|
||||||
func (s Supplier) CreateCashflow(p model.SupplierCashflowCreatePayload) (*model.SupplierCashflowCreateResponse, error) {
|
|
||||||
msg, err := natsio.GetServer().Request(subject.Supplier.CreateCashflow, toBytes(p))
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
var r struct {
|
|
||||||
Error string `json:"error"`
|
|
||||||
Data *model.SupplierCashflowCreateResponse `json:"data"`
|
|
||||||
}
|
|
||||||
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) UpdateBalance(p model.SupplierUpdateBalanceReq) (*model.SupplierUpdateBalanceRes, error) {
|
|
||||||
msg, err := natsio.GetServer().Request(subject.Supplier.UpdateBalance, toBytes(p))
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
var r struct {
|
|
||||||
Error string `json:"error"`
|
|
||||||
Data *model.SupplierUpdateBalanceRes `json:"data"`
|
|
||||||
}
|
|
||||||
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) GetCurrentBalance(p model.SupplierGetCurrentBalanceReq) (*model.SupplierGetCurrentBalanceRes, error) {
|
|
||||||
msg, err := natsio.GetServer().Request(subject.Supplier.GetCurrentBalance, toBytes(p))
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
var r struct {
|
|
||||||
Error string `json:"error"`
|
|
||||||
Data *model.SupplierGetCurrentBalanceRes `json:"data"`
|
|
||||||
}
|
|
||||||
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) DeleteCashflow(p model.SupplierDeleteCashflowReq) error {
|
|
||||||
msg, err := natsio.GetServer().Request(subject.Supplier.DeleteCashflow, toBytes(p))
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,79 +0,0 @@
|
||||||
package client
|
|
||||||
|
|
||||||
import (
|
|
||||||
"encoding/json"
|
|
||||||
"errors"
|
|
||||||
"git.selly.red/Selly-Modules/natsio"
|
|
||||||
"git.selly.red/Selly-Modules/natsio/model"
|
|
||||||
"git.selly.red/Selly-Modules/natsio/subject"
|
|
||||||
)
|
|
||||||
|
|
||||||
// SupplierPermission ...
|
|
||||||
type SupplierPermission struct{}
|
|
||||||
|
|
||||||
// GetSupplierPermission ...
|
|
||||||
func GetSupplierPermission() SupplierPermission {
|
|
||||||
return SupplierPermission{}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (s SupplierPermission) GetListPermission(p model.GetListPermissionRequest) (*model.GetListPermissionResponse, error) {
|
|
||||||
msg, err := natsio.GetServer().Request(subject.SupplierPermission.GetList, toBytes(p))
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
var r struct {
|
|
||||||
Data *model.GetListPermissionResponse `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 SupplierPermission) CreatePermission(p model.CreatePermissionRequest) (*model.CreatePermissionResponse, error) {
|
|
||||||
msg, err := natsio.GetServer().Request(subject.SupplierPermission.Create, toBytes(p))
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
var r struct {
|
|
||||||
Data *model.CreatePermissionResponse `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 SupplierPermission) UpdatePermission(p model.UpdatePermissionRequest) error {
|
|
||||||
msg, err := natsio.GetServer().Request(subject.SupplierPermission.Update, 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
|
|
||||||
}
|
|
|
@ -16,28 +16,8 @@ func GetSupplierRole() SupplierRole {
|
||||||
return SupplierRole{}
|
return SupplierRole{}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s SupplierRole) GetListRole(p model.GetListRoleRequest) (*model.GetListRoleResponse, error) {
|
|
||||||
msg, err := natsio.GetServer().Request(subject.SupplierRole.GetList, toBytes(p))
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
var r struct {
|
|
||||||
Data *model.GetListRoleResponse `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 SupplierRole) CreateRole(p model.CreateRoleRequest) (*model.CreateRoleResponse, error) {
|
func (s SupplierRole) CreateRole(p model.CreateRoleRequest) (*model.CreateRoleResponse, error) {
|
||||||
msg, err := natsio.GetServer().Request(subject.SupplierRole.Create, toBytes(p))
|
msg, err := natsio.GetServer().Request(subject.SupplierUser.CreateOwner, toBytes(p))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
@ -76,24 +56,3 @@ func (s SupplierRole) UpdateRole(p model.UpdateRoleRequest) error {
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s SupplierRole) DetailRole(p model.DetailRoleRequest) (*model.RoleBrief, error) {
|
|
||||||
msg, err := natsio.GetServer().Request(subject.SupplierRole.Detail, toBytes(p))
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
var r struct {
|
|
||||||
Data *model.RoleBrief `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
|
|
||||||
}
|
|
||||||
|
|
|
@ -16,89 +16,6 @@ func GetSupplierUser() SupplierUser {
|
||||||
return SupplierUser{}
|
return SupplierUser{}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s SupplierUser) LoginUser(p model.LoginUserRequest) (*model.LoginUserResponse, error) {
|
|
||||||
msg, err := natsio.GetServer().Request(subject.SupplierUser.LoginUser, toBytes(p))
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
var r struct {
|
|
||||||
Data *model.LoginUserResponse `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 SupplierUser) Logout(p model.LogoutRequest) error {
|
|
||||||
msg, err := natsio.GetServer().Request(subject.SupplierUser.Logout, 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
|
|
||||||
}
|
|
||||||
|
|
||||||
func (s SupplierUser) GetListUser(p model.GetListUserRequest) (*model.GetListUserResponse, error) {
|
|
||||||
msg, err := natsio.GetServer().Request(subject.SupplierUser.GetListUser, toBytes(p))
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
var r struct {
|
|
||||||
Data *model.GetListUserResponse `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 SupplierUser) DetailUser(p model.DetailUserRequest) (*model.SupplierUserBrief, error) {
|
|
||||||
msg, err := natsio.GetServer().Request(subject.SupplierUser.DetailUser, toBytes(p))
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
var r struct {
|
|
||||||
Data *model.SupplierUserBrief `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 SupplierUser) CreateSupplierOwnerUsers(p model.CreateOwnerRequest) (*model.CreateOwnerResponse, error) {
|
func (s SupplierUser) CreateSupplierOwnerUsers(p model.CreateOwnerRequest) (*model.CreateOwnerResponse, error) {
|
||||||
msg, err := natsio.GetServer().Request(subject.SupplierUser.CreateOwner, toBytes(p))
|
msg, err := natsio.GetServer().Request(subject.SupplierUser.CreateOwner, toBytes(p))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -182,7 +99,7 @@ func (s SupplierUser) UpdateSupplierStaffUsers(p model.UpdateStaffRequest) error
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s SupplierUser) UpdateStatus(p model.UpdateStatusRequest) error {
|
func (s SupplierUser) UpdateStatus(p model.UpdateStatusRequest) error {
|
||||||
msg, err := natsio.GetServer().Request(subject.SupplierUser.UpdateStatus, toBytes(p))
|
msg, err := natsio.GetServer().Request(subject.SupplierUser.UpdateStaff, toBytes(p))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
@ -222,26 +139,6 @@ func (s SupplierUser) ResetPassword(p model.ResetPasswordRequest) (*model.ResetP
|
||||||
return r.Data, nil
|
return r.Data, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s SupplierUser) ChangePassword(p model.ChangePasswordRequest) error {
|
|
||||||
msg, err := natsio.GetServer().Request(subject.SupplierUser.UpdateStatus, 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
|
|
||||||
}
|
|
||||||
|
|
||||||
// CheckTokenSupplierUser ...
|
// CheckTokenSupplierUser ...
|
||||||
func (s SupplierUser) CheckTokenSupplierUser(p model.CheckTokenSupplierUserPayload) (*model.ResponseCheckTokenSupplierUser, error) {
|
func (s SupplierUser) CheckTokenSupplierUser(p model.CheckTokenSupplierUserPayload) (*model.ResponseCheckTokenSupplierUser, error) {
|
||||||
msg, err := natsio.GetServer().Request(subject.SupplierUser.CheckTokenSupplierUser, toBytes(p))
|
msg, err := natsio.GetServer().Request(subject.SupplierUser.CheckTokenSupplierUser, toBytes(p))
|
||||||
|
|
|
@ -146,6 +146,25 @@ func (w Warehouse) GetConfigByWarehouseID(warehouseID string) (*model.WarehouseC
|
||||||
return r.Data, nil
|
return r.Data, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// GetListConfig ...
|
||||||
|
func (w Warehouse) GetListConfig(req model.GetListWarehouseConfigReq) ([]*model.WarehouseConfiguration, error) {
|
||||||
|
msg, err := natsio.GetServer().Request(subject.Warehouse.GetListWarehouseConfig, toBytes(req))
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
var r struct {
|
||||||
|
Data []*model.WarehouseConfiguration `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
|
||||||
|
}
|
||||||
|
|
||||||
// GetWarehouses ...
|
// GetWarehouses ...
|
||||||
func (w Warehouse) GetWarehouses(p model.GetWarehousesRequest) (*model.GetWarehousesResponse, error) {
|
func (w Warehouse) GetWarehouses(p model.GetWarehousesRequest) (*model.GetWarehousesResponse, error) {
|
||||||
msg, err := natsio.GetServer().Request(subject.Warehouse.GetWarehouses, toBytes(p))
|
msg, err := natsio.GetServer().Request(subject.Warehouse.GetWarehouses, toBytes(p))
|
||||||
|
@ -182,3 +201,43 @@ func (w Warehouse) UpdateORDeliveryStatus(p model.WarehouseORUpdateDeliveryStatu
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// UpdateStatusWarehousePendingInactive ...
|
||||||
|
func (w Warehouse) UpdateStatusWarehousePendingInactive(p model.UpdateStatusWarehousePendingInactiveRequest) error {
|
||||||
|
msg, err := natsio.GetServer().Request(subject.Warehouse.UpdateStatusWarehousePendingInactive, toBytes(p))
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
var r struct {
|
||||||
|
Error string `json:"error"`
|
||||||
|
}
|
||||||
|
|
||||||
|
if err = json.Unmarshal(msg.Data, &r); err != nil {
|
||||||
|
return fmt.Errorf("nats: update_status_warehouse_pending_inactive %v", err)
|
||||||
|
}
|
||||||
|
if r.Error != "" {
|
||||||
|
return errors.New(r.Error)
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// UpdateIsSellyMall ...
|
||||||
|
func (w Warehouse) UpdateIsSellyMall(p model.UpdateIsSellyMallRequest) error {
|
||||||
|
msg, err := natsio.GetServer().Request(subject.Warehouse.UpdateIsSellyMall, toBytes(p))
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
var r struct {
|
||||||
|
Error string `json:"error"`
|
||||||
|
}
|
||||||
|
|
||||||
|
if err = json.Unmarshal(msg.Data, &r); err != nil {
|
||||||
|
return fmt.Errorf("nats: update_is_selly_mall %v", err)
|
||||||
|
}
|
||||||
|
if r.Error != "" {
|
||||||
|
return errors.New(r.Error)
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
|
@ -3,6 +3,7 @@ package client
|
||||||
import (
|
import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"errors"
|
"errors"
|
||||||
|
|
||||||
"git.selly.red/Selly-Modules/natsio"
|
"git.selly.red/Selly-Modules/natsio"
|
||||||
"git.selly.red/Selly-Modules/natsio/model"
|
"git.selly.red/Selly-Modules/natsio/model"
|
||||||
"git.selly.red/Selly-Modules/natsio/subject"
|
"git.selly.red/Selly-Modules/natsio/subject"
|
||||||
|
@ -83,3 +84,39 @@ func (w Warehouse) FindByCondition(p model.FindWithCondition) ([]*model.Warehous
|
||||||
}
|
}
|
||||||
return r.Data, nil
|
return r.Data, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// UpdateWarehouseConfig ...
|
||||||
|
func (w Warehouse) UpdateWarehouseConfig(p model.UpdatePayload) error {
|
||||||
|
msg, err := natsio.GetServer().Request(subject.Warehouse.UpdateWarehouseConfig, bsonToBytes(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
|
||||||
|
}
|
||||||
|
|
||||||
|
// BulkWriteWarehouseConfig ...
|
||||||
|
func (w Warehouse) BulkWriteWarehouseConfig(p model.UpdatePayload) error {
|
||||||
|
msg, err := natsio.GetServer().Request(subject.Warehouse.BulkWriteWarehouseConfig, bsonToBytes(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
|
||||||
|
}
|
||||||
|
|
|
@ -1,39 +0,0 @@
|
||||||
package client
|
|
||||||
|
|
||||||
import (
|
|
||||||
"encoding/json"
|
|
||||||
"errors"
|
|
||||||
|
|
||||||
"git.selly.red/Selly-Modules/natsio"
|
|
||||||
"git.selly.red/Selly-Modules/natsio/model"
|
|
||||||
"git.selly.red/Selly-Modules/natsio/subject"
|
|
||||||
)
|
|
||||||
|
|
||||||
// Withdraw ...
|
|
||||||
type Withdraw struct{}
|
|
||||||
|
|
||||||
// GetWithdraw ...
|
|
||||||
func GetWithdraw() Withdraw {
|
|
||||||
return Withdraw{}
|
|
||||||
}
|
|
||||||
|
|
||||||
// GetSupplierCash ...
|
|
||||||
func (o Withdraw) GetSupplierCash(p model.WithdrawSupplierCashReq) (*model.WithdrawSupplierCashRes, error) {
|
|
||||||
msg, err := natsio.GetServer().Request(subject.Withdraw.GetSupplierCash, toBytes(p))
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
var (
|
|
||||||
r struct {
|
|
||||||
Data model.WithdrawSupplierCashRes `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
|
|
||||||
}
|
|
|
@ -5,8 +5,14 @@ var Selly = struct {
|
||||||
PushNotification string
|
PushNotification string
|
||||||
UpdateSellerAffiliateStatistic string
|
UpdateSellerAffiliateStatistic string
|
||||||
CheckAnDInsertCashflowBySeller string
|
CheckAnDInsertCashflowBySeller string
|
||||||
|
SubscriberTopic string
|
||||||
|
UpdateSellerSavingCampaignStatistic string
|
||||||
|
GenerateVoucherPromotion string
|
||||||
}{
|
}{
|
||||||
PushNotification: "PULL_PUSH_NOTIFICATION",
|
PushNotification: "PULL_PUSH_NOTIFICATION",
|
||||||
UpdateSellerAffiliateStatistic: "PULL_UPDATE_SELLER_AFFILIATE_STATISTIC",
|
UpdateSellerAffiliateStatistic: "PULL_UPDATE_SELLER_AFFILIATE_STATISTIC",
|
||||||
CheckAnDInsertCashflowBySeller: "PULL_CHECK_AND_INSERT_CASHFLOW_BY_SELLER",
|
CheckAnDInsertCashflowBySeller: "PULL_CHECK_AND_INSERT_CASHFLOW_BY_SELLER",
|
||||||
|
SubscriberTopic: "PULL_SUBSCRIBER_TOPIC",
|
||||||
|
UpdateSellerSavingCampaignStatistic: "PULL_UPDATE_SELLER_SAVING_CAMPAIGN_STATISTIC",
|
||||||
|
GenerateVoucherPromotion: "PULL_GENERATE_VOUCHER_PROMOTION",
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
package jsmodel
|
package jsmodel
|
||||||
|
|
||||||
|
import "go.mongodb.org/mongo-driver/bson/primitive"
|
||||||
|
|
||||||
// PushNotification ...
|
// PushNotification ...
|
||||||
type PushNotification struct {
|
type PushNotification struct {
|
||||||
User string `json:"user"`
|
User string `json:"user"`
|
||||||
|
@ -15,6 +17,8 @@ type NotificationOptions struct {
|
||||||
Title string `json:"title"`
|
Title string `json:"title"`
|
||||||
Content string `json:"content"`
|
Content string `json:"content"`
|
||||||
CampaignID string `json:"campaignId,omitempty"`
|
CampaignID string `json:"campaignId,omitempty"`
|
||||||
|
SellerSavingCampaignID string `json:"sellerSavingCampaignId,omitempty"`
|
||||||
|
SellerSavingCampaignStatus string `json:"sellerSavingCampaignStatus,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// PayloadUpdateSellerAffiliateStatistic ...
|
// PayloadUpdateSellerAffiliateStatistic ...
|
||||||
|
@ -62,4 +66,45 @@ type CashFlowOptions struct {
|
||||||
// Campaign
|
// Campaign
|
||||||
CampaignID string `json:"campaignId,omitempty"`
|
CampaignID string `json:"campaignId,omitempty"`
|
||||||
CampaignName string `json:"campaignName,omitempty"`
|
CampaignName string `json:"campaignName,omitempty"`
|
||||||
|
|
||||||
|
// SavingCampaign
|
||||||
|
SavingCampaignID string `json:"savingCampaignId,omitempty"`
|
||||||
|
SavingCampaignName string `json:"savingCampaignName,omitempty"`
|
||||||
|
|
||||||
|
SavingCampaignItemID string `json:"savingCampaignItemId,omitempty"`
|
||||||
|
SavingCampaignItemName string `json:"savingCampaignItemName,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// PayloadUpdateSellerSavingCampaignStatistic ...
|
||||||
|
type PayloadUpdateSellerSavingCampaignStatistic struct {
|
||||||
|
SellerID string `json:"sellerId"`
|
||||||
|
Statistic SellerSavingCampaignStatistic `json:"statistic"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// SellerSavingCampaignStatistic ...
|
||||||
|
type SellerSavingCampaignStatistic struct {
|
||||||
|
SavingCampaignCashPending float64 `json:"savingCampaignCashPending"`
|
||||||
|
SavingCampaignCashCompleted float64 `json:"savingCampaignCashCompleted"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// GenerateVoucherPromotion ...
|
||||||
|
type GenerateVoucherPromotion struct {
|
||||||
|
Cash float64 `json:"cash"`
|
||||||
|
TargetID primitive.ObjectID `json:"targetId"`
|
||||||
|
TargetType string `json:"targetType"`
|
||||||
|
Options GenerateVoucherPromotionOptions `json:"options"`
|
||||||
|
Seller primitive.ObjectID `json:"seller"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// GenerateVoucherPromotionOptions ...
|
||||||
|
type GenerateVoucherPromotionOptions struct {
|
||||||
|
Title string `json:"title"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// SubscriberNotificationTopic ...
|
||||||
|
type SubscriberNotificationTopic struct {
|
||||||
|
User string `json:"user"`
|
||||||
|
Topic string `json:"topic"`
|
||||||
|
DeviceId string `json:"deviceId"`
|
||||||
|
FCMToken string `json:"fcmToken"`
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,8 +14,14 @@ var Selly = struct {
|
||||||
PushNotification string
|
PushNotification string
|
||||||
UpdateSellerAffiliateStatistic string
|
UpdateSellerAffiliateStatistic string
|
||||||
CheckAnDInsertCashflowBySeller string
|
CheckAnDInsertCashflowBySeller string
|
||||||
|
SubscriberTopic string
|
||||||
|
UpdateSellerSavingCampaignStatistic string
|
||||||
|
GenerateVoucherPromotion string
|
||||||
}{
|
}{
|
||||||
PushNotification: getSellyValue("push_notifications"),
|
PushNotification: getSellyValue("push_notifications"),
|
||||||
UpdateSellerAffiliateStatistic: getSellyValue("update_seller_affiliate_statistic"),
|
UpdateSellerAffiliateStatistic: getSellyValue("update_seller_affiliate_statistic"),
|
||||||
CheckAnDInsertCashflowBySeller: getSellyValue("check_and_insert_cashflow_statistic"),
|
CheckAnDInsertCashflowBySeller: getSellyValue("check_and_insert_cashflow_statistic"),
|
||||||
|
SubscriberTopic: getSellyValue("subscriber_topic"),
|
||||||
|
UpdateSellerSavingCampaignStatistic: getSellyValue("update_seller_saving_campaign_statistic"),
|
||||||
|
GenerateVoucherPromotion: getSellyValue("generate_voucher_promotion"),
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +0,0 @@
|
||||||
package model
|
|
||||||
|
|
||||||
type CheckPermissionRequest struct {
|
|
||||||
Value []string `json:"value"`
|
|
||||||
ID string `json:"_id"`
|
|
||||||
DeviceID string `json:"deviceId"`
|
|
||||||
}
|
|
|
@ -1 +0,0 @@
|
||||||
package model
|
|
|
@ -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"`
|
||||||
|
}
|
|
@ -1,11 +0,0 @@
|
||||||
package model
|
|
||||||
|
|
||||||
type CheckBankAndBranchByIDRequest struct {
|
|
||||||
BankID string `json:"bankId"`
|
|
||||||
BranchID string `json:"branchId"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type GetBankInfoRequest struct {
|
|
||||||
BankID string `json:"bankId"`
|
|
||||||
BranchID string `json:"branchId"`
|
|
||||||
}
|
|
|
@ -1,23 +1,11 @@
|
||||||
package model
|
package model
|
||||||
|
|
||||||
import "time"
|
|
||||||
|
|
||||||
// MultiLang ...
|
// MultiLang ...
|
||||||
type MultiLang struct {
|
type MultiLang struct {
|
||||||
En string `json:"en"`
|
En string `json:"en"`
|
||||||
Vi string `json:"vi"`
|
Vi string `json:"vi"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// BranchBrief ...
|
|
||||||
type BranchBrief struct {
|
|
||||||
ID string `json:"_id"`
|
|
||||||
City string `json:"city"`
|
|
||||||
BankCode string `json:"bankCode"`
|
|
||||||
BankID string `json:"bankId"`
|
|
||||||
Active bool `json:"active"`
|
|
||||||
Name string `json:"name"`
|
|
||||||
}
|
|
||||||
|
|
||||||
// BankBrief ...
|
// BankBrief ...
|
||||||
type BankBrief struct {
|
type BankBrief struct {
|
||||||
ID string `json:"_id"`
|
ID string `json:"_id"`
|
||||||
|
@ -27,14 +15,7 @@ type BankBrief struct {
|
||||||
BenBankName string `json:"benBankName"`
|
BenBankName string `json:"benBankName"`
|
||||||
BankCode int `json:"bankCode"`
|
BankCode int `json:"bankCode"`
|
||||||
IsBranchRequired bool `json:"isBranchRequired"`
|
IsBranchRequired bool `json:"isBranchRequired"`
|
||||||
|
SearchString string `json:"searchString"`
|
||||||
BeneficiaryForVietinbank string `json:"beneficiaryForVietinbank"`
|
BeneficiaryForVietinbank string `json:"beneficiaryForVietinbank"`
|
||||||
CreatedBy string `json:"createdBy,omitempty"`
|
CreatedBy string `json:"createdBy,omitempty"`
|
||||||
CreatedAt time.Time `json:"createdAt"`
|
|
||||||
BranchTotal int64 `json:"branchTotal"`
|
|
||||||
Logo interface{} `json:"logo"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type ResponseBankInfo struct {
|
|
||||||
Bank BankBrief `json:"bank"`
|
|
||||||
Branch BranchBrief `json:"branch"`
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -21,12 +21,6 @@ type ActionBy struct {
|
||||||
Name string `json:"name"`
|
Name string `json:"name"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// ClickAction ...
|
|
||||||
type ClickAction struct {
|
|
||||||
Type string `json:"type"`
|
|
||||||
Value string `json:"value"`
|
|
||||||
}
|
|
||||||
|
|
||||||
// RequestCondition ...
|
// RequestCondition ...
|
||||||
type RequestCondition struct {
|
type RequestCondition struct {
|
||||||
Code int `json:"code"`
|
Code int `json:"code"`
|
||||||
|
@ -49,3 +43,14 @@ type RequestCondition struct {
|
||||||
Page int64 `json:"page"`
|
Page int64 `json:"page"`
|
||||||
Limit int64 `json:"limit"`
|
Limit int64 `json:"limit"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type UpdatePayload struct {
|
||||||
|
Conditions interface{} `json:"conditions"`
|
||||||
|
Payload interface{} `json:"payload"`
|
||||||
|
Opts []*options.UpdateOptions `json:"opts"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type WebhookPayloadV2 struct {
|
||||||
|
Path string `json:"path"` // request URL path from external
|
||||||
|
Data string `json:"data"` // request body
|
||||||
|
}
|
||||||
|
|
|
@ -5,6 +5,9 @@ type CommunicationRequestHttp struct {
|
||||||
ResponseImmediately bool `json:"responseImmediately"`
|
ResponseImmediately bool `json:"responseImmediately"`
|
||||||
Authentication string `json:"authentication"`
|
Authentication string `json:"authentication"`
|
||||||
Payload HttpRequest `json:"payload"`
|
Payload HttpRequest `json:"payload"`
|
||||||
|
|
||||||
|
// collection to store log data, will be prepended with log-, default it stored in logs collections
|
||||||
|
LogTarget string `json:"logTarget"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// HttpRequest ...
|
// HttpRequest ...
|
||||||
|
|
|
@ -32,6 +32,13 @@ type (
|
||||||
Name string `json:"name"`
|
Name string `json:"name"`
|
||||||
Code int `json:"code"`
|
Code int `json:"code"`
|
||||||
Slug string `json:"slug"`
|
Slug string `json:"slug"`
|
||||||
|
Location *GEOLocation `json:"location"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// GEOLocation ...
|
||||||
|
GEOLocation struct {
|
||||||
|
Type string `bson:"type" json:"type"`
|
||||||
|
Coordinates []float64 `bson:"coordinates" json:"coordinates"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// LocationProvinceResponse ...
|
// LocationProvinceResponse ...
|
||||||
|
@ -83,5 +90,6 @@ type (
|
||||||
Code int `json:"code"`
|
Code int `json:"code"`
|
||||||
DistrictCode int `json:"districtCode"`
|
DistrictCode int `json:"districtCode"`
|
||||||
ProvinceCode int `json:"provinceCode"`
|
ProvinceCode int `json:"provinceCode"`
|
||||||
|
Location *GEOLocation `json:"location"`
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
|
@ -1,7 +0,0 @@
|
||||||
package model
|
|
||||||
|
|
||||||
type NotificationSupplierChangeBalanceRequestApprovedReq struct {
|
|
||||||
SupplierID string `json:"supplierId"`
|
|
||||||
Cash float64 `json:"cash"`
|
|
||||||
Reason string `json:"reason"`
|
|
||||||
}
|
|
|
@ -1 +0,0 @@
|
||||||
package model
|
|
|
@ -50,6 +50,6 @@ type OrderSupplierQuery struct {
|
||||||
WarehouseIDs []string `json:"warehouseIDs"`
|
WarehouseIDs []string `json:"warehouseIDs"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type OrderSupplierCashReq struct {
|
type OrderGetTotalWarningPayload struct {
|
||||||
SupplierID string `json:"supplierId"`
|
UserID string `json:"userId"`
|
||||||
}
|
}
|
||||||
|
|
|
@ -34,8 +34,9 @@ type SupplierOrderDelivery struct {
|
||||||
TPLCode string `json:"tplCode" enums:"SLY,GHTK,GHN,SSC,SPY,VTP,SE,NTL,BEST"`
|
TPLCode string `json:"tplCode" enums:"SLY,GHTK,GHN,SSC,SPY,VTP,SE,NTL,BEST"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type OrderSupplierCashRes struct {
|
// OrderGetTotalWarningRes ...
|
||||||
PendingCash float64 `json:"pendingCash"`
|
type OrderGetTotalWarningRes struct {
|
||||||
WaitingForReconcileCash float64 `json:"waitingForReconcileCash"`
|
UserID string `json:"userId"`
|
||||||
ReconciledCash float64 `json:"reconciledCash"`
|
TotalWarningOrder int64 `json:"totalWarningOrder"`
|
||||||
|
Action ActionType `json:"action"`
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,3 +3,12 @@ package model
|
||||||
type ProductApplyRequestPayload struct {
|
type ProductApplyRequestPayload struct {
|
||||||
RequestID string `json:"requestId"`
|
RequestID string `json:"requestId"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type ProductCreateStepsPayload struct {
|
||||||
|
RequestID string `json:"requestId"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type ProductRequestChangeStatus struct {
|
||||||
|
RequestID string `json:"requestId"`
|
||||||
|
Status string `json:"status"`
|
||||||
|
}
|
||||||
|
|
|
@ -7,6 +7,8 @@ type ResponseSellerInfo struct {
|
||||||
ID string `json:"_id"`
|
ID string `json:"_id"`
|
||||||
Name string `json:"name"`
|
Name string `json:"name"`
|
||||||
Code string `json:"code"`
|
Code string `json:"code"`
|
||||||
|
IsAccountPro bool `json:"isAccountPro"`
|
||||||
|
CashRemaining float64 `json:"cashRemaining"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// ResponseListSellerInfo ...
|
// ResponseListSellerInfo ...
|
||||||
|
|
|
@ -0,0 +1,19 @@
|
||||||
|
package model
|
||||||
|
|
||||||
|
// PayloadEmitSocketEvent ...
|
||||||
|
type PayloadEmitSocketEvent struct {
|
||||||
|
User string `json:"user"`
|
||||||
|
Message string `json:"message"`
|
||||||
|
Data string `json:"data"`
|
||||||
|
IsNotRemove bool `json:"isNotRemove"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// PayloadEventSocketReward ...
|
||||||
|
type PayloadEventSocketReward struct {
|
||||||
|
Type string `json:"type"`
|
||||||
|
Title string `json:"title"`
|
||||||
|
Cash float64 `json:"cash"`
|
||||||
|
Message string `json:"message"`
|
||||||
|
Photo interface{} `json:"photo"`
|
||||||
|
Action *ActionType `json:"action"`
|
||||||
|
}
|
|
@ -1 +0,0 @@
|
||||||
package model
|
|
|
@ -1 +0,0 @@
|
||||||
package model
|
|
|
@ -1,24 +0,0 @@
|
||||||
package model
|
|
||||||
|
|
||||||
type GetListPermissionRequest struct {
|
|
||||||
Page int `json:"page"`
|
|
||||||
Limit int `json:"limit"`
|
|
||||||
Group string `json:"group"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type DetailPermissionRequest struct {
|
|
||||||
ID string `json:"_id"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type CreatePermissionRequest struct {
|
|
||||||
Name string `json:"name"`
|
|
||||||
Code string `json:"code"`
|
|
||||||
Group string `json:"group"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type UpdatePermissionRequest struct {
|
|
||||||
ID string `json:"_id"`
|
|
||||||
Name string `json:"name"`
|
|
||||||
Code string `json:"code"`
|
|
||||||
Group string `json:"group"`
|
|
||||||
}
|
|
|
@ -1,26 +0,0 @@
|
||||||
package model
|
|
||||||
|
|
||||||
type GetListPermissionResponse struct {
|
|
||||||
Permissions []PermissionBrief `json:"permissions"`
|
|
||||||
Total int64 `json:"total"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type PermissionBrief struct {
|
|
||||||
ID string `json:"_id"`
|
|
||||||
Name string `json:"name"`
|
|
||||||
Code string `json:"code"`
|
|
||||||
Group string `json:"group"`
|
|
||||||
CreatedAt string `json:"createdAt"`
|
|
||||||
UpdatedAt string `json:"updatedAt"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type CreatePermissionResponse struct {
|
|
||||||
ID string `json:"_id"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type PermissionShort struct {
|
|
||||||
ID string `json:"_id"`
|
|
||||||
Name string `json:"name"`
|
|
||||||
Code string `json:"code"`
|
|
||||||
Group string `json:"group"`
|
|
||||||
}
|
|
|
@ -28,30 +28,20 @@ type SupplierRequestPayload struct {
|
||||||
ContractStatus string
|
ContractStatus string
|
||||||
}
|
}
|
||||||
|
|
||||||
// SupplierCashflowCreatePayload ...
|
type CreateSupplierWarehousePayload struct {
|
||||||
type SupplierCashflowCreatePayload struct {
|
|
||||||
Supplier string `json:"supplier"`
|
Supplier string `json:"supplier"`
|
||||||
Action string `json:"action"`
|
Warehouse string `json:"warehouse"`
|
||||||
Name string `json:"name"`
|
ProvinceCode int `json:"provinceCode"`
|
||||||
TargetID string `json:"targetId"`
|
DistrictCode int `json:"districtCode"`
|
||||||
Value float64 `json:"value"`
|
WardCode int `json:"wardCode"`
|
||||||
ClickAction *ClickAction `json:"clickAction"`
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type SupplierFreeShipInfoRequestPayload struct {
|
type UpdateSupplierWarehousePayload struct {
|
||||||
SupplierIDs []string `json:"supplierIds"`
|
Supplier string `json:"supplier"`
|
||||||
}
|
Warehouse string `json:"warehouse"`
|
||||||
|
ProvinceCode int `json:"provinceCode"`
|
||||||
type SupplierUpdateBalanceReq struct {
|
DistrictCode int `json:"districtCode"`
|
||||||
SupplierID string `json:"supplierId"`
|
WardCode int `json:"wardCode"`
|
||||||
}
|
|
||||||
|
|
||||||
type SupplierGetCurrentBalanceReq struct {
|
|
||||||
SupplierID string `json:"supplierId"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type SupplierDeleteCashflowReq struct {
|
|
||||||
CashflowID string `json:"cashflowId"`
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type SupplierFindAllReq struct {
|
type SupplierFindAllReq struct {
|
||||||
|
|
|
@ -5,54 +5,7 @@ type ResponseSupplierInfo struct {
|
||||||
ID string `json:"id"`
|
ID string `json:"id"`
|
||||||
Name string `json:"name"`
|
Name string `json:"name"`
|
||||||
BusinessType string `json:"businessType"`
|
BusinessType string `json:"businessType"`
|
||||||
Statistic SupplierStatistic `json:"statistic"`
|
IsSellyMall bool `json:"isSellyMall"`
|
||||||
Rating float64 `json:"rating"`
|
|
||||||
Inventories []*SKUCommonInfo `json:"inventories"`
|
|
||||||
Active bool `json:"active"`
|
|
||||||
}
|
|
||||||
|
|
||||||
// SupplierStatistic ...
|
|
||||||
type SupplierStatistic struct {
|
|
||||||
TotalInventory int64 `json:"totalInventory"`
|
|
||||||
TotalQuantitySale int64 `json:"totalQuantitySale"`
|
|
||||||
TotalProduct int64 `json:"totalProduct"`
|
|
||||||
TotalHasOrderSeller int64 `json:"totalHasOrderSeller"`
|
|
||||||
TotalFollower int64 `json:"totalFollower"`
|
|
||||||
SalesTotal float64 `json:"salesTotal"`
|
|
||||||
SalesWeekTotal float64 `json:"salesWeekTotal"`
|
|
||||||
SalesMonthTotal float64 `json:"salesMonthTotal"`
|
|
||||||
SalesTwoMonthTotal float64 `json:"salesTwoMonthTotal"`
|
|
||||||
SalesYearTotal float64 `json:"salesYearTotal"`
|
|
||||||
SalesSuccess float64 `json:"salesSuccess"`
|
|
||||||
SalesPending float64 `json:"salesPending"`
|
|
||||||
SalesCancelled float64 `json:"salesCancelled"`
|
|
||||||
}
|
|
||||||
|
|
||||||
// SKUCommonInfo ...
|
|
||||||
type SKUCommonInfo struct {
|
|
||||||
Code int `json:"id,omitempty" bson:"id,omitempty"`
|
|
||||||
ID string `json:"_id" bson:"_id"`
|
|
||||||
Name string `json:"name" bson:"name"`
|
|
||||||
SearchString string `json:"-" bson:"searchString,omitempty"`
|
|
||||||
Location *LocationInventory `json:"location,omitempty" bson:"location,omitempty"`
|
|
||||||
MinimumValue float64 `json:"minimumValue,omitempty" bson:"-"`
|
|
||||||
}
|
|
||||||
|
|
||||||
// LocationInventory ...
|
|
||||||
type LocationInventory struct {
|
|
||||||
Address string `bson:"address" json:"address"`
|
|
||||||
Province string `bson:"province" json:"province"`
|
|
||||||
ProvinceName string `bson:"provinceName,omitempty" json:"provinceName,omitempty"`
|
|
||||||
District string `bson:"district" json:"district"`
|
|
||||||
Ward string `bson:"ward" json:"ward"`
|
|
||||||
FullAddress string `bson:"fullAddress,omitempty" json:"fullAddress,omitempty"`
|
|
||||||
Location *MongoLocation `bson:"location" json:"location"`
|
|
||||||
}
|
|
||||||
|
|
||||||
// MongoLocation ...
|
|
||||||
type MongoLocation struct {
|
|
||||||
Type string `bson:"type"`
|
|
||||||
Coordinates []float64 `bson:"coordinates"`
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// ResponseSupplierContract ...
|
// ResponseSupplierContract ...
|
||||||
|
@ -78,57 +31,6 @@ type SupplierAll struct {
|
||||||
Total int64 `json:"total"`
|
Total int64 `json:"total"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type SupplierListWarehouseFreeShipResponse struct {
|
|
||||||
Warehouses []string `json:"warehouses"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type SupplierCashflowCreateResponse struct {
|
|
||||||
ID string `json:"id"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type FreeShip struct {
|
|
||||||
ID string `json:"_id"`
|
|
||||||
ShortName string `json:"shortName"`
|
|
||||||
ListMilestoneText []string `json:"milestoneText"`
|
|
||||||
Order int `json:"-"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type SupplierFreeShipInfoResponse struct {
|
|
||||||
SupplierID string `json:"supplierId"`
|
|
||||||
FreeShips []FreeShip `json:"freeShips"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type SupplierShort struct {
|
|
||||||
ID string `json:"_id"`
|
|
||||||
Name string `json:"name"`
|
|
||||||
Logo interface{} `json:"logo"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type SupplierUpdateBalanceRes struct {
|
|
||||||
CurrentCash float64 `json:"currentCash"`
|
|
||||||
TotalPendingCash float64 `json:"totalPendingCash"`
|
|
||||||
OrderPendingCash float64 `json:"orderPendingCash"`
|
|
||||||
OrderWaitingForReconcileCash float64 `json:"orderWaitingForReconcileCash"`
|
|
||||||
OrderReconciledCash float64 `json:"orderReconciledCash"`
|
|
||||||
WithdrawPendingCash float64 `json:"withdrawPendingCash"`
|
|
||||||
WithdrawSuccessCash float64 `json:"withdrawSuccessCash"`
|
|
||||||
WithdrawRejectCash float64 `json:"withdrawRejectCash"`
|
|
||||||
ChangeBalanceRequestApproved float64 `json:"changeBalanceRequestApproved"`
|
|
||||||
UpdatedAt string `json:"updatedAt"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type SupplierGetCurrentBalanceRes struct {
|
|
||||||
CurrentCash float64 `json:"currentCash"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type SyncSupplierWarehousePayload struct {
|
|
||||||
Supplier string `json:"supplier"`
|
|
||||||
Warehouse string `json:"warehouse"`
|
|
||||||
ProvinceCode int `json:"provinceCode"`
|
|
||||||
DistrictCode int `json:"districtCode"`
|
|
||||||
WardCode int `json:"wardCode"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type SupplierCountRes struct {
|
type SupplierCountRes struct {
|
||||||
Total int64 `json:"total"`
|
Total int64 `json:"total"`
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,22 +1,9 @@
|
||||||
package model
|
package model
|
||||||
|
|
||||||
type GetListRoleRequest struct {
|
|
||||||
Page int `json:"page"`
|
|
||||||
Limit int `json:"limit"`
|
|
||||||
Type string `json:"type"`
|
|
||||||
SupplierID string `json:"supplierId"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type DetailRoleRequest struct {
|
|
||||||
ID string `json:"_id"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type CreateRoleRequest struct {
|
type CreateRoleRequest struct {
|
||||||
Name string `json:"name"`
|
Name string `json:"name"`
|
||||||
Code string `json:"code"`
|
Code string `json:"code"`
|
||||||
Type string `json:"type"`
|
Type string `json:"type"`
|
||||||
SupplierID string `json:"supplierId"`
|
|
||||||
Permissions []string `json:"permissions"`
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type UpdateRoleRequest struct {
|
type UpdateRoleRequest struct {
|
||||||
|
@ -24,6 +11,4 @@ type UpdateRoleRequest struct {
|
||||||
Name string `json:"name"`
|
Name string `json:"name"`
|
||||||
Code string `json:"code"`
|
Code string `json:"code"`
|
||||||
Type string `json:"type"`
|
Type string `json:"type"`
|
||||||
SupplierID string `json:"supplierId"`
|
|
||||||
Permissions []string `json:"permissions"`
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,29 +1,5 @@
|
||||||
package model
|
package model
|
||||||
|
|
||||||
type GetListRoleResponse struct {
|
|
||||||
Roles []RoleBrief `json:"roles"`
|
|
||||||
Total int64 `json:"total"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type RoleBrief struct {
|
|
||||||
ID string `json:"_id"`
|
|
||||||
Name string `json:"name"`
|
|
||||||
Code string `json:"code"`
|
|
||||||
Type string `json:"type"`
|
|
||||||
Permissions []PermissionShort `json:"permissions"`
|
|
||||||
SupplierId string `json:"supplierId"`
|
|
||||||
CreatedAt string `json:"createdAt"`
|
|
||||||
UpdatedAt string `json:"updatedAt"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type CreateRoleResponse struct {
|
type CreateRoleResponse struct {
|
||||||
ID string `json:"_id"`
|
ID string `json:"_id"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type RoleShort struct {
|
|
||||||
ID string `json:"_id"`
|
|
||||||
Name string `json:"name"`
|
|
||||||
Code string `json:"code"`
|
|
||||||
Type string `json:"type"`
|
|
||||||
SupplierId string `json:"supplierId"`
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,44 +1,12 @@
|
||||||
package model
|
package model
|
||||||
|
|
||||||
type LoginUserRequest struct {
|
|
||||||
Email string `json:"email"`
|
|
||||||
Password string `json:"password"`
|
|
||||||
DeviceID string `json:"deviceId"`
|
|
||||||
AppVersion string `json:"appVersion"`
|
|
||||||
UserAgent string `json:"userAgent"`
|
|
||||||
Model string `json:"model"`
|
|
||||||
Manufacturer string `json:"manufacturer"`
|
|
||||||
IP string `json:"ip"`
|
|
||||||
Language string `json:"language"`
|
|
||||||
FCMToken string `json:"FCMToken"`
|
|
||||||
AuthToken string `json:"authToken"`
|
|
||||||
OsName string `json:"osName"`
|
|
||||||
OsVersion string `json:"osVersion"`
|
|
||||||
IsMobile bool `json:"isMobile"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type LogoutRequest struct {
|
|
||||||
ID string `json:"_id"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type GetListUserRequest struct {
|
|
||||||
Page int `json:"page"`
|
|
||||||
Limit int `json:"limit"`
|
|
||||||
Status string `json:"status"`
|
|
||||||
Type string `json:"type"`
|
|
||||||
SupplierID string `json:"supplierId"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type DetailUserRequest struct {
|
|
||||||
ID string `json:"_id"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type CreateOwnerRequest struct {
|
type CreateOwnerRequest struct {
|
||||||
Name string `json:"name"`
|
Name string `json:"name"`
|
||||||
Phone string `json:"phone"`
|
Phone string `json:"phone"`
|
||||||
Email string `json:"email"`
|
Email string `json:"email"`
|
||||||
SupplierID string `json:"supplierId"`
|
SupplierID string `json:"supplierId"`
|
||||||
RoleID string `json:"roleId"`
|
RoleID string `json:"roleId"`
|
||||||
|
Password string `json:"password"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type UpdateOwnerRequest struct {
|
type UpdateOwnerRequest struct {
|
||||||
|
@ -56,6 +24,7 @@ type CreateStaffRequest struct {
|
||||||
Email string `json:"email"`
|
Email string `json:"email"`
|
||||||
SupplierID string `json:"supplierId"`
|
SupplierID string `json:"supplierId"`
|
||||||
RoleID string `json:"roleId"`
|
RoleID string `json:"roleId"`
|
||||||
|
Password string `json:"password"`
|
||||||
Warehouses []string `json:"warehouses"`
|
Warehouses []string `json:"warehouses"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -78,10 +47,6 @@ type UpdateStatusRequest struct {
|
||||||
|
|
||||||
type ResetPasswordRequest struct {
|
type ResetPasswordRequest struct {
|
||||||
ID string `json:"_id"`
|
ID string `json:"_id"`
|
||||||
}
|
|
||||||
|
|
||||||
type ChangePasswordRequest struct {
|
|
||||||
ID string `json:"_id"`
|
|
||||||
Password string `json:"password"`
|
Password string `json:"password"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,33 +1,5 @@
|
||||||
package model
|
package model
|
||||||
|
|
||||||
// LoginUserResponse ...
|
|
||||||
type LoginUserResponse struct {
|
|
||||||
ID string `json:"_id"`
|
|
||||||
RequireToChangePassword bool `json:"requireToChangePassword"`
|
|
||||||
SupplierID string `json:"supplierId"`
|
|
||||||
Name string `json:"name"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type GetListUserResponse struct {
|
|
||||||
SupplierUsers []SupplierUserBrief `json:"supplierUsers"`
|
|
||||||
Total int64 `json:"total"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type SupplierUserBrief struct {
|
|
||||||
ID string `json:"_id"`
|
|
||||||
Role RoleShort `json:"role"`
|
|
||||||
SupplierID string `json:"supplierId"`
|
|
||||||
Name string `json:"name"`
|
|
||||||
Phone string `json:"phone"`
|
|
||||||
Email string `json:"email"`
|
|
||||||
Status string `json:"status"`
|
|
||||||
Avatar interface{} `json:"avatar"`
|
|
||||||
Type string `json:"type"`
|
|
||||||
Warehouses []string `json:"warehouses"`
|
|
||||||
CreatedAt string `json:"createdAt"`
|
|
||||||
UpdatedAt string `json:"updatedAt"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type CreateOwnerResponse struct {
|
type CreateOwnerResponse struct {
|
||||||
ID string `json:"_id"`
|
ID string `json:"_id"`
|
||||||
}
|
}
|
||||||
|
|
|
@ -42,6 +42,7 @@ type OutboundRequestItem struct {
|
||||||
UnitCode string `json:"unitCode"`
|
UnitCode string `json:"unitCode"`
|
||||||
Price float64 `json:"price"`
|
Price float64 `json:"price"`
|
||||||
Name string `json:"name"`
|
Name string `json:"name"`
|
||||||
|
PartnerProductCode string `json:"partnerProductCode"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// CustomerInfo ...
|
// CustomerInfo ...
|
||||||
|
@ -63,11 +64,12 @@ type AddressDetail struct {
|
||||||
|
|
||||||
// UpdateOutboundRequestLogisticInfoPayload ...
|
// UpdateOutboundRequestLogisticInfoPayload ...
|
||||||
type UpdateOutboundRequestLogisticInfoPayload struct {
|
type UpdateOutboundRequestLogisticInfoPayload struct {
|
||||||
ShippingLabel string `json:"shippingLabel"`
|
ShippingLabel string `json:"shippingLabel,omitempty"`
|
||||||
TrackingCode string `json:"trackingCode"`
|
TrackingCode string `json:"trackingCode,omitempty"`
|
||||||
ORCode string `json:"orCode"`
|
ORCode string `json:"orCode,omitempty"`
|
||||||
TPLCode string `json:"tplCode"`
|
TPLCode string `json:"tplCode,omitempty"`
|
||||||
OrderID string `json:"orderId"`
|
OrderID string `json:"orderId"`
|
||||||
|
DeliveryStatus string `json:"deliveryStatus,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// CancelOutboundRequest ...
|
// CancelOutboundRequest ...
|
||||||
|
@ -114,3 +116,24 @@ type WarehouseORUpdateDeliveryStatus struct {
|
||||||
OrderID string `json:"orderId"`
|
OrderID string `json:"orderId"`
|
||||||
DeliveryStatus string `json:"deliveryStatus"`
|
DeliveryStatus string `json:"deliveryStatus"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// UpdateStatusWarehousePendingInactiveRequest ...
|
||||||
|
type UpdateStatusWarehousePendingInactiveRequest struct {
|
||||||
|
Warehouses []UpdateStatusWarehousePendingInactive `json:"warehouses"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// UpdateIsSellyMallRequest ...
|
||||||
|
type UpdateIsSellyMallRequest struct {
|
||||||
|
SupplierID string `json:"supplier"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// UpdateStatusWarehousePendingInactive ...
|
||||||
|
type UpdateStatusWarehousePendingInactive struct {
|
||||||
|
WarehouseID string `json:"warehouse"`
|
||||||
|
PendingInactive bool `json:"pendingInactive"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type GetListWarehouseConfigReq struct {
|
||||||
|
PartnerCode string `json:"partnerCode"`
|
||||||
|
PartnerIdentityCode string `json:"partnerIdentityCode"`
|
||||||
|
}
|
||||||
|
|
|
@ -65,12 +65,24 @@ type WarehouseOrder struct {
|
||||||
PaymentMethod WarehousePaymentMethod `json:"paymentMethod"`
|
PaymentMethod WarehousePaymentMethod `json:"paymentMethod"`
|
||||||
IsLimitNumberOfPurchases bool `json:"isLimitNumberOfPurchases"`
|
IsLimitNumberOfPurchases bool `json:"isLimitNumberOfPurchases"`
|
||||||
LimitNumberOfPurchases int64 `json:"limitNumberOfPurchases"`
|
LimitNumberOfPurchases int64 `json:"limitNumberOfPurchases"`
|
||||||
|
NotifyOnNewOrder WarehouseConfigNotifyOnNewOrder `json:"notifyOnNewOrder"`
|
||||||
|
LabelSize string `json:"labelSize"`
|
||||||
|
MaximumOrderValue float64 `json:"maximumOrderValue"`
|
||||||
|
MaximumNumberPerBuyerEachMonth int64 `json:"maximumNumberPerBuyerEachMonth"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// WarehouseConfigNotifyOnNewOrder ...
|
||||||
|
type WarehouseConfigNotifyOnNewOrder struct {
|
||||||
|
Enable bool `bson:"enable" json:"enable"`
|
||||||
|
Channel string `bson:"channel" json:"channel"`
|
||||||
|
RoomID string `bson:"roomId" json:"roomId"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// WarehousePaymentMethod ...
|
// WarehousePaymentMethod ...
|
||||||
type WarehousePaymentMethod struct {
|
type WarehousePaymentMethod struct {
|
||||||
Cod bool `json:"cod"`
|
Cod bool `json:"cod"`
|
||||||
BankTransfer bool `json:"bankTransfer"`
|
BankTransfer bool `json:"bankTransfer"`
|
||||||
|
Fundiin bool `json:"fundiin"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// WarehouseDelivery ...
|
// WarehouseDelivery ...
|
||||||
|
@ -119,7 +131,6 @@ type CommonLocation struct {
|
||||||
ID string `json:"id"`
|
ID string `json:"id"`
|
||||||
Name string `json:"name"`
|
Name string `json:"name"`
|
||||||
Code int `json:"code"`
|
Code int `json:"code"`
|
||||||
Slug string `json:"slug"`
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// ResponseLatLng ...
|
// ResponseLatLng ...
|
||||||
|
@ -145,6 +156,8 @@ type WarehouseNatsResponse struct {
|
||||||
UpdatedAt time.Time `json:"updatedAt"`
|
UpdatedAt time.Time `json:"updatedAt"`
|
||||||
ReasonPendingInactive string `json:"reasonPendingInactive"`
|
ReasonPendingInactive string `json:"reasonPendingInactive"`
|
||||||
IsPendingInactive bool `json:"isPendingInactive"`
|
IsPendingInactive bool `json:"isPendingInactive"`
|
||||||
|
IsFromInternational bool `json:"isFromInternational"`
|
||||||
|
StoreCode string `json:"storeCode"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// WarehouseInfo ...
|
// WarehouseInfo ...
|
||||||
|
@ -173,3 +186,9 @@ type GetWarehousesResponse struct {
|
||||||
Limit int64 `json:"limit"`
|
Limit int64 `json:"limit"`
|
||||||
List []WarehouseInfo `json:"list"`
|
List []WarehouseInfo `json:"list"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type GetListWarehouseConfigRes struct {
|
||||||
|
Total int64 `json:"total"`
|
||||||
|
Limit int64 `json:"limit"`
|
||||||
|
List []WarehouseConfiguration `json:"list"`
|
||||||
|
}
|
||||||
|
|
|
@ -1,5 +0,0 @@
|
||||||
package model
|
|
||||||
|
|
||||||
type WithdrawSupplierCashReq struct {
|
|
||||||
SupplierID string `json:"supplierId"`
|
|
||||||
}
|
|
|
@ -1,7 +0,0 @@
|
||||||
package model
|
|
||||||
|
|
||||||
type WithdrawSupplierCashRes struct {
|
|
||||||
PendingCash float64 `json:"pendingCash"`
|
|
||||||
SuccessCash float64 `json:"successCash"`
|
|
||||||
RejectCash float64 `json:"rejectCash"`
|
|
||||||
}
|
|
|
@ -1,15 +0,0 @@
|
||||||
package subject
|
|
||||||
|
|
||||||
import "fmt"
|
|
||||||
|
|
||||||
func getAuthSMSValue(val string) string {
|
|
||||||
return fmt.Sprintf("%s.%s", prefixes.AuthSMS, val)
|
|
||||||
}
|
|
||||||
|
|
||||||
var AuthSMS = struct {
|
|
||||||
// AuthSMS
|
|
||||||
CheckPermission string
|
|
||||||
}{
|
|
||||||
// Users
|
|
||||||
CheckPermission: getAuthSMSValue("check_permission"),
|
|
||||||
}
|
|
|
@ -7,11 +7,11 @@ func getBankValue(val string) string {
|
||||||
}
|
}
|
||||||
|
|
||||||
var Bank = struct {
|
var Bank = struct {
|
||||||
GetBankInfo string
|
GetBankById string
|
||||||
GetBankInfoDetail string
|
GetBankBranchById string
|
||||||
CheckBankAndBranchByID string
|
CheckBankAndBranchByID string
|
||||||
}{
|
}{
|
||||||
GetBankInfo: getBankValue("get_bank_info"),
|
GetBankById: getBankValue("get_bank_by_id"),
|
||||||
GetBankInfoDetail: getBankValue("get_bank_info_detail"),
|
GetBankBranchById: getBankValue("get_bank_branch_by_id"),
|
||||||
CheckBankAndBranchByID: getBankValue("check_bank_and_branch_by_id"),
|
CheckBankAndBranchByID: getBankValue("check_bank_and_brach_by_id"),
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,20 +9,16 @@ var prefixes = struct {
|
||||||
Bank string
|
Bank string
|
||||||
Supplier string
|
Supplier string
|
||||||
Seller string
|
Seller string
|
||||||
AuthSMS string
|
SupplierUser string
|
||||||
Selly string
|
SupplierRole string
|
||||||
SupplierPermission string
|
|
||||||
Withdraw string
|
|
||||||
Notification string
|
|
||||||
SocialPost string
|
SocialPost string
|
||||||
Staff string
|
Staff string
|
||||||
Segment string
|
Segment string
|
||||||
SupplierUser string
|
|
||||||
SupplierRole string
|
|
||||||
Campaign string
|
|
||||||
Affiliate string
|
|
||||||
Product string
|
Product string
|
||||||
Queue string
|
Queue string
|
||||||
|
Campaign string
|
||||||
|
Affiliate string
|
||||||
|
Socket string
|
||||||
}{
|
}{
|
||||||
Communication: "communication",
|
Communication: "communication",
|
||||||
Order: "order",
|
Order: "order",
|
||||||
|
@ -32,18 +28,14 @@ var prefixes = struct {
|
||||||
Supplier: "supplier",
|
Supplier: "supplier",
|
||||||
Bank: "bank",
|
Bank: "bank",
|
||||||
Seller: "seller",
|
Seller: "seller",
|
||||||
AuthSMS: "auth_sms",
|
|
||||||
Selly: "selly",
|
|
||||||
SupplierUser: "supplier_user",
|
SupplierUser: "supplier_user",
|
||||||
SupplierRole: "supplier_role",
|
SupplierRole: "supplier_role",
|
||||||
SupplierPermission: "supplier_permission",
|
|
||||||
Withdraw: "withdraw",
|
|
||||||
Notification: "notification",
|
|
||||||
SocialPost: "social_post",
|
SocialPost: "social_post",
|
||||||
Staff: "staff",
|
Staff: "staff",
|
||||||
Segment: "segment",
|
Segment: "segment",
|
||||||
Campaign: "campaign",
|
|
||||||
Affiliate: "affiliate",
|
|
||||||
Product: "product",
|
Product: "product",
|
||||||
Queue: "queue",
|
Queue: "queue",
|
||||||
|
Campaign: "campaign",
|
||||||
|
Affiliate: "affiliate",
|
||||||
|
Socket: "socket",
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,13 +8,14 @@ func getLocationValue(val string) string {
|
||||||
|
|
||||||
var Location = struct {
|
var Location = struct {
|
||||||
GetLocationByCode string
|
GetLocationByCode string
|
||||||
GetLocationByCodeNew string
|
GetLocationByCodeFromLocationService string
|
||||||
|
GetLocationByWardCode string
|
||||||
GetProvincesByCodes string
|
GetProvincesByCodes string
|
||||||
GetProvincesByCodesNew string
|
GetProvincesByCodesFromLocationService string
|
||||||
GetDistrictsByCodes string
|
GetDistrictsByCodes string
|
||||||
GetDistrictsByCodesNew string
|
GetDistrictsByCodesFromLocationService string
|
||||||
GetWardsByCodes string
|
GetWardsByCodes string
|
||||||
GetWardsByCodesNew string
|
GetWardsByCodesFromLocationService string
|
||||||
GetProvinceByCondition string
|
GetProvinceByCondition string
|
||||||
GetProvincesByCondition string
|
GetProvincesByCondition string
|
||||||
GetDistrictByCondition string
|
GetDistrictByCondition string
|
||||||
|
@ -27,13 +28,14 @@ var Location = struct {
|
||||||
ProvinceDistinctWithField string
|
ProvinceDistinctWithField string
|
||||||
}{
|
}{
|
||||||
GetLocationByCode: getLocationValue("get_location_warehouse"),
|
GetLocationByCode: getLocationValue("get_location_warehouse"),
|
||||||
GetLocationByCodeNew: getLocationValue("get_location_warehouse_new"),
|
GetLocationByCodeFromLocationService: getLocationValue("get_location_warehouse_from_location_service"),
|
||||||
|
GetLocationByWardCode: getLocationValue("get_location_by_ward_code"),
|
||||||
GetProvincesByCodes: getLocationValue("get_provinces_by_codes"),
|
GetProvincesByCodes: getLocationValue("get_provinces_by_codes"),
|
||||||
GetProvincesByCodesNew: getLocationValue("get_provinces_by_codes_new"),
|
GetProvincesByCodesFromLocationService: getLocationValue("get_provinces_by_codes_from_location_service"),
|
||||||
GetDistrictsByCodes: getLocationValue("get_districts_by_codes"),
|
GetDistrictsByCodes: getLocationValue("get_districts_by_codes"),
|
||||||
GetDistrictsByCodesNew: getLocationValue("get_districts_by_codes_new"),
|
GetDistrictsByCodesFromLocationService: getLocationValue("get_districts_by_codes_from_location_service"),
|
||||||
GetWardsByCodes: getLocationValue("get_wards_by_codes"),
|
GetWardsByCodes: getLocationValue("get_wards_by_codes"),
|
||||||
GetWardsByCodesNew: getLocationValue("get_wards_by_codes_new"),
|
GetWardsByCodesFromLocationService: getLocationValue("get_wards_by_codes_from_location_service"),
|
||||||
GetProvinceByCondition: getLocationValue("get_province_by_condition"),
|
GetProvinceByCondition: getLocationValue("get_province_by_condition"),
|
||||||
GetProvincesByCondition: getLocationValue("get_provinces_by_condition"),
|
GetProvincesByCondition: getLocationValue("get_provinces_by_condition"),
|
||||||
GetDistrictByCondition: getLocationValue("get_district_by_condition"),
|
GetDistrictByCondition: getLocationValue("get_district_by_condition"),
|
||||||
|
|
|
@ -1,13 +0,0 @@
|
||||||
package subject
|
|
||||||
|
|
||||||
import "fmt"
|
|
||||||
|
|
||||||
func getNotificationValue(val string) string {
|
|
||||||
return fmt.Sprintf("%s.%s", prefixes.Notification, val)
|
|
||||||
}
|
|
||||||
|
|
||||||
var Notification = struct {
|
|
||||||
SupplierChangeBalanceRequestApproved string
|
|
||||||
}{
|
|
||||||
SupplierChangeBalanceRequestApproved: getNotificationValue("supplier_change_balance_request_approved"),
|
|
||||||
}
|
|
|
@ -8,18 +8,18 @@ func getOrderValue(val string) string {
|
||||||
|
|
||||||
var Order = struct {
|
var Order = struct {
|
||||||
UpdateORStatus string
|
UpdateORStatus string
|
||||||
|
GetUserTotalWarningOrders string
|
||||||
CancelDelivery string
|
CancelDelivery string
|
||||||
ChangeDeliveryStatus string
|
ChangeDeliveryStatus string
|
||||||
UpdateLogisticInfoFailed string
|
UpdateLogisticInfoFailed string
|
||||||
ORNotUpdateStatus string
|
ORNotUpdateStatus string
|
||||||
GetSupplierOrders string
|
GetSupplierOrders string
|
||||||
GetSupplierCash string
|
|
||||||
}{
|
}{
|
||||||
UpdateORStatus: getOrderValue("update_outbound_request_status"),
|
UpdateORStatus: getOrderValue("update_outbound_request_status"),
|
||||||
|
GetUserTotalWarningOrders: getOrderValue("get_user_total_warning_orders"),
|
||||||
CancelDelivery: getOrderValue("cancel_delivery"),
|
CancelDelivery: getOrderValue("cancel_delivery"),
|
||||||
ChangeDeliveryStatus: getOrderValue("change_delivery_status"),
|
ChangeDeliveryStatus: getOrderValue("change_delivery_status"),
|
||||||
UpdateLogisticInfoFailed: getOrderValue("update_logistic_info_failed"),
|
UpdateLogisticInfoFailed: getOrderValue("update_logistic_info_failed"),
|
||||||
ORNotUpdateStatus: getOrderValue("outbound_request_not_update_status"),
|
ORNotUpdateStatus: getOrderValue("outbound_request_not_update_status"),
|
||||||
GetSupplierOrders: getOrderValue("get_supplier_orders"),
|
GetSupplierOrders: getOrderValue("get_supplier_orders"),
|
||||||
GetSupplierCash: getOrderValue("get_supplier_cash"),
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,8 +9,18 @@ func getProductValue(val string) string {
|
||||||
|
|
||||||
var Product = struct {
|
var Product = struct {
|
||||||
ApplyRequest string
|
ApplyRequest string
|
||||||
|
CreateRequestStep string
|
||||||
ProcessApplyRequest string
|
ProcessApplyRequest string
|
||||||
|
RequestChangeStatus string
|
||||||
|
WebhookStockUpdate string // WebhookStockUpdate Kiotviet queue
|
||||||
|
OPWebhookStockUpdate string // OPWebhookStockUpdate Onpoint queue
|
||||||
|
OrderPaymentBankTransferWebhookCheckAndUpdateStatus string
|
||||||
}{
|
}{
|
||||||
ApplyRequest: getProductValue("apply_request"),
|
ApplyRequest: getProductValue("apply_request"),
|
||||||
|
CreateRequestStep: getProductValue("create_request_step"),
|
||||||
ProcessApplyRequest: getProductValue("process_apply_request"),
|
ProcessApplyRequest: getProductValue("process_apply_request"),
|
||||||
|
RequestChangeStatus: getProductValue("request_change_status"),
|
||||||
|
WebhookStockUpdate: getProductValue("webhook_stock_update"),
|
||||||
|
OPWebhookStockUpdate: getProductValue("op_webhook_stock_update"),
|
||||||
|
OrderPaymentBankTransferWebhookCheckAndUpdateStatus: getProductValue("order_payment_bank_transfer_webhook_check_and_update_status"),
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,16 @@
|
||||||
|
package subject
|
||||||
|
|
||||||
|
import "fmt"
|
||||||
|
|
||||||
|
func getSocketValue(val string) string {
|
||||||
|
return fmt.Sprintf("%s.%s", prefixes.Socket, val)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Socket ...
|
||||||
|
var Socket = struct {
|
||||||
|
EmitEventReward string
|
||||||
|
EmitEventToUser string
|
||||||
|
}{
|
||||||
|
EmitEventReward: getSocketValue("emit_event_reward"),
|
||||||
|
EmitEventToUser: "send_message_to_socket",
|
||||||
|
}
|
|
@ -11,12 +11,6 @@ var Supplier = struct {
|
||||||
GetDetailSupplierInfo string
|
GetDetailSupplierInfo string
|
||||||
GetSupplierContractBySupplierID string
|
GetSupplierContractBySupplierID string
|
||||||
FindAll string
|
FindAll string
|
||||||
GetListWarehouseFreeShip string
|
|
||||||
CreateCashflow string
|
|
||||||
DeleteCashflow string
|
|
||||||
UpdateBalance string
|
|
||||||
GetCurrentBalance string
|
|
||||||
GetFreeShipInfo string
|
|
||||||
FindAllOld string
|
FindAllOld string
|
||||||
Count string
|
Count string
|
||||||
}{
|
}{
|
||||||
|
@ -24,12 +18,6 @@ var Supplier = struct {
|
||||||
GetDetailSupplierInfo: getSupplierValue("get_detail_supplier_info"),
|
GetDetailSupplierInfo: getSupplierValue("get_detail_supplier_info"),
|
||||||
GetSupplierContractBySupplierID: getSupplierValue("get_supplier_contract_by_supplier_id"),
|
GetSupplierContractBySupplierID: getSupplierValue("get_supplier_contract_by_supplier_id"),
|
||||||
FindAll: getSupplierValue("find_all"),
|
FindAll: getSupplierValue("find_all"),
|
||||||
GetListWarehouseFreeShip: getSupplierValue("get_list_warehouse_free_ship"),
|
|
||||||
CreateCashflow: getSupplierValue("create_cashflow"),
|
|
||||||
DeleteCashflow: getSupplierValue("delete_cashflow"),
|
|
||||||
UpdateBalance: getSupplierValue("update_balance"),
|
|
||||||
GetCurrentBalance: getSupplierValue("get_current_balance"),
|
|
||||||
GetFreeShipInfo: getSupplierValue("get_free_ship_info"),
|
|
||||||
FindAllOld: getSupplierValue("find_all_old"),
|
FindAllOld: getSupplierValue("find_all_old"),
|
||||||
Count: getSupplierValue("count"),
|
Count: getSupplierValue("count"),
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,17 +0,0 @@
|
||||||
package subject
|
|
||||||
|
|
||||||
import "fmt"
|
|
||||||
|
|
||||||
func getPermissionValue(val string) string {
|
|
||||||
return fmt.Sprintf("%s.%s", prefixes.SupplierPermission, val)
|
|
||||||
}
|
|
||||||
|
|
||||||
var SupplierPermission = struct {
|
|
||||||
GetList string
|
|
||||||
Create string
|
|
||||||
Update string
|
|
||||||
}{
|
|
||||||
GetList: getPermissionValue("get_list"),
|
|
||||||
Create: getPermissionValue("create"),
|
|
||||||
Update: getPermissionValue("update"),
|
|
||||||
}
|
|
|
@ -7,15 +7,9 @@ func getRoleValue(val string) string {
|
||||||
}
|
}
|
||||||
|
|
||||||
var SupplierRole = struct {
|
var SupplierRole = struct {
|
||||||
GetList string
|
|
||||||
Detail string
|
|
||||||
Create string
|
Create string
|
||||||
Update string
|
Update string
|
||||||
GetListBySupplierID string
|
|
||||||
}{
|
}{
|
||||||
GetList: getRoleValue("get_list"),
|
|
||||||
Detail: getRoleValue("detail"),
|
|
||||||
Create: getRoleValue("create"),
|
Create: getRoleValue("create"),
|
||||||
Update: getRoleValue("update"),
|
Update: getRoleValue("update"),
|
||||||
GetListBySupplierID: getRoleValue("get_list_by_supplierId"),
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,30 +8,20 @@ func getSupplierUserValue(val string) string {
|
||||||
|
|
||||||
var SupplierUser = struct {
|
var SupplierUser = struct {
|
||||||
// Users
|
// Users
|
||||||
LoginUser string
|
|
||||||
Logout string
|
|
||||||
GetListUser string
|
|
||||||
DetailUser string
|
|
||||||
CreateOwner string
|
CreateOwner string
|
||||||
UpdateOwner string
|
UpdateOwner string
|
||||||
CreateStaff string
|
CreateStaff string
|
||||||
UpdateStaff string
|
UpdateStaff string
|
||||||
UpdateStatus string
|
UpdateStatus string
|
||||||
ResetPassword string
|
ResetPassword string
|
||||||
ChangePassword string
|
|
||||||
CheckTokenSupplierUser string
|
CheckTokenSupplierUser string
|
||||||
}{
|
}{
|
||||||
// Users
|
// Users
|
||||||
LoginUser: getSupplierUserValue("login_user"),
|
|
||||||
Logout: getSupplierUserValue("logout"),
|
|
||||||
GetListUser: getSupplierUserValue("get_list_user"),
|
|
||||||
DetailUser: getSupplierUserValue("detail_user"),
|
|
||||||
CreateOwner: getSupplierUserValue("create_owner"),
|
CreateOwner: getSupplierUserValue("create_owner"),
|
||||||
UpdateOwner: getSupplierUserValue("update_owner"),
|
UpdateOwner: getSupplierUserValue("update_owner"),
|
||||||
CreateStaff: getSupplierUserValue("create_staff"),
|
CreateStaff: getSupplierUserValue("create_staff"),
|
||||||
UpdateStaff: getSupplierUserValue("update_staff"),
|
UpdateStaff: getSupplierUserValue("update_staff"),
|
||||||
UpdateStatus: getSupplierUserValue("update_status"),
|
UpdateStatus: getSupplierUserValue("update_status"),
|
||||||
ResetPassword: getSupplierUserValue("reset_password"),
|
ResetPassword: getSupplierUserValue("reset_password"),
|
||||||
ChangePassword: getSupplierUserValue("change_password"),
|
|
||||||
CheckTokenSupplierUser: getSupplierUserValue("check_token_supplier_user"),
|
CheckTokenSupplierUser: getSupplierUserValue("check_token_supplier_user"),
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,13 +1,14 @@
|
||||||
package subject
|
package subject
|
||||||
|
|
||||||
import "fmt"
|
import (
|
||||||
|
"fmt"
|
||||||
|
)
|
||||||
|
|
||||||
func getWarehouseValue(val string) string {
|
func getWarehouseValue(val string) string {
|
||||||
return fmt.Sprintf("%s.%s", prefixes.Warehouse, val)
|
return fmt.Sprintf("%s.%s", prefixes.Warehouse, val)
|
||||||
}
|
}
|
||||||
|
|
||||||
var Warehouse = struct {
|
var Warehouse = struct {
|
||||||
SyncWarehouseIntoServiceSupplier string
|
|
||||||
CreateWarehouseIntoServiceSupplier string
|
CreateWarehouseIntoServiceSupplier string
|
||||||
UpdateWarehouseIntoServiceSupplier string
|
UpdateWarehouseIntoServiceSupplier string
|
||||||
CreateOutboundRequest string
|
CreateOutboundRequest string
|
||||||
|
@ -16,9 +17,9 @@ var Warehouse = struct {
|
||||||
GetConfiguration string
|
GetConfiguration string
|
||||||
SyncORStatus string
|
SyncORStatus string
|
||||||
WebhookTNC string
|
WebhookTNC string
|
||||||
WebhookShiip string
|
|
||||||
WebhookGlobalCare string
|
WebhookGlobalCare string
|
||||||
WebhookOnPoint string
|
WebhookOnPoint string
|
||||||
|
WebhookViettelFFM string
|
||||||
FindOne string
|
FindOne string
|
||||||
FindByCondition string
|
FindByCondition string
|
||||||
Distinct string
|
Distinct string
|
||||||
|
@ -28,8 +29,12 @@ var Warehouse = struct {
|
||||||
UpdateIsClosedSupplier string
|
UpdateIsClosedSupplier string
|
||||||
GetWarehouses string
|
GetWarehouses string
|
||||||
UpdateORDeliveryStatus string
|
UpdateORDeliveryStatus string
|
||||||
|
UpdateStatusWarehousePendingInactive string
|
||||||
|
UpdateIsSellyMall string
|
||||||
|
UpdateWarehouseConfig string
|
||||||
|
BulkWriteWarehouseConfig string
|
||||||
|
GetListWarehouseConfig string
|
||||||
}{
|
}{
|
||||||
SyncWarehouseIntoServiceSupplier: getWarehouseValue("sync_warehouse_into_service_supplier"),
|
|
||||||
CreateWarehouseIntoServiceSupplier: getWarehouseValue("create_warehouse_into_service_supplier"),
|
CreateWarehouseIntoServiceSupplier: getWarehouseValue("create_warehouse_into_service_supplier"),
|
||||||
UpdateWarehouseIntoServiceSupplier: getWarehouseValue("update_warehouse_into_service_supplier"),
|
UpdateWarehouseIntoServiceSupplier: getWarehouseValue("update_warehouse_into_service_supplier"),
|
||||||
AfterCreateWarehouse: getWarehouseValue("after_create_warehouse"),
|
AfterCreateWarehouse: getWarehouseValue("after_create_warehouse"),
|
||||||
|
@ -40,9 +45,9 @@ var Warehouse = struct {
|
||||||
GetConfiguration: getWarehouseValue("get_configuration"),
|
GetConfiguration: getWarehouseValue("get_configuration"),
|
||||||
SyncORStatus: getWarehouseValue("sync_or_status"),
|
SyncORStatus: getWarehouseValue("sync_or_status"),
|
||||||
WebhookTNC: getWarehouseValue("webhook_tnc"),
|
WebhookTNC: getWarehouseValue("webhook_tnc"),
|
||||||
WebhookShiip: getWarehouseValue("webhook_shiip"),
|
|
||||||
WebhookGlobalCare: getWarehouseValue("webhook_global_care"),
|
WebhookGlobalCare: getWarehouseValue("webhook_global_care"),
|
||||||
WebhookOnPoint: getWarehouseValue("webhook_on_point"),
|
WebhookOnPoint: getWarehouseValue("webhook_on_point"),
|
||||||
|
WebhookViettelFFM: getWarehouseValue("webhook_viettel_ffm"),
|
||||||
FindOne: getWarehouseValue("find_one"),
|
FindOne: getWarehouseValue("find_one"),
|
||||||
FindByCondition: getWarehouseValue("find_all_by_condition"),
|
FindByCondition: getWarehouseValue("find_all_by_condition"),
|
||||||
Distinct: getWarehouseValue("distinct"),
|
Distinct: getWarehouseValue("distinct"),
|
||||||
|
@ -50,4 +55,9 @@ var Warehouse = struct {
|
||||||
UpdateIsClosedSupplier: getWarehouseValue("update_is_closed_supplier"),
|
UpdateIsClosedSupplier: getWarehouseValue("update_is_closed_supplier"),
|
||||||
GetWarehouses: getWarehouseValue("get_warehouses"),
|
GetWarehouses: getWarehouseValue("get_warehouses"),
|
||||||
UpdateORDeliveryStatus: getWarehouseValue("update_or_delivery_status"),
|
UpdateORDeliveryStatus: getWarehouseValue("update_or_delivery_status"),
|
||||||
|
UpdateStatusWarehousePendingInactive: getWarehouseValue("update_status_warehouse_pending_inactive"),
|
||||||
|
UpdateIsSellyMall: getWarehouseValue("update_is_selly_mall"),
|
||||||
|
UpdateWarehouseConfig: getWarehouseValue("update_warehouse_config"),
|
||||||
|
BulkWriteWarehouseConfig: getWarehouseValue("bulk_write_warehouse_config"),
|
||||||
|
GetListWarehouseConfig: getWarehouseValue("get_list_warehouse_config"),
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,13 +0,0 @@
|
||||||
package subject
|
|
||||||
|
|
||||||
import "fmt"
|
|
||||||
|
|
||||||
func getWithdrawValue(val string) string {
|
|
||||||
return fmt.Sprintf("%s.%s", prefixes.Withdraw, val)
|
|
||||||
}
|
|
||||||
|
|
||||||
var Withdraw = struct {
|
|
||||||
GetSupplierCash string
|
|
||||||
}{
|
|
||||||
GetSupplierCash: getWithdrawValue("get_supplier_cash"),
|
|
||||||
}
|
|
Loading…
Reference in New Issue