Compare commits
	
		
			No commits in common. "master" and "move-config-suppliers" have entirely different histories.
		
	
	
		
			master
			...
			move-confi
		
	
		| 
						 | 
				
			
			@ -14,5 +14,4 @@
 | 
			
		|||
# Dependency directories (remove the comment below to include it)
 | 
			
		||||
# vendor/
 | 
			
		||||
 | 
			
		||||
.idea
 | 
			
		||||
*.DS_Store
 | 
			
		||||
.idea
 | 
			
		||||
| 
						 | 
				
			
			@ -1,36 +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"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
// Affiliate ...
 | 
			
		||||
type Affiliate struct{}
 | 
			
		||||
 | 
			
		||||
// GetAffiliate ...
 | 
			
		||||
func GetAffiliate() Affiliate {
 | 
			
		||||
	return Affiliate{}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// GetTransactions ...
 | 
			
		||||
func (w Affiliate) GetTransactions(p model.GetTransactionsRequest) (*model.GetTransactionsResponse, error) {
 | 
			
		||||
	msg, err := natsio.GetServer().Request(subject.Affiliate.GetTransactions, toBytes(p))
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return nil, err
 | 
			
		||||
	}
 | 
			
		||||
	var r struct {
 | 
			
		||||
		Data  *model.GetTransactionsResponse `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,58 +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"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
// Campaign ...
 | 
			
		||||
type Campaign struct{}
 | 
			
		||||
 | 
			
		||||
// GetCampaign ...
 | 
			
		||||
func GetCampaign() Campaign {
 | 
			
		||||
	return Campaign{}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// GetCampaignTransaction ...
 | 
			
		||||
func (c Campaign) GetCampaignTransaction(p model.GetCampaignTransactionsRequest) (*model.ResponseCampaignTransactionAll, error) {
 | 
			
		||||
	msg, err := natsio.GetServer().Request(subject.Campaign.GetListCampaignTransactionAdminInfoByIDs, toBytes(p))
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return nil, err
 | 
			
		||||
	}
 | 
			
		||||
	var r struct {
 | 
			
		||||
		Data  *model.ResponseCampaignTransactionAll `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
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// GetCampaignSellerStatistic ....
 | 
			
		||||
func (c Campaign) GetCampaignSellerStatistic(req model.GetCampaignSellerStatisticBySellerIDs) (*model.ResponseCampaignSellerStatisticList, error) {
 | 
			
		||||
	msg, err := natsio.GetServer().Request(subject.Campaign.GetCampaignSellerStatisticBySellerIDs, toBytes(req))
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return nil, err
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	var r struct {
 | 
			
		||||
		Data  *model.ResponseCampaignSellerStatisticList `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,7 @@ func GetLocation() Location {
 | 
			
		|||
 | 
			
		||||
// GetLocationByCode ...
 | 
			
		||||
func (l Location) GetLocationByCode(payload model.LocationRequestPayload) (*model.ResponseLocationAddress, error) {
 | 
			
		||||
	msg, err := natsio.GetServer().Request(subject.Location.GetLocationByCodeFromLocationService, toBytes(payload))
 | 
			
		||||
	msg, err := natsio.GetServer().Request(subject.Location.GetLocationByCode, toBytes(payload))
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return nil, err
 | 
			
		||||
	}
 | 
			
		||||
| 
						 | 
				
			
			@ -28,7 +28,7 @@ func (l Location) GetLocationByCode(payload model.LocationRequestPayload) (*mode
 | 
			
		|||
		Data  *model.ResponseLocationAddress `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 nil, err
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -38,40 +38,19 @@ func (l Location) GetLocationByCode(payload model.LocationRequestPayload) (*mode
 | 
			
		|||
	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 {
 | 
			
		||||
		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
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// GetProvincesByCodes ...
 | 
			
		||||
// GetProvincesByCodes ... ...
 | 
			
		||||
func (l Location) GetProvincesByCodes(p model.ProvinceRequestPayload) (*model.LocationProvinceResponse, error) {
 | 
			
		||||
	msg, err := natsio.GetServer().Request(subject.Location.GetProvincesByCodesFromLocationService, toBytes(p))
 | 
			
		||||
	msg, err := natsio.GetServer().Request(subject.Location.GetProvincesByCodes, toBytes(p))
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return nil, err
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	var r struct {
 | 
			
		||||
		Data  *model.LocationProvinceResponse `json:"data"`
 | 
			
		||||
		Data  *model.LocationProvinceResponse `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 nil, err
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -83,7 +62,7 @@ func (l Location) GetProvincesByCodes(p model.ProvinceRequestPayload) (*model.Lo
 | 
			
		|||
 | 
			
		||||
// GetDistrictsByCodes ...
 | 
			
		||||
func (l Location) GetDistrictsByCodes(p model.DistrictRequestPayload) (*model.LocationDistrictResponse, error) {
 | 
			
		||||
	msg, err := natsio.GetServer().Request(subject.Location.GetDistrictsByCodesFromLocationService, toBytes(p))
 | 
			
		||||
	msg, err := natsio.GetServer().Request(subject.Location.GetDistrictsByCodes, toBytes(p))
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return nil, err
 | 
			
		||||
	}
 | 
			
		||||
| 
						 | 
				
			
			@ -92,7 +71,7 @@ func (l Location) GetDistrictsByCodes(p model.DistrictRequestPayload) (*model.Lo
 | 
			
		|||
		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
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -105,7 +84,7 @@ func (l Location) GetDistrictsByCodes(p model.DistrictRequestPayload) (*model.Lo
 | 
			
		|||
 | 
			
		||||
// GetWardsByCodes ...
 | 
			
		||||
func (l Location) GetWardsByCodes(p model.WardRequestPayload) (*model.LocationWardResponse, error) {
 | 
			
		||||
	msg, err := natsio.GetServer().Request(subject.Location.GetWardsByCodesFromLocationService, toBytes(p))
 | 
			
		||||
	msg, err := natsio.GetServer().Request(subject.Location.GetWardsByCodes, toBytes(p))
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return nil, err
 | 
			
		||||
	}
 | 
			
		||||
| 
						 | 
				
			
			@ -115,7 +94,7 @@ func (l Location) GetWardsByCodes(p model.WardRequestPayload) (*model.LocationWa
 | 
			
		|||
		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
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -125,211 +104,3 @@ func (l Location) GetWardsByCodes(p model.WardRequestPayload) (*model.LocationWa
 | 
			
		|||
 | 
			
		||||
	return r.Data, nil
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// GetProvinceByCondition ...
 | 
			
		||||
func (l Location) GetProvinceByCondition(p model.RequestCondition) (*model.LocationProvinceDetailResponse, error) {
 | 
			
		||||
	msg, err := natsio.GetServer().Request(subject.Location.GetProvinceByCondition, toBytes(p))
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return nil, err
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	var r struct {
 | 
			
		||||
		Data  *model.LocationProvinceDetailResponse `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
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// GetProvincesByCondition ...
 | 
			
		||||
func (l Location) GetProvincesByCondition(p model.RequestCondition) ([]*model.LocationProvinceDetailResponse, error) {
 | 
			
		||||
	msg, err := natsio.GetServer().Request(subject.Location.GetProvincesByCondition, toBytes(p))
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return nil, err
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	var r struct {
 | 
			
		||||
		Data  []*model.LocationProvinceDetailResponse `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
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// GetDistrictByCondition ...
 | 
			
		||||
func (l Location) GetDistrictByCondition(p model.RequestCondition) (*model.LocationDistrictDetailResponse, error) {
 | 
			
		||||
	msg, err := natsio.GetServer().Request(subject.Location.GetDistrictByCondition, toBytes(p))
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return nil, err
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	var r struct {
 | 
			
		||||
		Data  *model.LocationDistrictDetailResponse `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
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// GetDistrictsByCondition ...
 | 
			
		||||
func (l Location) GetDistrictsByCondition(p model.RequestCondition) ([]*model.LocationDistrictDetailResponse, error) {
 | 
			
		||||
	msg, err := natsio.GetServer().Request(subject.Location.GetDistrictsByCondition, toBytes(p))
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return nil, err
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	var r struct {
 | 
			
		||||
		Data  []*model.LocationDistrictDetailResponse `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
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// GetWardByCondition ...
 | 
			
		||||
func (l Location) GetWardByCondition(p model.RequestCondition) (*model.LocationWardDetailResponse, error) {
 | 
			
		||||
	msg, err := natsio.GetServer().Request(subject.Location.GetWardByCondition, toBytes(p))
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return nil, err
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	var r struct {
 | 
			
		||||
		Data  *model.LocationWardDetailResponse `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
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// GetWardsByCondition ...
 | 
			
		||||
func (l Location) GetWardsByCondition(p model.RequestCondition) ([]*model.LocationWardDetailResponse, error) {
 | 
			
		||||
	msg, err := natsio.GetServer().Request(subject.Location.GetWardsByCondition, toBytes(p))
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return nil, err
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	var r struct {
 | 
			
		||||
		Data  []*model.LocationWardDetailResponse `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
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// CountProvinceByCondition ...
 | 
			
		||||
func (l Location) CountProvinceByCondition(p model.RequestCondition) (int64, error) {
 | 
			
		||||
	msg, err := natsio.GetServer().Request(subject.Location.CountProvinceByCondition, toBytes(p))
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return 0, err
 | 
			
		||||
	}
 | 
			
		||||
	var r struct {
 | 
			
		||||
		Data  int64  `json:"data"`
 | 
			
		||||
		Error string `json:"error"`
 | 
			
		||||
	}
 | 
			
		||||
	if err = json.Unmarshal(msg.Data, &r); err != nil {
 | 
			
		||||
		return 0, err
 | 
			
		||||
	}
 | 
			
		||||
	if r.Error != "" {
 | 
			
		||||
		return 0, errors.New(r.Error)
 | 
			
		||||
	}
 | 
			
		||||
	return r.Data, nil
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// CountDistrictByCondition ...
 | 
			
		||||
func (l Location) CountDistrictByCondition(p model.RequestCondition) (int64, error) {
 | 
			
		||||
	msg, err := natsio.GetServer().Request(subject.Location.CountDistrictByCondition, toBytes(p))
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return 0, err
 | 
			
		||||
	}
 | 
			
		||||
	var r struct {
 | 
			
		||||
		Data  int64  `json:"data"`
 | 
			
		||||
		Error string `json:"error"`
 | 
			
		||||
	}
 | 
			
		||||
	if err = json.Unmarshal(msg.Data, &r); err != nil {
 | 
			
		||||
		return 0, err
 | 
			
		||||
	}
 | 
			
		||||
	if r.Error != "" {
 | 
			
		||||
		return 0, errors.New(r.Error)
 | 
			
		||||
	}
 | 
			
		||||
	return r.Data, nil
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// CountWardByCondition ...
 | 
			
		||||
func (l Location) CountWardByCondition(p model.RequestCondition) (int64, error) {
 | 
			
		||||
	msg, err := natsio.GetServer().Request(subject.Location.CountWardByCondition, toBytes(p))
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return 0, err
 | 
			
		||||
	}
 | 
			
		||||
	var r struct {
 | 
			
		||||
		Data  int64  `json:"data"`
 | 
			
		||||
		Error string `json:"error"`
 | 
			
		||||
	}
 | 
			
		||||
	if err = json.Unmarshal(msg.Data, &r); err != nil {
 | 
			
		||||
		return 0, err
 | 
			
		||||
	}
 | 
			
		||||
	if r.Error != "" {
 | 
			
		||||
		return 0, errors.New(r.Error)
 | 
			
		||||
	}
 | 
			
		||||
	return r.Data, nil
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// DistinctWithField ...
 | 
			
		||||
func (l Location) DistinctWithField(p model.ProvinceDistinctWithField) ([]interface{}, error) {
 | 
			
		||||
	msg, err := natsio.GetServer().Request(subject.Location.ProvinceDistinctWithField, toBytes(p))
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return nil, err
 | 
			
		||||
	}
 | 
			
		||||
	var r struct {
 | 
			
		||||
		Data  []interface{} `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
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -98,43 +98,3 @@ func (o Order) ORNotUpdateStatus(p model.OrderORsNotUpdateStatus) error {
 | 
			
		|||
	}
 | 
			
		||||
	return nil
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// GetSupplierOrders ...
 | 
			
		||||
func (o Order) GetSupplierOrders(p model.OrderSupplierQuery) (*model.SupplierOrderList, error) {
 | 
			
		||||
	msg, err := natsio.GetServer().Request(subject.Order.GetSupplierOrders, toBytes(p))
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return nil, err
 | 
			
		||||
	}
 | 
			
		||||
	var (
 | 
			
		||||
		r struct {
 | 
			
		||||
			Data  model.SupplierOrderList `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
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// GetUserTotalWarningOrder ...
 | 
			
		||||
func (o Order) GetUserTotalWarningOrder(p model.OrderGetTotalWarningPayload) (*model.OrderGetTotalWarningRes, error) {
 | 
			
		||||
	msg, err := natsio.GetServer().Request(subject.Order.GetUserTotalWarningOrders, toBytes(p))
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return nil, err
 | 
			
		||||
	}
 | 
			
		||||
	var r struct {
 | 
			
		||||
		Data  model.OrderGetTotalWarningRes `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,86 +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"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
// Product ...
 | 
			
		||||
type Product struct{}
 | 
			
		||||
 | 
			
		||||
// GetProduct ...
 | 
			
		||||
func GetProduct() Product {
 | 
			
		||||
	return Product{}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (c Product) ApplyRequest(p model.ProductApplyRequestPayload) error {
 | 
			
		||||
	msg, err := natsio.GetServer().Request(subject.Product.ApplyRequest, 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) 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 {
 | 
			
		||||
	msg, err := natsio.GetServer().Request(subject.Product.ProcessApplyRequest, 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) 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
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			@ -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"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
type Promotion struct{}
 | 
			
		||||
 | 
			
		||||
func GetPromotion() Promotion {
 | 
			
		||||
	return Promotion{}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (s Promotion) GenerateVoucherPromotion(p model.GenerateVoucherPromotionRequest) (*model.ResponseGenerateVoucherPromotion, error) {
 | 
			
		||||
	msg, err := natsio.GetServer().Request(subject.Promotion.GenerateVoucherPromotion, toBytes(p))
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return nil, err
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	var r struct {
 | 
			
		||||
		Data  *model.ResponseGenerateVoucherPromotion `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,35 +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"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
// Queue ...
 | 
			
		||||
type Queue struct{}
 | 
			
		||||
 | 
			
		||||
// GetQueue ...
 | 
			
		||||
func GetQueue() Queue {
 | 
			
		||||
	return Queue{}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (c Queue) ScheduleTask(p model.QueueScheduleTaskRequest) error {
 | 
			
		||||
	msg, err := natsio.GetServer().Request(subject.Queue.ScheduleTask, 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
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			@ -1,41 +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"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
// Segment ...
 | 
			
		||||
type Segment struct{}
 | 
			
		||||
 | 
			
		||||
// GetSegment ...
 | 
			
		||||
func GetSegment() Segment {
 | 
			
		||||
	return Segment{}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// GetListSegmentInfoByIds ...
 | 
			
		||||
func (s Segment) GetListSegmentInfoByIds(p model.GetListSegmentRequest) (*model.ResponseListSegmentInfo, error) {
 | 
			
		||||
	msg, err := natsio.GetServer().Request(subject.Segment.GetListSegmentInfo, toBytes(p))
 | 
			
		||||
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return nil, err
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	var r struct {
 | 
			
		||||
		Data  *model.ResponseListSegmentInfo `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
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			@ -9,12 +9,15 @@ import (
 | 
			
		|||
	"git.selly.red/Selly-Modules/natsio/subject"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
// Seller ...
 | 
			
		||||
type Seller struct{}
 | 
			
		||||
 | 
			
		||||
// GetSeller ...
 | 
			
		||||
func GetSeller() Seller {
 | 
			
		||||
	return Seller{}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// GetSellerInfoByID ...
 | 
			
		||||
func (s Seller) GetSellerInfoByID(p model.GetSellerByIDRequest) (*model.ResponseSellerInfo, error) {
 | 
			
		||||
	msg, err := natsio.GetServer().Request(subject.Seller.GetSellerInfoByID, toBytes(p))
 | 
			
		||||
	if err != nil {
 | 
			
		||||
| 
						 | 
				
			
			@ -37,6 +40,7 @@ func (s Seller) GetSellerInfoByID(p model.GetSellerByIDRequest) (*model.Response
 | 
			
		|||
	return r.Data, nil
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// GetListSellerInfoByIDs ...
 | 
			
		||||
func (s Seller) GetListSellerInfoByIDs(p model.GetListSellerByIDsRequest) (*model.ResponseListSellerInfo, error) {
 | 
			
		||||
	msg, err := natsio.GetServer().Request(subject.Seller.GetListSellerInfoByIDs, toBytes(p))
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -60,6 +64,7 @@ func (s Seller) GetListSellerInfoByIDs(p model.GetListSellerByIDsRequest) (*mode
 | 
			
		|||
	return r.Data, nil
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// GetListSellerInfoSupportChatByIDs ...
 | 
			
		||||
func (s Seller) GetListSellerInfoSupportChatByIDs(p model.GetListSellerSupportChatByIDsRequest) (*model.ResponseListSellerInfoSupportChat, error) {
 | 
			
		||||
	msg, err := natsio.GetServer().Request(subject.SupportChat.GetListSellerInfoSupportChatByIDs, toBytes(p))
 | 
			
		||||
	if err != nil {
 | 
			
		||||
| 
						 | 
				
			
			@ -74,71 +79,6 @@ func (s Seller) GetListSellerInfoSupportChatByIDs(p model.GetListSellerSupportCh
 | 
			
		|||
	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 Seller) CheckAndInsertCashflows(p model.CheckAndInsertCashflowsRequest) (*model.ResponseCheckAndInsertCashflows, error) {
 | 
			
		||||
	msg, err := natsio.GetServer().Request(subject.Seller.CheckAndInsertCashflows, toBytes(p))
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return nil, err
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	var r struct {
 | 
			
		||||
		Data  *model.ResponseCheckAndInsertCashflows `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 Seller) UpdateSellerAffiliateStatistic(p model.UpdateSellerAffiliateStatisticRequest) (*model.ResponseUpdateSellerAffiliateStatistic, error) {
 | 
			
		||||
	msg, err := natsio.GetServer().Request(subject.Seller.UpdateSellerAffiliateStatistic, toBytes(p))
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return nil, err
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	var r struct {
 | 
			
		||||
		Data  *model.ResponseUpdateSellerAffiliateStatistic `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 Seller) UpdateSellerSavingCampaignStatistic(p model.UpdateSellerSavingCampaignStatisticRequest) (*model.ResponseUpdateSellerSavingCampaignStatistic, error) {
 | 
			
		||||
	msg, err := natsio.GetServer().Request(subject.Seller.UpdateSellerSavingCampaignStatistic, toBytes(p))
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return nil, err
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	var r struct {
 | 
			
		||||
		Data  *model.ResponseUpdateSellerSavingCampaignStatistic `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)
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1,65 +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"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
// SocialPost ...
 | 
			
		||||
type SocialPost struct{}
 | 
			
		||||
 | 
			
		||||
// GetSocialPost ...
 | 
			
		||||
func GetSocialPost() SocialPost {
 | 
			
		||||
	return SocialPost{}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// GetListSocialPostAppInfoByIDs ...
 | 
			
		||||
func (s SocialPost) GetListSocialPostAppInfoByIDs(p model.GetListSocialPostAppByIDsRequest) (*model.ResponseListSocialPostAppInfo, error) {
 | 
			
		||||
	msg, err := natsio.GetServer().Request(subject.SocialPost.GetListSocialPostAppInfoByIDs, toBytes(p))
 | 
			
		||||
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return nil, err
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	var r struct {
 | 
			
		||||
		Data  *model.ResponseListSocialPostAppInfo `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
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// GetBriefDetailSocialPostAdminByIDsRequest ...
 | 
			
		||||
func (s SocialPost) GetBriefDetailSocialPostAdminByIDsRequest(p model.GetBriefInfoSocialPostAdminByIDsRequest) (*model.ResponseListSocialPostAdminInfo, error) {
 | 
			
		||||
	msg, err := natsio.GetServer().Request(subject.SocialPost.GetBriefInfoSocialPostAdminByIDs, toBytes(p))
 | 
			
		||||
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return nil, err
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	var r struct {
 | 
			
		||||
		Data  *model.ResponseListSocialPostAdminInfo `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,27 +0,0 @@
 | 
			
		|||
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
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			@ -1,41 +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"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
// Staff ...
 | 
			
		||||
type Staff struct{}
 | 
			
		||||
 | 
			
		||||
func GetStaff() Staff {
 | 
			
		||||
	return Staff{}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// GetListStaffInfoByIds ...
 | 
			
		||||
func (s Staff) GetListStaffInfoByIds(p model.GetListStaffRequest) (*model.ResponseListStaffInfo, error) {
 | 
			
		||||
	msg, err := natsio.GetServer().Request(subject.Staff.GetListStaffInfo, toBytes(p))
 | 
			
		||||
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return nil, err
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	var r struct {
 | 
			
		||||
		Data  *model.ResponseListStaffInfo `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
 | 
			
		||||
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			@ -38,28 +38,6 @@ func (s Supplier) GetListSupplierInfo(p model.GetSupplierRequest) ([]*model.Resp
 | 
			
		|||
	return r.Data, nil
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// GetDetailSupplierInfo ...
 | 
			
		||||
func (s Supplier) GetDetailSupplierInfo(p model.GetDetailSupplierRequest) (*model.ResponseSupplierInfo, error) {
 | 
			
		||||
	msg, err := natsio.GetServer().Request(subject.Supplier.GetDetailSupplierInfo, toBytes(p))
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return nil, err
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	var r struct {
 | 
			
		||||
		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 {
 | 
			
		||||
| 
						 | 
				
			
			@ -102,27 +80,6 @@ func (s Supplier) FindAll(supplierID model.SupplierRequestPayload) (*model.Suppl
 | 
			
		|||
	return r.Data, nil
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (s Supplier) FindAllOld(req model.SupplierFindAllReq) (*model.SupplierAll, error) {
 | 
			
		||||
	msg, err := natsio.GetServer().Request(subject.Supplier.FindAllOld, toBytes(req))
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return nil, err
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	var r struct {
 | 
			
		||||
		Data  *model.SupplierAll `json:"data"`
 | 
			
		||||
		Error string             `json:"error"`
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	if err = json.Unmarshal(msg.Data, &r); err != nil {
 | 
			
		||||
		return nil, err
 | 
			
		||||
	}
 | 
			
		||||
	if r.Error != "" {
 | 
			
		||||
		return nil, errors.New(r.Error)
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	return r.Data, nil
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (s Supplier) GetBankInfoByID(supplierID model.SupplierRequestPayload) (*model.SupplierAll, error) {
 | 
			
		||||
	msg, err := natsio.GetServer().Request(subject.Supplier.FindAll, toBytes(supplierID))
 | 
			
		||||
	if err != nil {
 | 
			
		||||
| 
						 | 
				
			
			@ -144,27 +101,6 @@ func (s Supplier) GetBankInfoByID(supplierID model.SupplierRequestPayload) (*mod
 | 
			
		|||
	return r.Data, nil
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (s Supplier) Count(req model.SupplierCountReq) (*model.SupplierCountRes, error) {
 | 
			
		||||
	msg, err := natsio.GetServer().Request(subject.Supplier.Count, toBytes(req))
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return nil, err
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	var r struct {
 | 
			
		||||
		Data  *model.SupplierCountRes `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
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// CreateWarehouseIntoServiceSupplier ...
 | 
			
		||||
func (s Supplier) CreateWarehouseIntoServiceSupplier(p model.CreateSupplierWarehousePayload) error {
 | 
			
		||||
	msg, err := natsio.GetServer().Request(subject.Warehouse.CreateWarehouseIntoServiceSupplier, toBytes(p))
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1,58 +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"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
// SupplierRole ...
 | 
			
		||||
type SupplierRole struct{}
 | 
			
		||||
 | 
			
		||||
// GetSupplierRole ...
 | 
			
		||||
func GetSupplierRole() SupplierRole {
 | 
			
		||||
	return SupplierRole{}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (s SupplierRole) CreateRole(p model.CreateRoleRequest) (*model.CreateRoleResponse, error) {
 | 
			
		||||
	msg, err := natsio.GetServer().Request(subject.SupplierUser.CreateOwner, toBytes(p))
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return nil, err
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	var r struct {
 | 
			
		||||
		Data  *model.CreateRoleResponse `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) UpdateRole(p model.UpdateRoleRequest) error {
 | 
			
		||||
	msg, err := natsio.GetServer().Request(subject.SupplierRole.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
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			@ -1,160 +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"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
// SupplierUser ...
 | 
			
		||||
type SupplierUser struct{}
 | 
			
		||||
 | 
			
		||||
// GetSupplierUser ...
 | 
			
		||||
func GetSupplierUser() SupplierUser {
 | 
			
		||||
	return SupplierUser{}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (s SupplierUser) CreateSupplierOwnerUsers(p model.CreateOwnerRequest) (*model.CreateOwnerResponse, error) {
 | 
			
		||||
	msg, err := natsio.GetServer().Request(subject.SupplierUser.CreateOwner, toBytes(p))
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return nil, err
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	var r struct {
 | 
			
		||||
		Data  *model.CreateOwnerResponse `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) UpdateSupplierOwnerUsers(p model.UpdateOwnerRequest) error {
 | 
			
		||||
	msg, err := natsio.GetServer().Request(subject.SupplierUser.UpdateOwner, 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) CreateSupplierStaffUsers(p model.CreateStaffRequest) (*model.CreateStaffResponse, error) {
 | 
			
		||||
	msg, err := natsio.GetServer().Request(subject.SupplierUser.CreateStaff, toBytes(p))
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return nil, err
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	var r struct {
 | 
			
		||||
		Data  *model.CreateStaffResponse `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) UpdateSupplierStaffUsers(p model.UpdateStaffRequest) error {
 | 
			
		||||
	msg, err := natsio.GetServer().Request(subject.SupplierUser.UpdateStaff, 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) UpdateStatus(p model.UpdateStatusRequest) error {
 | 
			
		||||
	msg, err := natsio.GetServer().Request(subject.SupplierUser.UpdateStaff, 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) ResetPassword(p model.ResetPasswordRequest) (*model.ResetPasswordResponse, error) {
 | 
			
		||||
	msg, err := natsio.GetServer().Request(subject.SupplierUser.ResetPassword, toBytes(p))
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return nil, err
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	var r struct {
 | 
			
		||||
		Data  *model.ResetPasswordResponse `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
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// CheckTokenSupplierUser ...
 | 
			
		||||
func (s SupplierUser) CheckTokenSupplierUser(p model.CheckTokenSupplierUserPayload) (*model.ResponseCheckTokenSupplierUser, error) {
 | 
			
		||||
	msg, err := natsio.GetServer().Request(subject.SupplierUser.CheckTokenSupplierUser, toBytes(p))
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return nil, err
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	var r struct {
 | 
			
		||||
		Error string                                `json:"error"`
 | 
			
		||||
		Data  *model.ResponseCheckTokenSupplierUser `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
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			@ -3,7 +3,6 @@ package client
 | 
			
		|||
import (
 | 
			
		||||
	"encoding/json"
 | 
			
		||||
	"errors"
 | 
			
		||||
	"fmt"
 | 
			
		||||
 | 
			
		||||
	"git.selly.red/Selly-Modules/natsio"
 | 
			
		||||
	"git.selly.red/Selly-Modules/natsio/model"
 | 
			
		||||
| 
						 | 
				
			
			@ -146,25 +145,6 @@ func (w Warehouse) GetConfigByWarehouseID(warehouseID string) (*model.WarehouseC
 | 
			
		|||
	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 ...
 | 
			
		||||
func (w Warehouse) GetWarehouses(p model.GetWarehousesRequest) (*model.GetWarehousesResponse, error) {
 | 
			
		||||
	msg, err := natsio.GetServer().Request(subject.Warehouse.GetWarehouses, toBytes(p))
 | 
			
		||||
| 
						 | 
				
			
			@ -183,61 +163,3 @@ func (w Warehouse) GetWarehouses(p model.GetWarehousesRequest) (*model.GetWareho
 | 
			
		|||
	}
 | 
			
		||||
	return r.Data, nil
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// UpdateORDeliveryStatus ...
 | 
			
		||||
func (w Warehouse) UpdateORDeliveryStatus(p model.WarehouseORUpdateDeliveryStatus) error {
 | 
			
		||||
	msg, err := natsio.GetServer().Request(subject.Warehouse.UpdateORDeliveryStatus, 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_or_delivery_status %v", err)
 | 
			
		||||
	}
 | 
			
		||||
	if r.Error != "" {
 | 
			
		||||
		return errors.New(r.Error)
 | 
			
		||||
	}
 | 
			
		||||
	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,7 +3,6 @@ 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"
 | 
			
		||||
| 
						 | 
				
			
			@ -84,39 +83,3 @@ func (w Warehouse) FindByCondition(p model.FindWithCondition) ([]*model.Warehous
 | 
			
		|||
	}
 | 
			
		||||
	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
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -2,17 +2,11 @@ package jsconsumer
 | 
			
		|||
 | 
			
		||||
// Selly ...
 | 
			
		||||
var Selly = struct {
 | 
			
		||||
	PushNotification                    string
 | 
			
		||||
	UpdateSellerAffiliateStatistic      string
 | 
			
		||||
	CheckAnDInsertCashflowBySeller      string
 | 
			
		||||
	SubscriberTopic                     string
 | 
			
		||||
	UpdateSellerSavingCampaignStatistic string
 | 
			
		||||
	GenerateVoucherPromotion            string
 | 
			
		||||
	PushNotification               string
 | 
			
		||||
	UpdateSellerAffiliateStatistic string
 | 
			
		||||
	CheckAnDInsertCashflowBySeller string
 | 
			
		||||
}{
 | 
			
		||||
	PushNotification:                    "PULL_PUSH_NOTIFICATION",
 | 
			
		||||
	UpdateSellerAffiliateStatistic:      "PULL_UPDATE_SELLER_AFFILIATE_STATISTIC",
 | 
			
		||||
	CheckAnDInsertCashflowBySeller:      "PULL_CHECK_AND_INSERT_CASHFLOW_BY_SELLER",
 | 
			
		||||
	SubscriberTopic:                     "PULL_SUBSCRIBER_TOPIC",
 | 
			
		||||
	UpdateSellerSavingCampaignStatistic: "PULL_UPDATE_SELLER_SAVING_CAMPAIGN_STATISTIC",
 | 
			
		||||
	GenerateVoucherPromotion:            "PULL_GENERATE_VOUCHER_PROMOTION",
 | 
			
		||||
	PushNotification:               "PULL_PUSH_NOTIFICATION",
 | 
			
		||||
	UpdateSellerAffiliateStatistic: "PULL_UPDATE_SELLER_AFFILIATE_STATISTIC",
 | 
			
		||||
	CheckAnDInsertCashflowBySeller: "PULL_CHECK_AND_INSERT_CASHFLOW_BY_SELLER",
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1,7 +1,5 @@
 | 
			
		|||
package jsmodel
 | 
			
		||||
 | 
			
		||||
import "go.mongodb.org/mongo-driver/bson/primitive"
 | 
			
		||||
 | 
			
		||||
// PushNotification ...
 | 
			
		||||
type PushNotification struct {
 | 
			
		||||
	User        string              `json:"user"`
 | 
			
		||||
| 
						 | 
				
			
			@ -14,11 +12,8 @@ type PushNotification struct {
 | 
			
		|||
 | 
			
		||||
// NotificationOptions ...
 | 
			
		||||
type NotificationOptions struct {
 | 
			
		||||
	Title                      string `json:"title"`
 | 
			
		||||
	Content                    string `json:"content"`
 | 
			
		||||
	CampaignID                 string `json:"campaignId,omitempty"`
 | 
			
		||||
	SellerSavingCampaignID     string `json:"sellerSavingCampaignId,omitempty"`
 | 
			
		||||
	SellerSavingCampaignStatus string `json:"sellerSavingCampaignStatus,omitempty"`
 | 
			
		||||
	Title   string `json:"title"`
 | 
			
		||||
	Content string `json:"content"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// PayloadUpdateSellerAffiliateStatistic ...
 | 
			
		||||
| 
						 | 
				
			
			@ -62,49 +57,4 @@ type CashFlowOptions struct {
 | 
			
		|||
	AffiliateTransactionCode string `json:"affiliateTransactionCode,omitempty"`
 | 
			
		||||
	AffiliateCampaignID      string `json:"affiliateCampaignId,omitempty"`
 | 
			
		||||
	AffiliateCampaignName    string `json:"affiliateCampaignName,omitempty"`
 | 
			
		||||
 | 
			
		||||
	// Campaign
 | 
			
		||||
	CampaignID   string `json:"campaignId,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"`
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -11,17 +11,11 @@ func getSellyValue(val string) string {
 | 
			
		|||
 | 
			
		||||
// Selly ...
 | 
			
		||||
var Selly = struct {
 | 
			
		||||
	PushNotification                    string
 | 
			
		||||
	UpdateSellerAffiliateStatistic      string
 | 
			
		||||
	CheckAnDInsertCashflowBySeller      string
 | 
			
		||||
	SubscriberTopic                     string
 | 
			
		||||
	UpdateSellerSavingCampaignStatistic string
 | 
			
		||||
	GenerateVoucherPromotion            string
 | 
			
		||||
	PushNotification               string
 | 
			
		||||
	UpdateSellerAffiliateStatistic string
 | 
			
		||||
	CheckAnDInsertCashflowBySeller string
 | 
			
		||||
}{
 | 
			
		||||
	PushNotification:                    getSellyValue("push_notifications"),
 | 
			
		||||
	UpdateSellerAffiliateStatistic:      getSellyValue("update_seller_affiliate_statistic"),
 | 
			
		||||
	CheckAnDInsertCashflowBySeller:      getSellyValue("check_and_insert_cashflow_statistic"),
 | 
			
		||||
	SubscriberTopic:                     getSellyValue("subscriber_topic"),
 | 
			
		||||
	UpdateSellerSavingCampaignStatistic: getSellyValue("update_seller_saving_campaign_statistic"),
 | 
			
		||||
	GenerateVoucherPromotion:            getSellyValue("generate_voucher_promotion"),
 | 
			
		||||
	PushNotification:               getSellyValue("push_notifications"),
 | 
			
		||||
	UpdateSellerAffiliateStatistic: getSellyValue("update_seller_affiliate_statistic"),
 | 
			
		||||
	CheckAnDInsertCashflowBySeller: getSellyValue("check_and_insert_cashflow_statistic"),
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -22,17 +22,6 @@ func (e JSONEncoder) Subscribe(subject string, cb nats.Handler) (*nats.Subscript
 | 
			
		|||
	return sub, err
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// QueueSubscribe ...
 | 
			
		||||
func (e JSONEncoder) QueueSubscribe(subject, queue string, cb nats.Handler) (*nats.Subscription, error) {
 | 
			
		||||
	sub, err := e.encConn.QueueSubscribe(subject, queue, cb)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		log.Printf("natsio.JSONEncoder.QueueSubscribe err: %v\n", err)
 | 
			
		||||
	} else {
 | 
			
		||||
		log.Printf("natsio.JSONEncoder.QueueSubscribe - subscribed to subject %s successfully\n", subject)
 | 
			
		||||
	}
 | 
			
		||||
	return sub, err
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Publish ...
 | 
			
		||||
func (e JSONEncoder) Publish(reply string, data interface{}) error {
 | 
			
		||||
	return e.encConn.Publish(reply, data)
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1,16 +0,0 @@
 | 
			
		|||
package model
 | 
			
		||||
 | 
			
		||||
import "time"
 | 
			
		||||
 | 
			
		||||
// GetTransactionsRequest ...
 | 
			
		||||
type GetTransactionsRequest struct {
 | 
			
		||||
	Page     int64     `json:"page"`
 | 
			
		||||
	Limit    int64     `json:"limit"`
 | 
			
		||||
	Keyword  string    `json:"keyword"`
 | 
			
		||||
	Status   string    `json:"status"`
 | 
			
		||||
	Source   string    `json:"source"`
 | 
			
		||||
	Campaign string    `json:"campaign"`
 | 
			
		||||
	Seller   string    `json:"seller"`
 | 
			
		||||
	FromAt   time.Time `json:"fromAt"`
 | 
			
		||||
	ToAt     time.Time `json:"toAt"`
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			@ -1,38 +0,0 @@
 | 
			
		|||
package model
 | 
			
		||||
 | 
			
		||||
// GetTransactionsResponse ...
 | 
			
		||||
type GetTransactionsResponse struct {
 | 
			
		||||
	Total int64             `json:"total"`
 | 
			
		||||
	Limit int64             `json:"limit"`
 | 
			
		||||
	List  []TransactionInfo `json:"list"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// TransactionInfo ...
 | 
			
		||||
type TransactionInfo struct {
 | 
			
		||||
	ID                       string                     `json:"_id"`
 | 
			
		||||
	Code                     string                     `json:"code"`
 | 
			
		||||
	Campaign                 ResponseCampaignShort      `json:"campaign"`
 | 
			
		||||
	Seller                   ResponseSellerInfo         `json:"seller"`
 | 
			
		||||
	Source                   string                     `json:"source"`
 | 
			
		||||
	Commission               ResponseCampaignCommission `json:"commission"`
 | 
			
		||||
	EstimateSellerCommission float64                    `json:"estimateSellerCommission"`
 | 
			
		||||
	TransactionTime          string                     `json:"transactionTime"`
 | 
			
		||||
	Status                   string                     `json:"status"`
 | 
			
		||||
	RejectedReason           string                     `json:"rejectedReason"`
 | 
			
		||||
	EstimateCashbackAt       string                     `json:"estimateCashbackAt"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// ResponseCampaignCommission ...
 | 
			
		||||
type ResponseCampaignCommission struct {
 | 
			
		||||
	Real          float64 `json:"real"`
 | 
			
		||||
	SellerPercent float64 `json:"sellerPercent"`
 | 
			
		||||
	Selly         float64 `json:"selly"`
 | 
			
		||||
	Seller        float64 `json:"seller"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// ResponseCampaignShort ...
 | 
			
		||||
type ResponseCampaignShort struct {
 | 
			
		||||
	ID   string     `json:"_id"`
 | 
			
		||||
	Name string     `json:"name"`
 | 
			
		||||
	Logo *FilePhoto `json:"logo"`
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			@ -1,22 +0,0 @@
 | 
			
		|||
package model
 | 
			
		||||
 | 
			
		||||
import (
 | 
			
		||||
	"go.mongodb.org/mongo-driver/bson/primitive"
 | 
			
		||||
	"time"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
// GetCampaignTransactionsRequest ...
 | 
			
		||||
type GetCampaignTransactionsRequest struct {
 | 
			
		||||
	Campaign string    `json:"campaign"`
 | 
			
		||||
	Keyword  string    `json:"keyword"`
 | 
			
		||||
	Status   string    `json:"status"`
 | 
			
		||||
	FromAt   time.Time `json:"fromAt"`
 | 
			
		||||
	ToAt     time.Time `json:"toAt"`
 | 
			
		||||
	Page     int64     `json:"page"`
 | 
			
		||||
	Limit    int64     `json:"limit"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// GetCampaignSellerStatisticBySellerIDs ...
 | 
			
		||||
type GetCampaignSellerStatisticBySellerIDs struct {
 | 
			
		||||
	SellerIDs []primitive.ObjectID
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			@ -1,88 +0,0 @@
 | 
			
		|||
package model
 | 
			
		||||
 | 
			
		||||
import "go.mongodb.org/mongo-driver/bson/primitive"
 | 
			
		||||
 | 
			
		||||
// ResponseCampaignTransactionAll ...
 | 
			
		||||
type ResponseCampaignTransactionAll struct {
 | 
			
		||||
	List  []ResponseNatsCampaignTransaction `json:"list"`
 | 
			
		||||
	Total int64                             `json:"total"`
 | 
			
		||||
	Limit int64                             `json:"limit"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// ResponseNatsCampaignTransaction ...
 | 
			
		||||
type ResponseNatsCampaignTransaction struct {
 | 
			
		||||
	ID               string                                       `json:"_id"`
 | 
			
		||||
	Cash             float64                                      `json:"cash"`
 | 
			
		||||
	Campaign         ResponseCampaignShortInfo                    `json:"campaign"`
 | 
			
		||||
	Options          ResponseCampaignTransactionOptions           `json:"options"`
 | 
			
		||||
	Seller           primitive.ObjectID                           `json:"seller"`
 | 
			
		||||
	Type             string                                       `json:"type"`
 | 
			
		||||
	Status           string                                       `json:"status"`
 | 
			
		||||
	RejectedReason   string                                       `json:"rejectedReason"`
 | 
			
		||||
	CreatedAt        string                                       `json:"createdAt"`
 | 
			
		||||
	UpdatedAt        string                                       `json:"updatedAt"`
 | 
			
		||||
	Item             *ResponseCampaignItemShortInfo               `json:"item"`
 | 
			
		||||
	ApprovedBy       primitive.ObjectID                           `json:"approvedBy,omitempty"`
 | 
			
		||||
	RejectedBy       primitive.ObjectID                           `json:"rejectedBy,omitempty"`
 | 
			
		||||
	ApprovedAt       string                                       `json:"approvedAt,omitempty"`
 | 
			
		||||
	RejectedAt       string                                       `json:"rejectedAt,omitempty"`
 | 
			
		||||
	CompletedAt      string                                       `json:"completedAt,omitempty"`
 | 
			
		||||
	RejectReason     string                                       `json:"rejectReason,omitempty"`
 | 
			
		||||
	AdminConfirmData *ResponseCampaignTransactionAdminConfirmData `json:"adminConfirmData,omitempty"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// ResponseCampaignShortInfo ...
 | 
			
		||||
type ResponseCampaignShortInfo struct {
 | 
			
		||||
	ID     string `json:"_id"`
 | 
			
		||||
	Name   string `json:"name"`
 | 
			
		||||
	Status string `json:"status"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// ResponseCampaignItemShortInfo ...
 | 
			
		||||
type ResponseCampaignItemShortInfo struct {
 | 
			
		||||
	ID     string `json:"_id"`
 | 
			
		||||
	Name   string `json:"name"`
 | 
			
		||||
	Status string `json:"status"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// ResponseCampaignTransactionOptions ...
 | 
			
		||||
type ResponseCampaignTransactionOptions struct {
 | 
			
		||||
	Link           string `json:"link"`
 | 
			
		||||
	SocialChannel  string `json:"socialChannel"`
 | 
			
		||||
	Milestone      int64  `json:"milestone"`
 | 
			
		||||
	MilestoneTitle string `json:"milestoneTitle"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// ResponseCampaignTransactionAdminConfirmData ...
 | 
			
		||||
type ResponseCampaignTransactionAdminConfirmData struct {
 | 
			
		||||
	FriendPublicTotal int64 `json:"friendPublicTotal"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// ResponseCampaignSellerStatisticList ...
 | 
			
		||||
type ResponseCampaignSellerStatisticList struct {
 | 
			
		||||
	List []ResponseCampaignSellerStatistic `json:"list"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// ResponseCampaignSellerStatistic ...
 | 
			
		||||
type ResponseCampaignSellerStatistic struct {
 | 
			
		||||
	SellerID  primitive.ObjectID      `json:"sellerId"`
 | 
			
		||||
	Statistic CampaignSellerStatistic `json:"Statistic"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// CampaignSellerStatistic ...
 | 
			
		||||
type CampaignSellerStatistic struct {
 | 
			
		||||
	TotalNotRejected     int64   `bson:"totalNotRejected" json:"totalNotRejected"`
 | 
			
		||||
	CashTotalNotRejected float64 `bson:"cashTotalNotRejected" json:"cashTotalNotRejected"`
 | 
			
		||||
 | 
			
		||||
	TotalCompleted     int64   `bson:"totalCompleted" json:"totalCompleted"`
 | 
			
		||||
	CashTotalCompleted float64 `bson:"cashTotalCompleted" json:"cashTotalCompleted"`
 | 
			
		||||
 | 
			
		||||
	TotalPending     int64   `bson:"totalPending" json:"totalPending"`
 | 
			
		||||
	CashTotalPending float64 `bson:"cashTotalPending" json:"cashTotalPending"`
 | 
			
		||||
 | 
			
		||||
	TotalApproved     int64   `bson:"totalApproved" json:"totalApproved"`
 | 
			
		||||
	CashTotalApproved float64 `bson:"cashTotalApproved" json:"cashTotalApproved"`
 | 
			
		||||
 | 
			
		||||
	TotalRejected     int64   `bson:"totalRejected" json:"totalRejected"`
 | 
			
		||||
	CashTotalRejected float64 `bson:"cashTotalRejected" json:"cashTotalRejected"`
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			@ -20,37 +20,3 @@ type ActionBy struct {
 | 
			
		|||
	ID   string `json:"id"`
 | 
			
		||||
	Name string `json:"name"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// RequestCondition ...
 | 
			
		||||
type RequestCondition struct {
 | 
			
		||||
	Code         int   `json:"code"`
 | 
			
		||||
	Codes        []int `json:"codes"`
 | 
			
		||||
	DistrictCode int   `json:"districtCode"`
 | 
			
		||||
	ProvinceCode int   `json:"provinceCode"`
 | 
			
		||||
 | 
			
		||||
	Slug    string `json:"slug"`
 | 
			
		||||
	OldSlug string `json:"oldSlug"`
 | 
			
		||||
 | 
			
		||||
	Slugs    []string `json:"slugs"`
 | 
			
		||||
	OldSlugs []string `json:"oldSlugs"`
 | 
			
		||||
 | 
			
		||||
	DistrictSlug string `json:"districtSlug"`
 | 
			
		||||
	ProvinceSlug string `json:"provinceSlug"`
 | 
			
		||||
 | 
			
		||||
	Keyword string `json:"keyword"`
 | 
			
		||||
	Region  string `json:"region"`
 | 
			
		||||
 | 
			
		||||
	Page  int64 `json:"page"`
 | 
			
		||||
	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,9 +5,6 @@ type CommunicationRequestHttp struct {
 | 
			
		|||
	ResponseImmediately bool        `json:"responseImmediately"`
 | 
			
		||||
	Authentication      string      `json:"authentication"`
 | 
			
		||||
	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 ...
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1,56 +0,0 @@
 | 
			
		|||
package model
 | 
			
		||||
 | 
			
		||||
import "go.mongodb.org/mongo-driver/bson/primitive"
 | 
			
		||||
 | 
			
		||||
// FilePhoto ...
 | 
			
		||||
type FilePhoto struct {
 | 
			
		||||
	ID         string          `json:"_id"`
 | 
			
		||||
	Name       string          `json:"name,omitempty"`
 | 
			
		||||
	Dimensions *FileDimensions `json:"dimensions"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// FileSize ...
 | 
			
		||||
type FileSize struct {
 | 
			
		||||
	Width  int    `json:"width"`
 | 
			
		||||
	Height int    `json:"height"`
 | 
			
		||||
	URL    string `json:"url"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// FileDimensions ...
 | 
			
		||||
type FileDimensions struct {
 | 
			
		||||
	Small  *FileSize `json:"sm"`
 | 
			
		||||
	Medium *FileSize `json:"md"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// ListPhoto ...
 | 
			
		||||
type ListPhoto []*FilePhoto
 | 
			
		||||
 | 
			
		||||
// Video ...
 | 
			
		||||
type Video struct {
 | 
			
		||||
	ID             primitive.ObjectID   `json:"_id"`
 | 
			
		||||
	Name           string               `json:"name"`
 | 
			
		||||
	Dimensions     *FileVideoDimensions `json:"dimensions"`
 | 
			
		||||
	VideoExtension string               `json:"ext"`
 | 
			
		||||
	Thumbnail      *FilePhoto           `json:"thumbnail"`
 | 
			
		||||
	Status         string               `json:"status"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// FileVideoDimensions ...
 | 
			
		||||
type FileVideoDimensions struct {
 | 
			
		||||
	Dimension480p     *FileVideoSize `json:"size480p"`
 | 
			
		||||
	Dimension720p     *FileVideoSize `json:"size720p"`
 | 
			
		||||
	Dimension1080p    *FileVideoSize `json:"size1080p"`
 | 
			
		||||
	DimensionOriginal *FileVideoSize `json:"original"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// FileVideoSize ...
 | 
			
		||||
type FileVideoSize struct {
 | 
			
		||||
	Name   string `json:"name"`
 | 
			
		||||
	Width  int    `json:"width"`
 | 
			
		||||
	Height int    `json:"height"`
 | 
			
		||||
	Size   string `json:"size"`
 | 
			
		||||
	URL    string `json:"url"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// ListVideo ...
 | 
			
		||||
type ListVideo []Video
 | 
			
		||||
| 
						 | 
				
			
			@ -1,66 +1,23 @@
 | 
			
		|||
package model
 | 
			
		||||
 | 
			
		||||
// LocationRequestPayload ...
 | 
			
		||||
type (
 | 
			
		||||
	// LocationRequestPayload ...
 | 
			
		||||
	LocationRequestPayload struct {
 | 
			
		||||
		Province int `json:"province"`
 | 
			
		||||
		District int `json:"district"`
 | 
			
		||||
		Ward     int `json:"ward"`
 | 
			
		||||
	}
 | 
			
		||||
type LocationRequestPayload struct {
 | 
			
		||||
	Province int `json:"province"`
 | 
			
		||||
	District int `json:"district"`
 | 
			
		||||
	Ward     int `json:"ward"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
	// ProvinceRequestPayload ...
 | 
			
		||||
	ProvinceRequestPayload struct {
 | 
			
		||||
		Codes []int `json:"codes"`
 | 
			
		||||
	}
 | 
			
		||||
// ProvinceRequestPayload ...
 | 
			
		||||
type ProvinceRequestPayload struct {
 | 
			
		||||
	Codes []int `json:"codes"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
	// ProvinceRequestCondition ...
 | 
			
		||||
	ProvinceRequestCondition struct {
 | 
			
		||||
		Code    int      `json:"code"`
 | 
			
		||||
		Codes   []int    `json:"codes"`
 | 
			
		||||
		Slug    string   `json:"slug"`
 | 
			
		||||
		Slugs   []string `json:"slugs"`
 | 
			
		||||
		Keyword string   `json:"keyword"`
 | 
			
		||||
		Region  string   `json:"region"`
 | 
			
		||||
	}
 | 
			
		||||
// DistrictRequestPayload ...
 | 
			
		||||
type DistrictRequestPayload struct {
 | 
			
		||||
	Codes []int `json:"codes"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
	// DistrictRequestPayload ...
 | 
			
		||||
	DistrictRequestPayload struct {
 | 
			
		||||
		Codes []int `json:"codes"`
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	// DistrictRequestCondition ...
 | 
			
		||||
	DistrictRequestCondition struct {
 | 
			
		||||
		Code         int    `json:"code"`
 | 
			
		||||
		Codes        []int  `json:"codes"`
 | 
			
		||||
		ProvinceCode int    `json:"provinceCode"`
 | 
			
		||||
		Slug         string `json:"slug"`
 | 
			
		||||
		ProvinceSlug string `json:"provinceSlug"`
 | 
			
		||||
		Keyword      string `json:"keyword"`
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	// WardRequestPayload ...
 | 
			
		||||
	WardRequestPayload struct {
 | 
			
		||||
		Codes []int `json:"codes"`
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	// WardRequestCondition ...
 | 
			
		||||
	WardRequestCondition struct {
 | 
			
		||||
		Code         int    `json:"code"`
 | 
			
		||||
		Codes        []int  `json:"codes"`
 | 
			
		||||
		DistrictCode int    `json:"districtCode"`
 | 
			
		||||
		ProvinceCode int    `json:"provinceCode"`
 | 
			
		||||
		Slug         string `json:"slug"`
 | 
			
		||||
		DistrictSlug string `json:"districtSlug"`
 | 
			
		||||
		ProvinceSlug string `json:"provinceSlug"`
 | 
			
		||||
		Keyword      string `json:"keyword"`
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	// ProvinceDistinctWithField ...
 | 
			
		||||
	ProvinceDistinctWithField struct {
 | 
			
		||||
		Conditions struct {
 | 
			
		||||
			Region string `json:"region"`
 | 
			
		||||
		} `json:"conditions"`
 | 
			
		||||
		Field string `json:"filed"`
 | 
			
		||||
	}
 | 
			
		||||
)
 | 
			
		||||
// WardRequestPayload ...
 | 
			
		||||
type WardRequestPayload struct {
 | 
			
		||||
	Codes []int `json:"codes"`
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1,95 +1,43 @@
 | 
			
		|||
package model
 | 
			
		||||
 | 
			
		||||
type (
 | 
			
		||||
	// ResponseLocationAddress ...
 | 
			
		||||
	ResponseLocationAddress struct {
 | 
			
		||||
		Province LocationProvince `json:"province"`
 | 
			
		||||
		District LocationDistrict `json:"district"`
 | 
			
		||||
		Ward     LocationWard     `json:"ward"`
 | 
			
		||||
	}
 | 
			
		||||
type ResponseLocationAddress struct {
 | 
			
		||||
	Province LocationProvince `json:"province"`
 | 
			
		||||
	District LocationDistrict `json:"district"`
 | 
			
		||||
	Ward     LocationWard     `json:"ward"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
	// LocationProvince ...
 | 
			
		||||
	LocationProvince struct {
 | 
			
		||||
		ID             string `json:"id"`
 | 
			
		||||
		Name           string `json:"name"`
 | 
			
		||||
		Code           int    `json:"code"`
 | 
			
		||||
		Slug           string `json:"slug"`
 | 
			
		||||
		RegionCode     string `json:"regionCode"`
 | 
			
		||||
		MainRegionCode string `json:"mainRegionCode"`
 | 
			
		||||
	}
 | 
			
		||||
// LocationProvince ...
 | 
			
		||||
type LocationProvince struct {
 | 
			
		||||
	ID   string `json:"id"`
 | 
			
		||||
	Name string `json:"name"`
 | 
			
		||||
	Code int    `json:"code"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
	// LocationDistrict ...
 | 
			
		||||
	LocationDistrict struct {
 | 
			
		||||
		ID   string `json:"id"`
 | 
			
		||||
		Name string `json:"name"`
 | 
			
		||||
		Code int    `json:"code"`
 | 
			
		||||
		Slug string `json:"slug"`
 | 
			
		||||
	}
 | 
			
		||||
// LocationDistrict ...
 | 
			
		||||
type LocationDistrict struct {
 | 
			
		||||
	ID   string `json:"id"`
 | 
			
		||||
	Name string `json:"name"`
 | 
			
		||||
	Code int    `json:"code"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
	// LocationWard ...
 | 
			
		||||
	LocationWard struct {
 | 
			
		||||
		ID       string       `json:"id"`
 | 
			
		||||
		Name     string       `json:"name"`
 | 
			
		||||
		Code     int          `json:"code"`
 | 
			
		||||
		Slug     string       `json:"slug"`
 | 
			
		||||
		Location *GEOLocation `json:"location"`
 | 
			
		||||
	}
 | 
			
		||||
// LocationWard ...
 | 
			
		||||
type LocationWard struct {
 | 
			
		||||
	ID   string `json:"id"`
 | 
			
		||||
	Name string `json:"name"`
 | 
			
		||||
	Code int    `json:"code"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
	// GEOLocation ...
 | 
			
		||||
	GEOLocation struct {
 | 
			
		||||
		Type        string    `bson:"type" json:"type"`
 | 
			
		||||
		Coordinates []float64 `bson:"coordinates" json:"coordinates"`
 | 
			
		||||
	}
 | 
			
		||||
// LocationProvinceResponse ...
 | 
			
		||||
type LocationProvinceResponse struct {
 | 
			
		||||
	Provinces []LocationProvince `json:"provinces"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
	// LocationProvinceResponse ...
 | 
			
		||||
	LocationProvinceResponse struct {
 | 
			
		||||
		Provinces []LocationProvince `json:"provinces"`
 | 
			
		||||
	}
 | 
			
		||||
// LocationDistrictResponse ...
 | 
			
		||||
type LocationDistrictResponse struct {
 | 
			
		||||
	Districts []LocationDistrict `json:"districts"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
	// LocationDistrictResponse ...
 | 
			
		||||
	LocationDistrictResponse struct {
 | 
			
		||||
		Districts []LocationDistrict `json:"districts"`
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	// LocationWardResponse ...
 | 
			
		||||
	LocationWardResponse struct {
 | 
			
		||||
		Wards []LocationWard `json:"wards"`
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	// LocationProvinceDetailResponse ...
 | 
			
		||||
	LocationProvinceDetailResponse struct {
 | 
			
		||||
		ID             string `json:"_id"`
 | 
			
		||||
		Name           string `json:"name"`
 | 
			
		||||
		Slug           string `json:"slug"`
 | 
			
		||||
		Code           int    `json:"code"`
 | 
			
		||||
		CountryCode    string `json:"countryCode"`
 | 
			
		||||
		RegionCode     string `json:"regionCode"`
 | 
			
		||||
		MainRegionCode string `json:"mainRegionCode"`
 | 
			
		||||
		TotalDistricts int    `json:"totalDistricts"`
 | 
			
		||||
		TotalWards     int    `json:"totalWards"`
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	// LocationDistrictDetailResponse ...
 | 
			
		||||
	LocationDistrictDetailResponse struct {
 | 
			
		||||
		ID           string   `json:"_id"`
 | 
			
		||||
		Name         string   `json:"name"`
 | 
			
		||||
		OldSlugs     []string `json:"oldSlugs"`
 | 
			
		||||
		Slug         string   `json:"slug"`
 | 
			
		||||
		Code         int      `json:"code"`
 | 
			
		||||
		ProvinceCode int      `json:"provinceCode"`
 | 
			
		||||
		Area         int      `json:"area"`
 | 
			
		||||
		TotalWards   int      `json:"totalWards"`
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	// LocationWardDetailResponse ...
 | 
			
		||||
	LocationWardDetailResponse struct {
 | 
			
		||||
		ID           string       `json:"_id"`
 | 
			
		||||
		Name         string       `json:"name"`
 | 
			
		||||
		OldSlugs     []string     `json:"oldSlugs"`
 | 
			
		||||
		Slug         string       `json:"slug"`
 | 
			
		||||
		Code         int          `json:"code"`
 | 
			
		||||
		DistrictCode int          `json:"districtCode"`
 | 
			
		||||
		ProvinceCode int          `json:"provinceCode"`
 | 
			
		||||
		Location     *GEOLocation `json:"location"`
 | 
			
		||||
	}
 | 
			
		||||
)
 | 
			
		||||
// LocationWardResponse ...
 | 
			
		||||
type LocationWardResponse struct {
 | 
			
		||||
	Wards []LocationWard `json:"wards"`
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -2,7 +2,6 @@ package model
 | 
			
		|||
 | 
			
		||||
// OrderUpdateORStatus ...
 | 
			
		||||
type OrderUpdateORStatus struct {
 | 
			
		||||
	ID             string      `json:"id"`
 | 
			
		||||
	OrderCode      string      `json:"orderCode"`
 | 
			
		||||
	ORCode         string      `json:"orCode"`
 | 
			
		||||
	Status         string      `json:"status"`
 | 
			
		||||
| 
						 | 
				
			
			@ -39,17 +38,3 @@ type OrderUpdateLogisticInfoFailed struct {
 | 
			
		|||
type OrderORsNotUpdateStatus struct {
 | 
			
		||||
	ORCodes []string `json:"orCodes"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// OrderSupplierQuery ...
 | 
			
		||||
type OrderSupplierQuery struct {
 | 
			
		||||
	Limit        int64    `json:"limit"`
 | 
			
		||||
	Page         int64    `json:"page"`
 | 
			
		||||
	FromDate     string   `json:"fromDate"`
 | 
			
		||||
	ToDate       string   `json:"toDate"`
 | 
			
		||||
	SupplierID   string   `json:"supplierId"`
 | 
			
		||||
	WarehouseIDs []string `json:"warehouseIDs"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
type OrderGetTotalWarningPayload struct {
 | 
			
		||||
	UserID string `json:"userId"`
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1,42 +0,0 @@
 | 
			
		|||
package model
 | 
			
		||||
 | 
			
		||||
import "time"
 | 
			
		||||
 | 
			
		||||
// SupplierOrderList ...
 | 
			
		||||
type SupplierOrderList struct {
 | 
			
		||||
	List  []SupplierOrder `json:"list"`
 | 
			
		||||
	Total int64           `json:"total" example:"100"`
 | 
			
		||||
	Limit int64           `json:"limit" example:"20"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// SupplierOrder ...
 | 
			
		||||
type SupplierOrder struct {
 | 
			
		||||
	ID              string                `json:"_id"`
 | 
			
		||||
	Code            string                `json:"code"`
 | 
			
		||||
	CreatedAt       time.Time             `json:"createdAt"`
 | 
			
		||||
	Status          string                `json:"status"`
 | 
			
		||||
	WarehouseStatus string                `json:"warehouseStatus"`
 | 
			
		||||
	Items           []SupplierOrderItem   `json:"items"`
 | 
			
		||||
	Delivery        SupplierOrderDelivery `json:"delivery"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// SupplierOrderItem ...
 | 
			
		||||
type SupplierOrderItem struct {
 | 
			
		||||
	ID          string `json:"_id" example:"1231"`
 | 
			
		||||
	SupplierSKU string `json:"supplierSku" example:"SUPPLIER_SKU"`
 | 
			
		||||
	Quantity    int64  `json:"quantity" example:"2"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// SupplierOrderDelivery ...
 | 
			
		||||
type SupplierOrderDelivery struct {
 | 
			
		||||
	Code    string `json:"code" example:"123187287"`
 | 
			
		||||
	Status  string `json:"status" enums:"waiting_to_confirm,waiting_to_pick,picking,picked,delay_pickup,pickup_failed,delivering,delay_delivery,delivered,cancelled,delivery_failed,waiting_to_return,returning,delay_return,compensation,returned"`
 | 
			
		||||
	TPLCode string `json:"tplCode" enums:"SLY,GHTK,GHN,SSC,SPY,VTP,SE,NTL,BEST"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// OrderGetTotalWarningRes ...
 | 
			
		||||
type OrderGetTotalWarningRes struct {
 | 
			
		||||
	UserID            string     `json:"userId"`
 | 
			
		||||
	TotalWarningOrder int64      `json:"totalWarningOrder"`
 | 
			
		||||
	Action            ActionType `json:"action"`
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			@ -1,14 +0,0 @@
 | 
			
		|||
package model
 | 
			
		||||
 | 
			
		||||
type ProductApplyRequestPayload struct {
 | 
			
		||||
	RequestID string `json:"requestId"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
type ProductCreateStepsPayload struct {
 | 
			
		||||
	RequestID string `json:"requestId"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
type ProductRequestChangeStatus struct {
 | 
			
		||||
	RequestID string `json:"requestId"`
 | 
			
		||||
	Status    string `json:"status"`
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			@ -1,20 +0,0 @@
 | 
			
		|||
package model
 | 
			
		||||
 | 
			
		||||
import "go.mongodb.org/mongo-driver/bson/primitive"
 | 
			
		||||
 | 
			
		||||
type GenerateVoucherPromotionRequest struct {
 | 
			
		||||
	Cash       float64                         `json:"cash"`
 | 
			
		||||
	TargetID   primitive.ObjectID              `json:"targetId"`
 | 
			
		||||
	TargetType string                          `json:"targetType"`
 | 
			
		||||
	Options    GenerateVoucherPromotionOptions `json:"options"`
 | 
			
		||||
	Seller     primitive.ObjectID              `json:"seller"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
type GenerateVoucherPromotionOptions struct {
 | 
			
		||||
	Title string `json:"title"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
type ResponseGenerateVoucherPromotion struct {
 | 
			
		||||
	Success bool   `json:"success"`
 | 
			
		||||
	Error   string `json:"error"`
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			@ -1,8 +0,0 @@
 | 
			
		|||
package model
 | 
			
		||||
 | 
			
		||||
type QueueScheduleTaskRequest struct {
 | 
			
		||||
	ID          string `json:"id"`
 | 
			
		||||
	NatsSubject string `json:"natsSubject"`
 | 
			
		||||
	Data        string `json:"data"`
 | 
			
		||||
	StartAt     int64  `json:"startAt"` // unix
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			@ -1,6 +0,0 @@
 | 
			
		|||
package model
 | 
			
		||||
 | 
			
		||||
// GetListSegmentRequest ...
 | 
			
		||||
type GetListSegmentRequest struct {
 | 
			
		||||
	SegmentIds []string `json:"segmentIds"`
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			@ -1,12 +0,0 @@
 | 
			
		|||
package model
 | 
			
		||||
 | 
			
		||||
// ResponseSegmentInfo ...
 | 
			
		||||
type ResponseSegmentInfo struct {
 | 
			
		||||
	ID   string `json:"_id"`
 | 
			
		||||
	Name string `json:"name"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// ResponseListSegmentInfo ...
 | 
			
		||||
type ResponseListSegmentInfo struct {
 | 
			
		||||
	Segments []ResponseSegmentInfo `json:"segments"`
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			@ -2,73 +2,17 @@ package model
 | 
			
		|||
 | 
			
		||||
import "go.mongodb.org/mongo-driver/bson/primitive"
 | 
			
		||||
 | 
			
		||||
// GetSellerByIDRequest ...
 | 
			
		||||
type GetSellerByIDRequest struct {
 | 
			
		||||
	SellerID primitive.ObjectID `json:"sellerId"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// GetListSellerByIDsRequest ...
 | 
			
		||||
type GetListSellerByIDsRequest struct {
 | 
			
		||||
	SellerIDs []primitive.ObjectID `json:"sellerIds"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// GetListSellerSupportChatByIDsRequest ...
 | 
			
		||||
type GetListSellerSupportChatByIDsRequest struct {
 | 
			
		||||
	SellerIDs []primitive.ObjectID `json:"sellerIds"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
type CheckAndInsertCashflowsRequest struct {
 | 
			
		||||
	SellerID string           `json:"sellerId"`
 | 
			
		||||
	List     []CashflowSeller `json:"list"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
type CashflowSeller struct {
 | 
			
		||||
	Value      float64          `json:"value"`
 | 
			
		||||
	Action     string           `json:"action"`
 | 
			
		||||
	Category   string           `json:"category"`
 | 
			
		||||
	TargetID   string           `json:"targetId"`
 | 
			
		||||
	TargetType string           `json:"targetType"`
 | 
			
		||||
	Options    *CashFlowOptions `json:"options"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
type CashFlowOptions struct {
 | 
			
		||||
	AffiliateTransactionCode string `json:"affiliateTransactionCode,omitempty"`
 | 
			
		||||
	AffiliateCampaignID      string `json:"affiliateCampaignId,omitempty"`
 | 
			
		||||
	AffiliateCampaignName    string `json:"affiliateCampaignName,omitempty"`
 | 
			
		||||
 | 
			
		||||
	// Campaign
 | 
			
		||||
	CampaignID   string `json:"campaignId,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"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
type UpdateSellerAffiliateStatisticRequest struct {
 | 
			
		||||
	SellerID  string                   `json:"sellerId"`
 | 
			
		||||
	Statistic SellerAffiliateStatistic `json:"statistic"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
type SellerAffiliateStatistic struct {
 | 
			
		||||
	TransactionTotal              int     `json:"transactionTotal"`
 | 
			
		||||
	TransactionCashback           int     `json:"transactionCashback"`
 | 
			
		||||
	TransactionPending            int     `json:"transactionPending"`
 | 
			
		||||
	TransactionApproved           int     `json:"transactionApproved"`
 | 
			
		||||
	TransactionRejected           int     `json:"transactionRejected"`
 | 
			
		||||
	CommissionTransactionTotal    float64 `json:"commissionTransactionTotal"`
 | 
			
		||||
	CommissionTransactionCashback float64 `json:"commissionTransactionCashback"`
 | 
			
		||||
	CommissionTransactionApproved float64 `json:"commissionTransactionApproved"`
 | 
			
		||||
	CommissionTransactionPending  float64 `json:"commissionTransactionPending"`
 | 
			
		||||
	CommissionTransactionRejected float64 `json:"commissionTransactionRejected"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
type UpdateSellerSavingCampaignStatisticRequest struct {
 | 
			
		||||
	SellerID  string                        `json:"sellerId"`
 | 
			
		||||
	Statistic SellerSavingCampaignStatistic `json:"statistic"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
type SellerSavingCampaignStatistic struct {
 | 
			
		||||
	SavingCampaignCashPending   float64 `json:"savingCampaignCashPending"`
 | 
			
		||||
	SavingCampaignCashCompleted float64 `json:"savingCampaignCashCompleted"`
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -4,11 +4,9 @@ import "time"
 | 
			
		|||
 | 
			
		||||
// ResponseSellerInfo ...
 | 
			
		||||
type ResponseSellerInfo struct {
 | 
			
		||||
	ID            string  `json:"_id"`
 | 
			
		||||
	Name          string  `json:"name"`
 | 
			
		||||
	Code          string  `json:"code"`
 | 
			
		||||
	IsAccountPro  bool    `json:"isAccountPro"`
 | 
			
		||||
	CashRemaining float64 `json:"cashRemaining"`
 | 
			
		||||
	ID   string `json:"_id"`
 | 
			
		||||
	Name string `json:"name"`
 | 
			
		||||
	Code string `json:"code"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// ResponseListSellerInfo ...
 | 
			
		||||
| 
						 | 
				
			
			@ -23,25 +21,16 @@ type ResponseListSellerInfoSupportChat struct {
 | 
			
		|||
 | 
			
		||||
// ResponseSellerInfoSupportChat ...
 | 
			
		||||
type ResponseSellerInfoSupportChat struct {
 | 
			
		||||
	ID           string                 `json:"_id"`
 | 
			
		||||
	Name         string                 `json:"name"`
 | 
			
		||||
	Code         string                 `json:"code"`
 | 
			
		||||
	Membership   SellerMembershipInfo   `json:"membership"`
 | 
			
		||||
	Info         SellerContactInfo      `json:"info"`
 | 
			
		||||
	Team         *TeamInfo              `json:"team,omitempty"`
 | 
			
		||||
	Statistic    SellerStatistic        `json:"statistic"`
 | 
			
		||||
	TrackingTime *SellerTrackingTime    `json:"trackingTime"`
 | 
			
		||||
	Invitee      *InviteeInfo           `json:"invitee"`
 | 
			
		||||
	CreatedAt    time.Time              `json:"createdAt"`
 | 
			
		||||
	PlanPackage  *SellerPlanPackageInfo `json:"planPackage"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// SellerPlanPackageInfo ...
 | 
			
		||||
type SellerPlanPackageInfo struct {
 | 
			
		||||
	ID        string    `json:"_id"`
 | 
			
		||||
	Name      string    `json:"name"`
 | 
			
		||||
	Level     int       `json:"level"`
 | 
			
		||||
	CreatedAt time.Time `json:"createdAt"`
 | 
			
		||||
	ID           string               `json:"_id"`
 | 
			
		||||
	Name         string               `json:"name"`
 | 
			
		||||
	Code         string               `json:"code"`
 | 
			
		||||
	Membership   SellerMembershipInfo `json:"membership"`
 | 
			
		||||
	Info         SellerContactInfo    `json:"info"`
 | 
			
		||||
	Team         *TeamInfo            `json:"team,omitempty"`
 | 
			
		||||
	Statistic    SellerStatistic      `json:"statistic"`
 | 
			
		||||
	TrackingTime *SellerTrackingTime  `json:"trackingTime"`
 | 
			
		||||
	Invitee      *InviteeInfo         `json:"invitee"`
 | 
			
		||||
	CreatedAt    time.Time            `json:"createdAt"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// SellerTrackingTime ...
 | 
			
		||||
| 
						 | 
				
			
			@ -90,18 +79,3 @@ type SellerMembershipInfo struct {
 | 
			
		|||
	Level int    `json:"level"`
 | 
			
		||||
	Name  string `json:"name"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
type ResponseCheckAndInsertCashflows struct {
 | 
			
		||||
	Success bool   `json:"success"`
 | 
			
		||||
	Error   string `json:"error"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
type ResponseUpdateSellerAffiliateStatistic struct {
 | 
			
		||||
	Success bool   `json:"success"`
 | 
			
		||||
	Error   string `json:"error"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
type ResponseUpdateSellerSavingCampaignStatistic struct {
 | 
			
		||||
	Success bool   `json:"success"`
 | 
			
		||||
	Error   string `json:"error"`
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1,13 +0,0 @@
 | 
			
		|||
package model
 | 
			
		||||
 | 
			
		||||
import "go.mongodb.org/mongo-driver/bson/primitive"
 | 
			
		||||
 | 
			
		||||
// GetListSocialPostAppByIDsRequest ...
 | 
			
		||||
type GetListSocialPostAppByIDsRequest struct {
 | 
			
		||||
	SocialPostIDs []primitive.ObjectID `json:"socialPostIDs"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// GetBriefInfoSocialPostAdminByIDsRequest ...
 | 
			
		||||
type GetBriefInfoSocialPostAdminByIDsRequest struct {
 | 
			
		||||
	SocialPostIDs []primitive.ObjectID `json:"socialPostIDs"`
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			@ -1,61 +0,0 @@
 | 
			
		|||
package model
 | 
			
		||||
 | 
			
		||||
import (
 | 
			
		||||
	"go.mongodb.org/mongo-driver/bson/primitive"
 | 
			
		||||
	"time"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
// ResponseListSocialPostAppInfo ...
 | 
			
		||||
type ResponseListSocialPostAppInfo struct {
 | 
			
		||||
	SocialPosts []SocialPostAppInfo `json:"socialPosts"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// SocialPostAppInfo ...
 | 
			
		||||
type SocialPostAppInfo struct {
 | 
			
		||||
	ID          primitive.ObjectID    `json:"_id"`
 | 
			
		||||
	Title       string                `json:"title"`
 | 
			
		||||
	Content     string                `json:"content"`
 | 
			
		||||
	Statistic   SocialPostStatistic   `json:"statistic"`
 | 
			
		||||
	Author      *SocialPostSellerInfo `json:"author"`
 | 
			
		||||
	Photos      ListPhoto             `json:"photos"`
 | 
			
		||||
	PublishedAt time.Time             `json:"publishedAt"`
 | 
			
		||||
	IsLiked     bool                  `json:"isLiked"`
 | 
			
		||||
	IsPin       bool                  `json:"isPin"`
 | 
			
		||||
	Contributor *SocialPostSellerInfo `json:"contributor"`
 | 
			
		||||
	CreatedAt   time.Time             `json:"createdAt"`
 | 
			
		||||
	Status      string                `json:"status"`
 | 
			
		||||
	HasUpdate   bool                  `json:"hasUpdate"`
 | 
			
		||||
	Order       int                   `json:"order"`
 | 
			
		||||
	Videos      ListVideo             `json:"videos"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// SocialPostStatistic ...
 | 
			
		||||
type SocialPostStatistic struct {
 | 
			
		||||
	Views        int `json:"views"`
 | 
			
		||||
	UniqueViews  int `json:"uniqueViews"`
 | 
			
		||||
	Likes        int `json:"likes"`
 | 
			
		||||
	Shares       int `json:"shares"`
 | 
			
		||||
	UniqueShares int `json:"uniqueShares"`
 | 
			
		||||
	Comments     int `json:"comments"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// SocialPostSellerInfo ...
 | 
			
		||||
type SocialPostSellerInfo struct {
 | 
			
		||||
	ID         primitive.ObjectID   `json:"_id"`
 | 
			
		||||
	Name       string               `json:"name"`
 | 
			
		||||
	Membership SellerMembershipInfo `json:"membership"`
 | 
			
		||||
	Logo       *FilePhoto           `json:"avatar"`
 | 
			
		||||
	IsMine     bool                 `json:"isMine"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// ResponseListSocialPostAdminInfo ...
 | 
			
		||||
type ResponseListSocialPostAdminInfo struct {
 | 
			
		||||
	SocialPosts []SocialPostAdminInfo `json:"socialPosts"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// SocialPostAdminInfo ...
 | 
			
		||||
type SocialPostAdminInfo struct {
 | 
			
		||||
	ID     primitive.ObjectID `json:"_id"`
 | 
			
		||||
	Title  string             `json:"title"`
 | 
			
		||||
	Status string             `json:"status"`
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			@ -1,19 +0,0 @@
 | 
			
		|||
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,6 +0,0 @@
 | 
			
		|||
package model
 | 
			
		||||
 | 
			
		||||
// GetListStaffRequest ...
 | 
			
		||||
type GetListStaffRequest struct {
 | 
			
		||||
	StaffIds []string `json:"staffIds"`
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			@ -1,12 +0,0 @@
 | 
			
		|||
package model
 | 
			
		||||
 | 
			
		||||
// ResponseListStaffInfo ...
 | 
			
		||||
type ResponseListStaffInfo struct {
 | 
			
		||||
	Staffs []ResponseStaffInfo `json:"staffs"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// ResponseStaffInfo ...
 | 
			
		||||
type ResponseStaffInfo struct {
 | 
			
		||||
	ID   string `json:"_id"`
 | 
			
		||||
	Name string `json:"name"`
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			@ -9,11 +9,6 @@ type GetSupplierRequest struct {
 | 
			
		|||
	ListID []primitive.ObjectID `json:"listID"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// GetDetailSupplierRequest ...
 | 
			
		||||
type GetDetailSupplierRequest struct {
 | 
			
		||||
	Supplier string `json:"supplier"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
type GetSupplierContractRequest struct {
 | 
			
		||||
	SupplierID primitive.ObjectID `json:"supplierID"`
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			@ -43,17 +38,3 @@ type UpdateSupplierWarehousePayload struct {
 | 
			
		|||
	DistrictCode int    `json:"districtCode"`
 | 
			
		||||
	WardCode     int    `json:"wardCode"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
type SupplierFindAllReq struct {
 | 
			
		||||
	Page    int64    `json:"page"`
 | 
			
		||||
	Limit   int64    `json:"limit"`
 | 
			
		||||
	Segment string   `json:"segment"`
 | 
			
		||||
	IDs     []string `json:"ids"`
 | 
			
		||||
	Status  string   `json:"status"` // active,inactive
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
type SupplierCountReq struct {
 | 
			
		||||
	Segment string   `json:"segment"`
 | 
			
		||||
	IDs     []string `json:"ids"`
 | 
			
		||||
	Status  string   `json:"status"` // active,inactive
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -5,7 +5,6 @@ type ResponseSupplierInfo struct {
 | 
			
		|||
	ID           string `json:"id"`
 | 
			
		||||
	Name         string `json:"name"`
 | 
			
		||||
	BusinessType string `json:"businessType"`
 | 
			
		||||
	IsSellyMall  bool   `json:"isSellyMall"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// ResponseSupplierContract ...
 | 
			
		||||
| 
						 | 
				
			
			@ -30,7 +29,3 @@ type SupplierAll struct {
 | 
			
		|||
	Suppliers []SupplierBrief `json:"suppliers"`
 | 
			
		||||
	Total     int64           `json:"total"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
type SupplierCountRes struct {
 | 
			
		||||
	Total int64 `json:"total"`
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1,14 +0,0 @@
 | 
			
		|||
package model
 | 
			
		||||
 | 
			
		||||
type CreateRoleRequest struct {
 | 
			
		||||
	Name string `json:"name"`
 | 
			
		||||
	Code string `json:"code"`
 | 
			
		||||
	Type string `json:"type"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
type UpdateRoleRequest struct {
 | 
			
		||||
	ID   string `json:"_id"`
 | 
			
		||||
	Name string `json:"name"`
 | 
			
		||||
	Code string `json:"code"`
 | 
			
		||||
	Type string `json:"type"`
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			@ -1,5 +0,0 @@
 | 
			
		|||
package model
 | 
			
		||||
 | 
			
		||||
type CreateRoleResponse struct {
 | 
			
		||||
	ID string `json:"_id"`
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			@ -1,57 +0,0 @@
 | 
			
		|||
package model
 | 
			
		||||
 | 
			
		||||
type CreateOwnerRequest struct {
 | 
			
		||||
	Name       string `json:"name"`
 | 
			
		||||
	Phone      string `json:"phone"`
 | 
			
		||||
	Email      string `json:"email"`
 | 
			
		||||
	SupplierID string `json:"supplierId"`
 | 
			
		||||
	RoleID     string `json:"roleId"`
 | 
			
		||||
	Password   string `json:"password"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
type UpdateOwnerRequest struct {
 | 
			
		||||
	ID         string `json:"_id"`
 | 
			
		||||
	SupplierID string `json:"supplierId"`
 | 
			
		||||
	Name       string `json:"name"`
 | 
			
		||||
	Phone      string `json:"phone"`
 | 
			
		||||
	Email      string `json:"email"`
 | 
			
		||||
	RoleID     string `json:"roleId"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
type CreateStaffRequest struct {
 | 
			
		||||
	Name       string   `json:"name"`
 | 
			
		||||
	Phone      string   `json:"phone"`
 | 
			
		||||
	Email      string   `json:"email"`
 | 
			
		||||
	SupplierID string   `json:"supplierId"`
 | 
			
		||||
	RoleID     string   `json:"roleId"`
 | 
			
		||||
	Password   string   `json:"password"`
 | 
			
		||||
	Warehouses []string `json:"warehouses"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
type UpdateStaffRequest struct {
 | 
			
		||||
	ID                      string   `json:"_id"`
 | 
			
		||||
	Name                    string   `json:"name"`
 | 
			
		||||
	Phone                   string   `json:"phone"`
 | 
			
		||||
	Email                   string   `json:"email"`
 | 
			
		||||
	SupplierID              string   `json:"supplierId"`
 | 
			
		||||
	RoleID                  string   `json:"roleId"`
 | 
			
		||||
	Password                string   `json:"password"`
 | 
			
		||||
	SupplierUserWarehouseID string   `json:"supplierUserWarehouseId"`
 | 
			
		||||
	Warehouses              []string `json:"warehouses"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
type UpdateStatusRequest struct {
 | 
			
		||||
	ID     string `json:"_id"`
 | 
			
		||||
	Status string `json:"status"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
type ResetPasswordRequest struct {
 | 
			
		||||
	ID       string `json:"_id"`
 | 
			
		||||
	Password string `json:"password"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// CheckTokenSupplierUserPayload ...
 | 
			
		||||
type CheckTokenSupplierUserPayload struct {
 | 
			
		||||
	Token       string   `json:"token"`
 | 
			
		||||
	Permissions []string `json:"permissions"`
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			@ -1,26 +0,0 @@
 | 
			
		|||
package model
 | 
			
		||||
 | 
			
		||||
type CreateOwnerResponse struct {
 | 
			
		||||
	ID string `json:"_id"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
type CreateStaffResponse struct {
 | 
			
		||||
	ID string `json:"_id"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
type ResetPasswordResponse struct {
 | 
			
		||||
	Password string `json:"password"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// ResponseCheckTokenSupplierUser ...
 | 
			
		||||
type ResponseCheckTokenSupplierUser struct {
 | 
			
		||||
	IsValid bool                     `json:"isValid"`
 | 
			
		||||
	Reason  string                   `json:"reason"`
 | 
			
		||||
	User    ResponseSupplierUserInfo `json:"supplier"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
type ResponseSupplierUserInfo struct {
 | 
			
		||||
	ID         string `json:"_id"`
 | 
			
		||||
	Name       string `json:"name"`
 | 
			
		||||
	SupplierID string `json:"supplierId"`
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			@ -2,18 +2,17 @@ package model
 | 
			
		|||
 | 
			
		||||
// OutboundRequestPayload ...
 | 
			
		||||
type OutboundRequestPayload struct {
 | 
			
		||||
	OrderID       string                `json:"orderId"`
 | 
			
		||||
	OrderCode     string                `json:"orderCode"`
 | 
			
		||||
	TrackingCode  string                `json:"trackingCode"`
 | 
			
		||||
	WarehouseID   string                `json:"warehouseId"`
 | 
			
		||||
	SupplierID    string                `json:"supplierId"`
 | 
			
		||||
	Note          string                `json:"note"`
 | 
			
		||||
	CODAmount     float64               `json:"codAmount"`
 | 
			
		||||
	TPLCode       string                `json:"tplCode"`
 | 
			
		||||
	Customer      CustomerInfo          `json:"customer"`
 | 
			
		||||
	Items         []OutboundRequestItem `json:"items"`
 | 
			
		||||
	Insurance     *InsuranceOpts        `json:"insurance"`
 | 
			
		||||
	PaymentMethod string                `json:"paymentMethod"`
 | 
			
		||||
	OrderID      string                `json:"orderId"`
 | 
			
		||||
	OrderCode    string                `json:"orderCode"`
 | 
			
		||||
	TrackingCode string                `json:"trackingCode"`
 | 
			
		||||
	WarehouseID  string                `json:"warehouseId"`
 | 
			
		||||
	SupplierID   string                `json:"supplierId"`
 | 
			
		||||
	Note         string                `json:"note"`
 | 
			
		||||
	CODAmount    float64               `json:"codAmount"`
 | 
			
		||||
	TPLCode      string                `json:"tplCode"`
 | 
			
		||||
	Customer     CustomerInfo          `json:"customer"`
 | 
			
		||||
	Items        []OutboundRequestItem `json:"items"`
 | 
			
		||||
	Insurance    *InsuranceOpts        `json:"insurance"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// InsuranceOpts ...
 | 
			
		||||
| 
						 | 
				
			
			@ -37,12 +36,9 @@ type InsuranceOpts struct {
 | 
			
		|||
 | 
			
		||||
// OutboundRequestItem ...
 | 
			
		||||
type OutboundRequestItem struct {
 | 
			
		||||
	SupplierSKU        string  `json:"supplierSKU"`
 | 
			
		||||
	Quantity           int64   `json:"quantity"`
 | 
			
		||||
	UnitCode           string  `json:"unitCode"`
 | 
			
		||||
	Price              float64 `json:"price"`
 | 
			
		||||
	Name               string  `json:"name"`
 | 
			
		||||
	PartnerProductCode string  `json:"partnerProductCode"`
 | 
			
		||||
	SupplierSKU string `json:"supplierSKU"`
 | 
			
		||||
	Quantity    int64  `json:"quantity"`
 | 
			
		||||
	UnitCode    string `json:"unitCode"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// CustomerInfo ...
 | 
			
		||||
| 
						 | 
				
			
			@ -64,26 +60,21 @@ type AddressDetail struct {
 | 
			
		|||
 | 
			
		||||
// UpdateOutboundRequestLogisticInfoPayload ...
 | 
			
		||||
type UpdateOutboundRequestLogisticInfoPayload struct {
 | 
			
		||||
	ShippingLabel  string `json:"shippingLabel,omitempty"`
 | 
			
		||||
	TrackingCode   string `json:"trackingCode,omitempty"`
 | 
			
		||||
	ORCode         string `json:"orCode,omitempty"`
 | 
			
		||||
	TPLCode        string `json:"tplCode,omitempty"`
 | 
			
		||||
	OrderID        string `json:"orderId"`
 | 
			
		||||
	DeliveryStatus string `json:"deliveryStatus,omitempty"`
 | 
			
		||||
	ShippingLabel string `json:"shippingLabel"`
 | 
			
		||||
	TrackingCode  string `json:"trackingCode"`
 | 
			
		||||
	ORCode        string `json:"orCode"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// CancelOutboundRequest ...
 | 
			
		||||
type CancelOutboundRequest struct {
 | 
			
		||||
	ORCode  string `json:"orCode"`
 | 
			
		||||
	OrderID string `json:"orderId"`
 | 
			
		||||
	Note    string `json:"note"`
 | 
			
		||||
	ORCode string `json:"orCode"`
 | 
			
		||||
	Note   string `json:"note"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// SyncORStatusRequest ...
 | 
			
		||||
type SyncORStatusRequest struct {
 | 
			
		||||
	ORCode    string `json:"orCode"`
 | 
			
		||||
	OrderCode string `json:"orderCode"`
 | 
			
		||||
	OrderID   string `json:"orderId"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// UpdateSupplierIsClosedRequest ...
 | 
			
		||||
| 
						 | 
				
			
			@ -99,41 +90,11 @@ type SupplierIsClosed struct {
 | 
			
		|||
 | 
			
		||||
// GetWarehousesRequest ...
 | 
			
		||||
type GetWarehousesRequest struct {
 | 
			
		||||
	Keyword      string   `json:"keyword"`
 | 
			
		||||
	Status       string   `json:"status"`
 | 
			
		||||
	Supplier     string   `json:"supplier"`
 | 
			
		||||
	BusinessType string   `json:"businessType"`
 | 
			
		||||
	IDs          []string `json:"ids"`
 | 
			
		||||
	Keyword      string `json:"keyword"`
 | 
			
		||||
	Status       string `json:"status"`
 | 
			
		||||
	Supplier     string `json:"supplier"`
 | 
			
		||||
	BusinessType string `json:"businessType"`
 | 
			
		||||
 | 
			
		||||
	Page  int64 `json:"page"`
 | 
			
		||||
	Limit int64 `json:"limit"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// WarehouseORUpdateDeliveryStatus ...
 | 
			
		||||
type WarehouseORUpdateDeliveryStatus struct {
 | 
			
		||||
	ORCode         string `json:"orCode"`
 | 
			
		||||
	OrderCode      string `json:"orderCode"`
 | 
			
		||||
	OrderID        string `json:"orderId"`
 | 
			
		||||
	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"`
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -61,28 +61,16 @@ type WarehouseSupplier struct {
 | 
			
		|||
 | 
			
		||||
// WarehouseOrder ...
 | 
			
		||||
type WarehouseOrder struct {
 | 
			
		||||
	MinimumValue                   float64                         `json:"minimumValue"`
 | 
			
		||||
	PaymentMethod                  WarehousePaymentMethod          `json:"paymentMethod"`
 | 
			
		||||
	IsLimitNumberOfPurchases       bool                            `json:"isLimitNumberOfPurchases"`
 | 
			
		||||
	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"`
 | 
			
		||||
	MinimumValue             float64                `json:"minimumValue"`
 | 
			
		||||
	PaymentMethod            WarehousePaymentMethod `json:"paymentMethod"`
 | 
			
		||||
	IsLimitNumberOfPurchases bool                   `json:"isLimitNumberOfPurchases"`
 | 
			
		||||
	LimitNumberOfPurchases   int64                  `json:"limitNumberOfPurchases"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// WarehousePaymentMethod ...
 | 
			
		||||
type WarehousePaymentMethod struct {
 | 
			
		||||
	Cod          bool `json:"cod"`
 | 
			
		||||
	BankTransfer bool `json:"bankTransfer"`
 | 
			
		||||
	Fundiin      bool `json:"fundiin"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// WarehouseDelivery ...
 | 
			
		||||
| 
						 | 
				
			
			@ -141,23 +129,19 @@ type ResponseLatLng struct {
 | 
			
		|||
 | 
			
		||||
// WarehouseNatsResponse ...
 | 
			
		||||
type WarehouseNatsResponse struct {
 | 
			
		||||
	ID                    string                    `json:"_id"`
 | 
			
		||||
	Staff                 string                    `json:"staff"`
 | 
			
		||||
	BusinessType          string                    `json:"businessType"`
 | 
			
		||||
	Name                  string                    `json:"name"`
 | 
			
		||||
	SearchString          string                    `json:"searchString"`
 | 
			
		||||
	Slug                  string                    `json:"slug"`
 | 
			
		||||
	Status                string                    `json:"status"`
 | 
			
		||||
	Supplier              string                    `json:"supplier"`
 | 
			
		||||
	Contact               ResponseWarehouseContact  `json:"contact"`
 | 
			
		||||
	Location              ResponseWarehouseLocation `json:"location"`
 | 
			
		||||
	Configurations        WarehouseConfiguration    `json:"configurations"`
 | 
			
		||||
	CreatedAt             time.Time                 `json:"createdAt"`
 | 
			
		||||
	UpdatedAt             time.Time                 `json:"updatedAt"`
 | 
			
		||||
	ReasonPendingInactive string                    `json:"reasonPendingInactive"`
 | 
			
		||||
	IsPendingInactive     bool                      `json:"isPendingInactive"`
 | 
			
		||||
	IsFromInternational   bool                      `json:"isFromInternational"`
 | 
			
		||||
	StoreCode             string                    `json:"storeCode"`
 | 
			
		||||
	ID             string                    `json:"_id"`
 | 
			
		||||
	Staff          string                    `json:"staff"`
 | 
			
		||||
	BusinessType   string                    `json:"businessType"`
 | 
			
		||||
	Name           string                    `json:"name"`
 | 
			
		||||
	SearchString   string                    `json:"searchString"`
 | 
			
		||||
	Slug           string                    `json:"slug"`
 | 
			
		||||
	Status         string                    `json:"status"`
 | 
			
		||||
	Supplier       string                    `json:"supplier"`
 | 
			
		||||
	Contact        ResponseWarehouseContact  `json:"contact"`
 | 
			
		||||
	Location       ResponseWarehouseLocation `json:"location"`
 | 
			
		||||
	Configurations WarehouseConfiguration    `json:"configurations"`
 | 
			
		||||
	CreatedAt      time.Time                 `json:"createdAt"`
 | 
			
		||||
	UpdatedAt      time.Time                 `json:"updatedAt"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// WarehouseInfo ...
 | 
			
		||||
| 
						 | 
				
			
			@ -186,9 +170,3 @@ type GetWarehousesResponse struct {
 | 
			
		|||
	Limit int64           `json:"limit"`
 | 
			
		||||
	List  []WarehouseInfo `json:"list"`
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
type GetListWarehouseConfigRes struct {
 | 
			
		||||
	Total int64                    `json:"total"`
 | 
			
		||||
	Limit int64                    `json:"limit"`
 | 
			
		||||
	List  []WarehouseConfiguration `json:"list"`
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1,13 +0,0 @@
 | 
			
		|||
package subject
 | 
			
		||||
 | 
			
		||||
import "fmt"
 | 
			
		||||
 | 
			
		||||
func getAffiliateValue(val string) string {
 | 
			
		||||
	return fmt.Sprintf("%s.%s", prefixes.Affiliate, val)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
var Affiliate = struct {
 | 
			
		||||
	GetTransactions string
 | 
			
		||||
}{
 | 
			
		||||
	GetTransactions: getAffiliateValue("get_transactions"),
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			@ -1,17 +0,0 @@
 | 
			
		|||
package subject
 | 
			
		||||
 | 
			
		||||
import "fmt"
 | 
			
		||||
 | 
			
		||||
// getCampaignValue ...
 | 
			
		||||
func getCampaignValue(val string) string {
 | 
			
		||||
	return fmt.Sprintf("%s.%s", prefixes.Campaign, val)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Campaign ...
 | 
			
		||||
var Campaign = struct {
 | 
			
		||||
	GetListCampaignTransactionAdminInfoByIDs string
 | 
			
		||||
	GetCampaignSellerStatisticBySellerIDs    string
 | 
			
		||||
}{
 | 
			
		||||
	GetListCampaignTransactionAdminInfoByIDs: getCampaignValue("get_list_campaign_transaction_admin_info_by_ids"),
 | 
			
		||||
	GetCampaignSellerStatisticBySellerIDs:    getCampaignValue("get_campaign_seller_statistic_by_seller_ids"),
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			@ -9,17 +9,6 @@ var prefixes = struct {
 | 
			
		|||
	Bank          string
 | 
			
		||||
	Supplier      string
 | 
			
		||||
	Seller        string
 | 
			
		||||
	SupplierUser  string
 | 
			
		||||
	SupplierRole  string
 | 
			
		||||
	SocialPost    string
 | 
			
		||||
	Staff         string
 | 
			
		||||
	Segment       string
 | 
			
		||||
	Product       string
 | 
			
		||||
	Queue         string
 | 
			
		||||
	Campaign      string
 | 
			
		||||
	Affiliate     string
 | 
			
		||||
	Socket        string
 | 
			
		||||
	Promotion     string
 | 
			
		||||
}{
 | 
			
		||||
	Communication: "communication",
 | 
			
		||||
	Order:         "order",
 | 
			
		||||
| 
						 | 
				
			
			@ -29,15 +18,4 @@ var prefixes = struct {
 | 
			
		|||
	Supplier:      "supplier",
 | 
			
		||||
	Bank:          "bank",
 | 
			
		||||
	Seller:        "seller",
 | 
			
		||||
	SupplierUser:  "supplier_user",
 | 
			
		||||
	SupplierRole:  "supplier_role",
 | 
			
		||||
	SocialPost:    "social_post",
 | 
			
		||||
	Staff:         "staff",
 | 
			
		||||
	Segment:       "segment",
 | 
			
		||||
	Product:       "product",
 | 
			
		||||
	Queue:         "queue",
 | 
			
		||||
	Campaign:      "campaign",
 | 
			
		||||
	Affiliate:     "affiliate",
 | 
			
		||||
	Socket:        "socket",
 | 
			
		||||
	Promotion:     "promotion",
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -7,43 +7,13 @@ func getLocationValue(val string) string {
 | 
			
		|||
}
 | 
			
		||||
 | 
			
		||||
var Location = struct {
 | 
			
		||||
	GetLocationByCode                      string
 | 
			
		||||
	GetLocationByCodeFromLocationService   string
 | 
			
		||||
	GetLocationByWardCode                  string
 | 
			
		||||
	GetProvincesByCodes                    string
 | 
			
		||||
	GetProvincesByCodesFromLocationService string
 | 
			
		||||
	GetDistrictsByCodes                    string
 | 
			
		||||
	GetDistrictsByCodesFromLocationService string
 | 
			
		||||
	GetWardsByCodes                        string
 | 
			
		||||
	GetWardsByCodesFromLocationService     string
 | 
			
		||||
	GetProvinceByCondition                 string
 | 
			
		||||
	GetProvincesByCondition                string
 | 
			
		||||
	GetDistrictByCondition                 string
 | 
			
		||||
	GetDistrictsByCondition                string
 | 
			
		||||
	GetWardByCondition                     string
 | 
			
		||||
	GetWardsByCondition                    string
 | 
			
		||||
	CountProvinceByCondition               string
 | 
			
		||||
	CountDistrictByCondition               string
 | 
			
		||||
	CountWardByCondition                   string
 | 
			
		||||
	ProvinceDistinctWithField              string
 | 
			
		||||
	GetLocationByCode   string
 | 
			
		||||
	GetProvincesByCodes string
 | 
			
		||||
	GetDistrictsByCodes string
 | 
			
		||||
	GetWardsByCodes     string
 | 
			
		||||
}{
 | 
			
		||||
	GetLocationByCode:                      getLocationValue("get_location_warehouse"),
 | 
			
		||||
	GetLocationByCodeFromLocationService:   getLocationValue("get_location_warehouse_from_location_service"),
 | 
			
		||||
	GetLocationByWardCode:                  getLocationValue("get_location_by_ward_code"),
 | 
			
		||||
	GetProvincesByCodes:                    getLocationValue("get_provinces_by_codes"),
 | 
			
		||||
	GetProvincesByCodesFromLocationService: getLocationValue("get_provinces_by_codes_from_location_service"),
 | 
			
		||||
	GetDistrictsByCodes:                    getLocationValue("get_districts_by_codes"),
 | 
			
		||||
	GetDistrictsByCodesFromLocationService: getLocationValue("get_districts_by_codes_from_location_service"),
 | 
			
		||||
	GetWardsByCodes:                        getLocationValue("get_wards_by_codes"),
 | 
			
		||||
	GetWardsByCodesFromLocationService:     getLocationValue("get_wards_by_codes_from_location_service"),
 | 
			
		||||
	GetProvinceByCondition:                 getLocationValue("get_province_by_condition"),
 | 
			
		||||
	GetProvincesByCondition:                getLocationValue("get_provinces_by_condition"),
 | 
			
		||||
	GetDistrictByCondition:                 getLocationValue("get_district_by_condition"),
 | 
			
		||||
	GetDistrictsByCondition:                getLocationValue("get_districts_byCondition"),
 | 
			
		||||
	GetWardByCondition:                     getLocationValue("get_ward_by_condition"),
 | 
			
		||||
	GetWardsByCondition:                    getLocationValue("get_wards_by_condition"),
 | 
			
		||||
	CountProvinceByCondition:               getLocationValue("count_province_by_condition"),
 | 
			
		||||
	CountDistrictByCondition:               getLocationValue("count_district_by_condition"),
 | 
			
		||||
	CountWardByCondition:                   getLocationValue("count_ward_by_condition"),
 | 
			
		||||
	ProvinceDistinctWithField:              getLocationValue("province_distinct_with_field"),
 | 
			
		||||
	GetLocationByCode:   getLocationValue("get_location_warehouse"),
 | 
			
		||||
	GetProvincesByCodes: getLocationValue("get_provinces_by_codes"),
 | 
			
		||||
	GetDistrictsByCodes: getLocationValue("get_districts_by_codes"),
 | 
			
		||||
	GetWardsByCodes:     getLocationValue("get_wards_by_codes"),
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -7,19 +7,15 @@ func getOrderValue(val string) string {
 | 
			
		|||
}
 | 
			
		||||
 | 
			
		||||
var Order = struct {
 | 
			
		||||
	UpdateORStatus            string
 | 
			
		||||
	GetUserTotalWarningOrders string
 | 
			
		||||
	CancelDelivery            string
 | 
			
		||||
	ChangeDeliveryStatus      string
 | 
			
		||||
	UpdateLogisticInfoFailed  string
 | 
			
		||||
	ORNotUpdateStatus         string
 | 
			
		||||
	GetSupplierOrders         string
 | 
			
		||||
	UpdateORStatus           string
 | 
			
		||||
	CancelDelivery           string
 | 
			
		||||
	ChangeDeliveryStatus     string
 | 
			
		||||
	UpdateLogisticInfoFailed string
 | 
			
		||||
	ORNotUpdateStatus        string
 | 
			
		||||
}{
 | 
			
		||||
	UpdateORStatus:            getOrderValue("update_outbound_request_status"),
 | 
			
		||||
	GetUserTotalWarningOrders: getOrderValue("get_user_total_warning_orders"),
 | 
			
		||||
	CancelDelivery:            getOrderValue("cancel_delivery"),
 | 
			
		||||
	ChangeDeliveryStatus:      getOrderValue("change_delivery_status"),
 | 
			
		||||
	UpdateLogisticInfoFailed:  getOrderValue("update_logistic_info_failed"),
 | 
			
		||||
	ORNotUpdateStatus:         getOrderValue("outbound_request_not_update_status"),
 | 
			
		||||
	GetSupplierOrders:         getOrderValue("get_supplier_orders"),
 | 
			
		||||
	UpdateORStatus:           getOrderValue("update_outbound_request_status"),
 | 
			
		||||
	CancelDelivery:           getOrderValue("cancel_delivery"),
 | 
			
		||||
	ChangeDeliveryStatus:     getOrderValue("change_delivery_status"),
 | 
			
		||||
	UpdateLogisticInfoFailed: getOrderValue("update_logistic_info_failed"),
 | 
			
		||||
	ORNotUpdateStatus:        getOrderValue("outbound_request_not_update_status"),
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1,26 +0,0 @@
 | 
			
		|||
package subject
 | 
			
		||||
 | 
			
		||||
import "fmt"
 | 
			
		||||
 | 
			
		||||
// getSegmentValue ...
 | 
			
		||||
func getProductValue(val string) string {
 | 
			
		||||
	return fmt.Sprintf("%s.%s", prefixes.Product, val)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
var Product = struct {
 | 
			
		||||
	ApplyRequest                                        string
 | 
			
		||||
	CreateRequestStep                                   string
 | 
			
		||||
	ProcessApplyRequest                                 string
 | 
			
		||||
	RequestChangeStatus                                 string
 | 
			
		||||
	WebhookStockUpdate                                  string // WebhookStockUpdate Kiotviet queue
 | 
			
		||||
	OPWebhookStockUpdate                                string // OPWebhookStockUpdate Onpoint queue
 | 
			
		||||
	OrderPaymentBankTransferWebhookCheckAndUpdateStatus string
 | 
			
		||||
}{
 | 
			
		||||
	ApplyRequest:         getProductValue("apply_request"),
 | 
			
		||||
	CreateRequestStep:    getProductValue("create_request_step"),
 | 
			
		||||
	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"),
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			@ -1,13 +0,0 @@
 | 
			
		|||
package subject
 | 
			
		||||
 | 
			
		||||
import "fmt"
 | 
			
		||||
 | 
			
		||||
func getPromotionValue(val string) string {
 | 
			
		||||
	return fmt.Sprintf("%s.%s", prefixes.Promotion, val)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
var Promotion = struct {
 | 
			
		||||
	GenerateVoucherPromotion string
 | 
			
		||||
}{
 | 
			
		||||
	GenerateVoucherPromotion: getPromotionValue("generate_voucher_promotion"),
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			@ -1,13 +0,0 @@
 | 
			
		|||
package subject
 | 
			
		||||
 | 
			
		||||
import "fmt"
 | 
			
		||||
 | 
			
		||||
func getQueueValue(val string) string {
 | 
			
		||||
	return fmt.Sprintf("%s.%s", prefixes.Queue, val)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
var Queue = struct {
 | 
			
		||||
	ScheduleTask string
 | 
			
		||||
}{
 | 
			
		||||
	ScheduleTask: getQueueValue("schedule_task"),
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			@ -1,15 +0,0 @@
 | 
			
		|||
package subject
 | 
			
		||||
 | 
			
		||||
import "fmt"
 | 
			
		||||
 | 
			
		||||
// getSegmentValue ...
 | 
			
		||||
func getSegmentValue(val string) string {
 | 
			
		||||
	return fmt.Sprintf("%s.%s", prefixes.Segment, val)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Segment ...
 | 
			
		||||
var Segment = struct {
 | 
			
		||||
	GetListSegmentInfo string
 | 
			
		||||
}{
 | 
			
		||||
	GetListSegmentInfo: getSegmentValue("get_list_segment_info"),
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			@ -8,17 +8,11 @@ func getSellerValue(val string) string {
 | 
			
		|||
 | 
			
		||||
// Seller ...
 | 
			
		||||
var Seller = struct {
 | 
			
		||||
	GetSellerInfoByID                   string
 | 
			
		||||
	GetListSellerInfoByIDs              string
 | 
			
		||||
	CheckAndInsertCashflows             string
 | 
			
		||||
	UpdateSellerAffiliateStatistic      string
 | 
			
		||||
	UpdateSellerSavingCampaignStatistic string
 | 
			
		||||
	GetSellerInfoByID      string
 | 
			
		||||
	GetListSellerInfoByIDs string
 | 
			
		||||
}{
 | 
			
		||||
	GetSellerInfoByID:                   getSellerValue("get_seller_info_by_id"),
 | 
			
		||||
	GetListSellerInfoByIDs:              getSellerValue("get_list_seller_info_by_ids"),
 | 
			
		||||
	CheckAndInsertCashflows:             getSellerValue("check_and_insert_cashflows"),
 | 
			
		||||
	UpdateSellerAffiliateStatistic:      getSellerValue("update_seller_affiliate_statistic"),
 | 
			
		||||
	UpdateSellerSavingCampaignStatistic: getSellerValue("update_seller_saving_campaign_statistic"),
 | 
			
		||||
	GetSellerInfoByID:      getSellerValue("get_seller_info_by_id"),
 | 
			
		||||
	GetListSellerInfoByIDs: getSellerValue("get_list_seller_info_by_ids"),
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// SupportChat ...
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1,17 +0,0 @@
 | 
			
		|||
package subject
 | 
			
		||||
 | 
			
		||||
import "fmt"
 | 
			
		||||
 | 
			
		||||
// getSocialPostValue ...
 | 
			
		||||
func getSocialPostValue(val string) string {
 | 
			
		||||
	return fmt.Sprintf("%s.%s", prefixes.SocialPost, val)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// SocialPost ...
 | 
			
		||||
var SocialPost = struct {
 | 
			
		||||
	GetListSocialPostAppInfoByIDs    string
 | 
			
		||||
	GetBriefInfoSocialPostAdminByIDs string
 | 
			
		||||
}{
 | 
			
		||||
	GetListSocialPostAppInfoByIDs:    getSocialPostValue("get_list_social_post_app_info_by_ids"),
 | 
			
		||||
	GetBriefInfoSocialPostAdminByIDs: getSocialPostValue("get_brief_info_social_post_admin_by_ids"),
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			@ -1,16 +0,0 @@
 | 
			
		|||
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",
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			@ -1,14 +0,0 @@
 | 
			
		|||
package subject
 | 
			
		||||
 | 
			
		||||
import "fmt"
 | 
			
		||||
 | 
			
		||||
func getStaffValue(val string) string {
 | 
			
		||||
	return fmt.Sprintf("%s.%s", prefixes.Staff, val)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Staff ...
 | 
			
		||||
var Staff = struct {
 | 
			
		||||
	GetListStaffInfo string
 | 
			
		||||
}{
 | 
			
		||||
	GetListStaffInfo: getStaffValue("get_list_staff_info"),
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			@ -8,16 +8,10 @@ func getSupplierValue(val string) string {
 | 
			
		|||
 | 
			
		||||
var Supplier = struct {
 | 
			
		||||
	GetListSupplierInfo             string
 | 
			
		||||
	GetDetailSupplierInfo           string
 | 
			
		||||
	GetSupplierContractBySupplierID string
 | 
			
		||||
	FindAll                         string
 | 
			
		||||
	FindAllOld                      string
 | 
			
		||||
	Count                           string
 | 
			
		||||
}{
 | 
			
		||||
	GetListSupplierInfo:             getSupplierValue("get_list_supplier_info"),
 | 
			
		||||
	GetDetailSupplierInfo:           getSupplierValue("get_detail_supplier_info"),
 | 
			
		||||
	GetSupplierContractBySupplierID: getSupplierValue("get_supplier_contract_by_supplier_id"),
 | 
			
		||||
	FindAll:                         getSupplierValue("find_all"),
 | 
			
		||||
	FindAllOld:                      getSupplierValue("find_all_old"),
 | 
			
		||||
	Count:                           getSupplierValue("count"),
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1,15 +0,0 @@
 | 
			
		|||
package subject
 | 
			
		||||
 | 
			
		||||
import "fmt"
 | 
			
		||||
 | 
			
		||||
func getRoleValue(val string) string {
 | 
			
		||||
	return fmt.Sprintf("%s.%s", prefixes.SupplierRole, val)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
var SupplierRole = struct {
 | 
			
		||||
	Create string
 | 
			
		||||
	Update string
 | 
			
		||||
}{
 | 
			
		||||
	Create: getRoleValue("create"),
 | 
			
		||||
	Update: getRoleValue("update"),
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			@ -1,27 +0,0 @@
 | 
			
		|||
package subject
 | 
			
		||||
 | 
			
		||||
import "fmt"
 | 
			
		||||
 | 
			
		||||
func getSupplierUserValue(val string) string {
 | 
			
		||||
	return fmt.Sprintf("%s.%s", prefixes.SupplierUser, val)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
var SupplierUser = struct {
 | 
			
		||||
	// Users
 | 
			
		||||
	CreateOwner            string
 | 
			
		||||
	UpdateOwner            string
 | 
			
		||||
	CreateStaff            string
 | 
			
		||||
	UpdateStaff            string
 | 
			
		||||
	UpdateStatus           string
 | 
			
		||||
	ResetPassword          string
 | 
			
		||||
	CheckTokenSupplierUser string
 | 
			
		||||
}{
 | 
			
		||||
	// Users
 | 
			
		||||
	CreateOwner:            getSupplierUserValue("create_owner"),
 | 
			
		||||
	UpdateOwner:            getSupplierUserValue("update_owner"),
 | 
			
		||||
	CreateStaff:            getSupplierUserValue("create_staff"),
 | 
			
		||||
	UpdateStaff:            getSupplierUserValue("update_staff"),
 | 
			
		||||
	UpdateStatus:           getSupplierUserValue("update_status"),
 | 
			
		||||
	ResetPassword:          getSupplierUserValue("reset_password"),
 | 
			
		||||
	CheckTokenSupplierUser: getSupplierUserValue("check_token_supplier_user"),
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			@ -1,63 +1,45 @@
 | 
			
		|||
package subject
 | 
			
		||||
 | 
			
		||||
import (
 | 
			
		||||
	"fmt"
 | 
			
		||||
)
 | 
			
		||||
import "fmt"
 | 
			
		||||
 | 
			
		||||
func getWarehouseValue(val string) string {
 | 
			
		||||
	return fmt.Sprintf("%s.%s", prefixes.Warehouse, val)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
var Warehouse = struct {
 | 
			
		||||
	CreateWarehouseIntoServiceSupplier   string
 | 
			
		||||
	UpdateWarehouseIntoServiceSupplier   string
 | 
			
		||||
	CreateOutboundRequest                string
 | 
			
		||||
	UpdateOutboundRequestLogistic        string
 | 
			
		||||
	CancelOutboundRequest                string
 | 
			
		||||
	GetConfiguration                     string
 | 
			
		||||
	SyncORStatus                         string
 | 
			
		||||
	WebhookTNC                           string
 | 
			
		||||
	WebhookGlobalCare                    string
 | 
			
		||||
	WebhookOnPoint                       string
 | 
			
		||||
	WebhookViettelFFM                    string
 | 
			
		||||
	FindOne                              string
 | 
			
		||||
	FindByCondition                      string
 | 
			
		||||
	Distinct                             string
 | 
			
		||||
	Count                                string
 | 
			
		||||
	AfterUpdateWarehouse                 string
 | 
			
		||||
	AfterCreateWarehouse                 string
 | 
			
		||||
	UpdateIsClosedSupplier               string
 | 
			
		||||
	GetWarehouses                        string
 | 
			
		||||
	UpdateORDeliveryStatus               string
 | 
			
		||||
	UpdateStatusWarehousePendingInactive string
 | 
			
		||||
	UpdateIsSellyMall                    string
 | 
			
		||||
	UpdateWarehouseConfig                string
 | 
			
		||||
	BulkWriteWarehouseConfig             string
 | 
			
		||||
	GetListWarehouseConfig               string
 | 
			
		||||
	CreateWarehouseIntoServiceSupplier string
 | 
			
		||||
	UpdateWarehouseIntoServiceSupplier string
 | 
			
		||||
	CreateOutboundRequest         string
 | 
			
		||||
	UpdateOutboundRequestLogistic string
 | 
			
		||||
	CancelOutboundRequest         string
 | 
			
		||||
	GetConfiguration              string
 | 
			
		||||
	SyncORStatus                  string
 | 
			
		||||
	WebhookTNC                    string
 | 
			
		||||
	WebhookGlobalCare             string
 | 
			
		||||
	FindOne                       string
 | 
			
		||||
	FindByCondition               string
 | 
			
		||||
	Distinct                      string
 | 
			
		||||
	Count                         string
 | 
			
		||||
	AfterUpdateWarehouse          string
 | 
			
		||||
	AfterCreateWarehouse          string
 | 
			
		||||
	UpdateIsClosedSupplier        string
 | 
			
		||||
	GetWarehouses                 string
 | 
			
		||||
}{
 | 
			
		||||
	CreateWarehouseIntoServiceSupplier:   getWarehouseValue("create_warehouse_into_service_supplier"),
 | 
			
		||||
	UpdateWarehouseIntoServiceSupplier:   getWarehouseValue("update_warehouse_into_service_supplier"),
 | 
			
		||||
	AfterCreateWarehouse:                 getWarehouseValue("after_create_warehouse"),
 | 
			
		||||
	AfterUpdateWarehouse:                 getWarehouseValue("after_update_warehouse"),
 | 
			
		||||
	CreateOutboundRequest:                getWarehouseValue("create_outbound_request"),
 | 
			
		||||
	UpdateOutboundRequestLogistic:        getWarehouseValue("update_outbound_request_logistic_info"),
 | 
			
		||||
	CancelOutboundRequest:                getWarehouseValue("cancel_outbound_request"),
 | 
			
		||||
	GetConfiguration:                     getWarehouseValue("get_configuration"),
 | 
			
		||||
	SyncORStatus:                         getWarehouseValue("sync_or_status"),
 | 
			
		||||
	WebhookTNC:                           getWarehouseValue("webhook_tnc"),
 | 
			
		||||
	WebhookGlobalCare:                    getWarehouseValue("webhook_global_care"),
 | 
			
		||||
	WebhookOnPoint:                       getWarehouseValue("webhook_on_point"),
 | 
			
		||||
	WebhookViettelFFM:                    getWarehouseValue("webhook_viettel_ffm"),
 | 
			
		||||
	FindOne:                              getWarehouseValue("find_one"),
 | 
			
		||||
	FindByCondition:                      getWarehouseValue("find_all_by_condition"),
 | 
			
		||||
	Distinct:                             getWarehouseValue("distinct"),
 | 
			
		||||
	Count:                                getWarehouseValue("count"),
 | 
			
		||||
	UpdateIsClosedSupplier:               getWarehouseValue("update_is_closed_supplier"),
 | 
			
		||||
	GetWarehouses:                        getWarehouseValue("get_warehouses"),
 | 
			
		||||
	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"),
 | 
			
		||||
	CreateWarehouseIntoServiceSupplier: getWarehouseValue("create_warehouse_into_service_supplier"),
 | 
			
		||||
	UpdateWarehouseIntoServiceSupplier: getWarehouseValue("update_warehouse_into_service_supplier"),
 | 
			
		||||
	AfterCreateWarehouse:          getWarehouseValue("after_create_warehouse"),
 | 
			
		||||
	AfterUpdateWarehouse:          getWarehouseValue("after_update_warehouse"),
 | 
			
		||||
	CreateOutboundRequest:         getWarehouseValue("create_outbound_request"),
 | 
			
		||||
	UpdateOutboundRequestLogistic: getWarehouseValue("update_outbound_request_logistic_info"),
 | 
			
		||||
	CancelOutboundRequest:         getWarehouseValue("cancel_outbound_request"),
 | 
			
		||||
	GetConfiguration:              getWarehouseValue("get_configuration"),
 | 
			
		||||
	SyncORStatus:                  getWarehouseValue("sync_or_status"),
 | 
			
		||||
	WebhookTNC:                    getWarehouseValue("webhook_tnc"),
 | 
			
		||||
	WebhookGlobalCare:             getWarehouseValue("webhook_global_care"),
 | 
			
		||||
	FindOne:                       getWarehouseValue("find_one"),
 | 
			
		||||
	FindByCondition:               getWarehouseValue("find_all_by_condition"),
 | 
			
		||||
	Distinct:                      getWarehouseValue("distinct"),
 | 
			
		||||
	Count:                         getWarehouseValue("count"),
 | 
			
		||||
	UpdateIsClosedSupplier:        getWarehouseValue("update_is_closed_supplier"),
 | 
			
		||||
	GetWarehouses:                 getWarehouseValue("get_warehouses"),
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue