Compare commits
82 Commits
refactor-l
...
master
Author | SHA1 | Date |
---|---|---|
Minh Nguyen | 9c48edf1e3 | |
Nguyen Minh | 78194a2d43 | |
sinhluu | 0f40121bf7 | |
Minh Nguyen | de84fdc2bf | |
Minh Nguyen | 72d45ed239 | |
Nguyen Minh | a4a6f31ec6 | |
Nguyen Minh | 7ab8f1f3a5 | |
Nguyen Minh | ff223e2b46 | |
Sinh | 2b0d33efc2 | |
Sinh | dfdccfa86a | |
sinhluu | 1384cae433 | |
sinhluu | c82bf48503 | |
Minh Nguyen | 2e5a5b5f0f | |
Nguyen Minh | 2d04611fee | |
Sinh | 1d0b13285a | |
Minh Nguyen | 2b9092ecbe | |
Sinh | fd41b1eadf | |
Sinh | 9004771704 | |
Sinh | 524db8391f | |
sinhluu | 546c45aad4 | |
Sinh | 3a5046f65d | |
Sinh | c6284f3200 | |
Nguyen Minh | 02b699f144 | |
Sinh | a409c0d17c | |
sinhluu | 5edec97ee3 | |
Sinh | 430e07b7d0 | |
Sinh | 7302b78f25 | |
Sinh | e84157281b | |
Sinh | 28178e0c31 | |
Sinh | b3bde5cd09 | |
kingphon | 2ba590a0a0 | |
kingphon | a62eeb60d2 | |
kingphon | 31a13546bb | |
kingphon | b240d7a9d1 | |
kingphon | f58dfd4291 | |
kingphon | ba8af50460 | |
kingphon | 8dd914ca4e | |
trunglam | 10aec9f710 | |
trunglt251292 | 1c7e947344 | |
sinhluu | 898ee7822f | |
sinhluu | 1ca2e5720e | |
Sinh | 202dca2c28 | |
Sinh | 1579e563ac | |
Sinh | a432e7fd44 | |
Sinh | 041dd43616 | |
Minh Nguyen | aaf8de9830 | |
Nguyen Minh | 9c2f55e434 | |
Nguyen Minh | 8ed19af4ea | |
Nguyen Minh | 985a86dbd7 | |
Nguyen Minh | afd6b215d6 | |
Minh Nguyen | d6f50295c7 | |
sinhluu | 983731715b | |
Sinh | d03758a32d | |
Nguyen Minh | 71d674b74c | |
Nguyen Minh | 41b79b4ae8 | |
sinhluu | 53b2215309 | |
Nguyen Minh | ffe9418671 | |
Nguyen Minh | 7b01640583 | |
Sinh | 2e069b94e7 | |
Sinh | aee7b01b40 | |
tuannt20 | 2f64f1fa37 | |
tuannt20 | a1d6840fd9 | |
Nguyen Minh | 0401a57930 | |
Nguyen Minh | 79ad5c401c | |
trunglam | e64ba040b0 | |
quang | dba7cf4691 | |
sinhluu | 0269010ce8 | |
Sinh | 4c328c0858 | |
trunglam | 6626bc8588 | |
anbuiselly | f4f15ea224 | |
trunglam | f43a99628e | |
anbuiselly | 49156e576d | |
anbuiselly | 292c7733f0 | |
anbuiselly | 9a30faa3a2 | |
anbuiselly | f9b2edb032 | |
Sinh | df1fbbcf57 | |
Sinh | 1edc683dd5 | |
Sinh | e7888e2c4c | |
Sinh | 252c82f1e4 | |
Sinh | e66596baf6 | |
Sinh | b19fea04c8 | |
Sinh | 46539db236 |
|
@ -38,6 +38,27 @@ func (l Location) GetLocationByCode(payload model.LocationRequestPayload) (*mode
|
||||||
return r.Data, nil
|
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) {
|
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.GetProvincesByCodesFromLocationService, toBytes(p))
|
||||||
|
|
|
@ -119,3 +119,22 @@ func (o Order) GetSupplierOrders(p model.OrderSupplierQuery) (*model.SupplierOrd
|
||||||
}
|
}
|
||||||
return &r.Data, nil
|
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
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,86 @@
|
||||||
|
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
|
||||||
|
}
|
|
@ -0,0 +1,35 @@
|
||||||
|
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
|
||||||
|
}
|
|
@ -0,0 +1,27 @@
|
||||||
|
package client
|
||||||
|
|
||||||
|
import (
|
||||||
|
"git.selly.red/Selly-Modules/natsio"
|
||||||
|
"git.selly.red/Selly-Modules/natsio/model"
|
||||||
|
"git.selly.red/Selly-Modules/natsio/subject"
|
||||||
|
)
|
||||||
|
|
||||||
|
// Socket ...
|
||||||
|
type Socket struct{}
|
||||||
|
|
||||||
|
// GetSocket ...
|
||||||
|
func GetSocket() Socket {
|
||||||
|
return Socket{}
|
||||||
|
}
|
||||||
|
|
||||||
|
// EmitSocketEventDataReward ...
|
||||||
|
func (s Socket) EmitSocketEventDataReward(p model.PayloadEmitSocketEvent) error {
|
||||||
|
_, err := natsio.GetServer().Request(subject.Socket.EmitEventReward, toBytes(p))
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
// EmitEventToUser ...
|
||||||
|
func (s Socket) EmitEventToUser(p model.PayloadEmitSocketEvent) error {
|
||||||
|
_, err := natsio.GetServer().Request(subject.Socket.EmitEventToUser, toBytes(p))
|
||||||
|
return err
|
||||||
|
}
|
|
@ -146,6 +146,25 @@ func (w Warehouse) GetConfigByWarehouseID(warehouseID string) (*model.WarehouseC
|
||||||
return r.Data, nil
|
return r.Data, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// GetListConfig ...
|
||||||
|
func (w Warehouse) GetListConfig(req model.GetListWarehouseConfigReq) ([]*model.WarehouseConfiguration, error) {
|
||||||
|
msg, err := natsio.GetServer().Request(subject.Warehouse.GetListWarehouseConfig, toBytes(req))
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
var r struct {
|
||||||
|
Data []*model.WarehouseConfiguration `json:"data"`
|
||||||
|
Error string `json:"error"`
|
||||||
|
}
|
||||||
|
if err = json.Unmarshal(msg.Data, &r); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
if r.Error != "" {
|
||||||
|
return nil, errors.New(r.Error)
|
||||||
|
}
|
||||||
|
return r.Data, nil
|
||||||
|
}
|
||||||
|
|
||||||
// GetWarehouses ...
|
// GetWarehouses ...
|
||||||
func (w Warehouse) GetWarehouses(p model.GetWarehousesRequest) (*model.GetWarehousesResponse, error) {
|
func (w Warehouse) GetWarehouses(p model.GetWarehousesRequest) (*model.GetWarehousesResponse, error) {
|
||||||
msg, err := natsio.GetServer().Request(subject.Warehouse.GetWarehouses, toBytes(p))
|
msg, err := natsio.GetServer().Request(subject.Warehouse.GetWarehouses, toBytes(p))
|
||||||
|
@ -182,3 +201,43 @@ func (w Warehouse) UpdateORDeliveryStatus(p model.WarehouseORUpdateDeliveryStatu
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// UpdateStatusWarehousePendingInactive ...
|
||||||
|
func (w Warehouse) UpdateStatusWarehousePendingInactive(p model.UpdateStatusWarehousePendingInactiveRequest) error {
|
||||||
|
msg, err := natsio.GetServer().Request(subject.Warehouse.UpdateStatusWarehousePendingInactive, toBytes(p))
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
var r struct {
|
||||||
|
Error string `json:"error"`
|
||||||
|
}
|
||||||
|
|
||||||
|
if err = json.Unmarshal(msg.Data, &r); err != nil {
|
||||||
|
return fmt.Errorf("nats: update_status_warehouse_pending_inactive %v", err)
|
||||||
|
}
|
||||||
|
if r.Error != "" {
|
||||||
|
return errors.New(r.Error)
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// UpdateIsSellyMall ...
|
||||||
|
func (w Warehouse) UpdateIsSellyMall(p model.UpdateIsSellyMallRequest) error {
|
||||||
|
msg, err := natsio.GetServer().Request(subject.Warehouse.UpdateIsSellyMall, toBytes(p))
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
var r struct {
|
||||||
|
Error string `json:"error"`
|
||||||
|
}
|
||||||
|
|
||||||
|
if err = json.Unmarshal(msg.Data, &r); err != nil {
|
||||||
|
return fmt.Errorf("nats: update_is_selly_mall %v", err)
|
||||||
|
}
|
||||||
|
if r.Error != "" {
|
||||||
|
return errors.New(r.Error)
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
|
@ -3,6 +3,7 @@ package client
|
||||||
import (
|
import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"errors"
|
"errors"
|
||||||
|
|
||||||
"git.selly.red/Selly-Modules/natsio"
|
"git.selly.red/Selly-Modules/natsio"
|
||||||
"git.selly.red/Selly-Modules/natsio/model"
|
"git.selly.red/Selly-Modules/natsio/model"
|
||||||
"git.selly.red/Selly-Modules/natsio/subject"
|
"git.selly.red/Selly-Modules/natsio/subject"
|
||||||
|
@ -83,3 +84,39 @@ func (w Warehouse) FindByCondition(p model.FindWithCondition) ([]*model.Warehous
|
||||||
}
|
}
|
||||||
return r.Data, nil
|
return r.Data, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// UpdateWarehouseConfig ...
|
||||||
|
func (w Warehouse) UpdateWarehouseConfig(p model.UpdatePayload) error {
|
||||||
|
msg, err := natsio.GetServer().Request(subject.Warehouse.UpdateWarehouseConfig, bsonToBytes(p))
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
var r struct {
|
||||||
|
Error string `json:"error"`
|
||||||
|
}
|
||||||
|
if err = json.Unmarshal(msg.Data, &r); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if r.Error != "" {
|
||||||
|
return errors.New(r.Error)
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// BulkWriteWarehouseConfig ...
|
||||||
|
func (w Warehouse) BulkWriteWarehouseConfig(p model.UpdatePayload) error {
|
||||||
|
msg, err := natsio.GetServer().Request(subject.Warehouse.BulkWriteWarehouseConfig, bsonToBytes(p))
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
var r struct {
|
||||||
|
Error string `json:"error"`
|
||||||
|
}
|
||||||
|
if err = json.Unmarshal(msg.Data, &r); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if r.Error != "" {
|
||||||
|
return errors.New(r.Error)
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
|
@ -5,8 +5,14 @@ var Selly = struct {
|
||||||
PushNotification string
|
PushNotification string
|
||||||
UpdateSellerAffiliateStatistic string
|
UpdateSellerAffiliateStatistic string
|
||||||
CheckAnDInsertCashflowBySeller string
|
CheckAnDInsertCashflowBySeller string
|
||||||
|
SubscriberTopic string
|
||||||
|
UpdateSellerSavingCampaignStatistic string
|
||||||
|
GenerateVoucherPromotion string
|
||||||
}{
|
}{
|
||||||
PushNotification: "PULL_PUSH_NOTIFICATION",
|
PushNotification: "PULL_PUSH_NOTIFICATION",
|
||||||
UpdateSellerAffiliateStatistic: "PULL_UPDATE_SELLER_AFFILIATE_STATISTIC",
|
UpdateSellerAffiliateStatistic: "PULL_UPDATE_SELLER_AFFILIATE_STATISTIC",
|
||||||
CheckAnDInsertCashflowBySeller: "PULL_CHECK_AND_INSERT_CASHFLOW_BY_SELLER",
|
CheckAnDInsertCashflowBySeller: "PULL_CHECK_AND_INSERT_CASHFLOW_BY_SELLER",
|
||||||
|
SubscriberTopic: "PULL_SUBSCRIBER_TOPIC",
|
||||||
|
UpdateSellerSavingCampaignStatistic: "PULL_UPDATE_SELLER_SAVING_CAMPAIGN_STATISTIC",
|
||||||
|
GenerateVoucherPromotion: "PULL_GENERATE_VOUCHER_PROMOTION",
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
package jsmodel
|
package jsmodel
|
||||||
|
|
||||||
|
import "go.mongodb.org/mongo-driver/bson/primitive"
|
||||||
|
|
||||||
// PushNotification ...
|
// PushNotification ...
|
||||||
type PushNotification struct {
|
type PushNotification struct {
|
||||||
User string `json:"user"`
|
User string `json:"user"`
|
||||||
|
@ -15,6 +17,8 @@ type NotificationOptions struct {
|
||||||
Title string `json:"title"`
|
Title string `json:"title"`
|
||||||
Content string `json:"content"`
|
Content string `json:"content"`
|
||||||
CampaignID string `json:"campaignId,omitempty"`
|
CampaignID string `json:"campaignId,omitempty"`
|
||||||
|
SellerSavingCampaignID string `json:"sellerSavingCampaignId,omitempty"`
|
||||||
|
SellerSavingCampaignStatus string `json:"sellerSavingCampaignStatus,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// PayloadUpdateSellerAffiliateStatistic ...
|
// PayloadUpdateSellerAffiliateStatistic ...
|
||||||
|
@ -62,4 +66,45 @@ type CashFlowOptions struct {
|
||||||
// Campaign
|
// Campaign
|
||||||
CampaignID string `json:"campaignId,omitempty"`
|
CampaignID string `json:"campaignId,omitempty"`
|
||||||
CampaignName string `json:"campaignName,omitempty"`
|
CampaignName string `json:"campaignName,omitempty"`
|
||||||
|
|
||||||
|
// SavingCampaign
|
||||||
|
SavingCampaignID string `json:"savingCampaignId,omitempty"`
|
||||||
|
SavingCampaignName string `json:"savingCampaignName,omitempty"`
|
||||||
|
|
||||||
|
SavingCampaignItemID string `json:"savingCampaignItemId,omitempty"`
|
||||||
|
SavingCampaignItemName string `json:"savingCampaignItemName,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// PayloadUpdateSellerSavingCampaignStatistic ...
|
||||||
|
type PayloadUpdateSellerSavingCampaignStatistic struct {
|
||||||
|
SellerID string `json:"sellerId"`
|
||||||
|
Statistic SellerSavingCampaignStatistic `json:"statistic"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// SellerSavingCampaignStatistic ...
|
||||||
|
type SellerSavingCampaignStatistic struct {
|
||||||
|
SavingCampaignCashPending float64 `json:"savingCampaignCashPending"`
|
||||||
|
SavingCampaignCashCompleted float64 `json:"savingCampaignCashCompleted"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// GenerateVoucherPromotion ...
|
||||||
|
type GenerateVoucherPromotion struct {
|
||||||
|
Cash float64 `json:"cash"`
|
||||||
|
TargetID primitive.ObjectID `json:"targetId"`
|
||||||
|
TargetType string `json:"targetType"`
|
||||||
|
Options GenerateVoucherPromotionOptions `json:"options"`
|
||||||
|
Seller primitive.ObjectID `json:"seller"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// GenerateVoucherPromotionOptions ...
|
||||||
|
type GenerateVoucherPromotionOptions struct {
|
||||||
|
Title string `json:"title"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// SubscriberNotificationTopic ...
|
||||||
|
type SubscriberNotificationTopic struct {
|
||||||
|
User string `json:"user"`
|
||||||
|
Topic string `json:"topic"`
|
||||||
|
DeviceId string `json:"deviceId"`
|
||||||
|
FCMToken string `json:"fcmToken"`
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,8 +14,14 @@ var Selly = struct {
|
||||||
PushNotification string
|
PushNotification string
|
||||||
UpdateSellerAffiliateStatistic string
|
UpdateSellerAffiliateStatistic string
|
||||||
CheckAnDInsertCashflowBySeller string
|
CheckAnDInsertCashflowBySeller string
|
||||||
|
SubscriberTopic string
|
||||||
|
UpdateSellerSavingCampaignStatistic string
|
||||||
|
GenerateVoucherPromotion string
|
||||||
}{
|
}{
|
||||||
PushNotification: getSellyValue("push_notifications"),
|
PushNotification: getSellyValue("push_notifications"),
|
||||||
UpdateSellerAffiliateStatistic: getSellyValue("update_seller_affiliate_statistic"),
|
UpdateSellerAffiliateStatistic: getSellyValue("update_seller_affiliate_statistic"),
|
||||||
CheckAnDInsertCashflowBySeller: getSellyValue("check_and_insert_cashflow_statistic"),
|
CheckAnDInsertCashflowBySeller: getSellyValue("check_and_insert_cashflow_statistic"),
|
||||||
|
SubscriberTopic: getSellyValue("subscriber_topic"),
|
||||||
|
UpdateSellerSavingCampaignStatistic: getSellyValue("update_seller_saving_campaign_statistic"),
|
||||||
|
GenerateVoucherPromotion: getSellyValue("generate_voucher_promotion"),
|
||||||
}
|
}
|
||||||
|
|
|
@ -43,3 +43,14 @@ type RequestCondition struct {
|
||||||
Page int64 `json:"page"`
|
Page int64 `json:"page"`
|
||||||
Limit int64 `json:"limit"`
|
Limit int64 `json:"limit"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type UpdatePayload struct {
|
||||||
|
Conditions interface{} `json:"conditions"`
|
||||||
|
Payload interface{} `json:"payload"`
|
||||||
|
Opts []*options.UpdateOptions `json:"opts"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type WebhookPayloadV2 struct {
|
||||||
|
Path string `json:"path"` // request URL path from external
|
||||||
|
Data string `json:"data"` // request body
|
||||||
|
}
|
||||||
|
|
|
@ -5,6 +5,9 @@ type CommunicationRequestHttp struct {
|
||||||
ResponseImmediately bool `json:"responseImmediately"`
|
ResponseImmediately bool `json:"responseImmediately"`
|
||||||
Authentication string `json:"authentication"`
|
Authentication string `json:"authentication"`
|
||||||
Payload HttpRequest `json:"payload"`
|
Payload HttpRequest `json:"payload"`
|
||||||
|
|
||||||
|
// collection to store log data, will be prepended with log-, default it stored in logs collections
|
||||||
|
LogTarget string `json:"logTarget"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// HttpRequest ...
|
// HttpRequest ...
|
||||||
|
|
|
@ -32,6 +32,13 @@ type (
|
||||||
Name string `json:"name"`
|
Name string `json:"name"`
|
||||||
Code int `json:"code"`
|
Code int `json:"code"`
|
||||||
Slug string `json:"slug"`
|
Slug string `json:"slug"`
|
||||||
|
Location *GEOLocation `json:"location"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// GEOLocation ...
|
||||||
|
GEOLocation struct {
|
||||||
|
Type string `bson:"type" json:"type"`
|
||||||
|
Coordinates []float64 `bson:"coordinates" json:"coordinates"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// LocationProvinceResponse ...
|
// LocationProvinceResponse ...
|
||||||
|
@ -83,5 +90,6 @@ type (
|
||||||
Code int `json:"code"`
|
Code int `json:"code"`
|
||||||
DistrictCode int `json:"districtCode"`
|
DistrictCode int `json:"districtCode"`
|
||||||
ProvinceCode int `json:"provinceCode"`
|
ProvinceCode int `json:"provinceCode"`
|
||||||
|
Location *GEOLocation `json:"location"`
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
|
@ -49,3 +49,7 @@ type OrderSupplierQuery struct {
|
||||||
SupplierID string `json:"supplierId"`
|
SupplierID string `json:"supplierId"`
|
||||||
WarehouseIDs []string `json:"warehouseIDs"`
|
WarehouseIDs []string `json:"warehouseIDs"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type OrderGetTotalWarningPayload struct {
|
||||||
|
UserID string `json:"userId"`
|
||||||
|
}
|
||||||
|
|
|
@ -33,3 +33,10 @@ type SupplierOrderDelivery struct {
|
||||||
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"`
|
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"`
|
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"`
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,14 @@
|
||||||
|
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"`
|
||||||
|
}
|
|
@ -0,0 +1,8 @@
|
||||||
|
package model
|
||||||
|
|
||||||
|
type QueueScheduleTaskRequest struct {
|
||||||
|
ID string `json:"id"`
|
||||||
|
NatsSubject string `json:"natsSubject"`
|
||||||
|
Data string `json:"data"`
|
||||||
|
StartAt int64 `json:"startAt"` // unix
|
||||||
|
}
|
|
@ -7,6 +7,8 @@ type ResponseSellerInfo struct {
|
||||||
ID string `json:"_id"`
|
ID string `json:"_id"`
|
||||||
Name string `json:"name"`
|
Name string `json:"name"`
|
||||||
Code string `json:"code"`
|
Code string `json:"code"`
|
||||||
|
IsAccountPro bool `json:"isAccountPro"`
|
||||||
|
CashRemaining float64 `json:"cashRemaining"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// ResponseListSellerInfo ...
|
// ResponseListSellerInfo ...
|
||||||
|
|
|
@ -0,0 +1,19 @@
|
||||||
|
package model
|
||||||
|
|
||||||
|
// PayloadEmitSocketEvent ...
|
||||||
|
type PayloadEmitSocketEvent struct {
|
||||||
|
User string `json:"user"`
|
||||||
|
Message string `json:"message"`
|
||||||
|
Data string `json:"data"`
|
||||||
|
IsNotRemove bool `json:"isNotRemove"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// PayloadEventSocketReward ...
|
||||||
|
type PayloadEventSocketReward struct {
|
||||||
|
Type string `json:"type"`
|
||||||
|
Title string `json:"title"`
|
||||||
|
Cash float64 `json:"cash"`
|
||||||
|
Message string `json:"message"`
|
||||||
|
Photo interface{} `json:"photo"`
|
||||||
|
Action *ActionType `json:"action"`
|
||||||
|
}
|
|
@ -5,6 +5,7 @@ type ResponseSupplierInfo struct {
|
||||||
ID string `json:"id"`
|
ID string `json:"id"`
|
||||||
Name string `json:"name"`
|
Name string `json:"name"`
|
||||||
BusinessType string `json:"businessType"`
|
BusinessType string `json:"businessType"`
|
||||||
|
IsSellyMall bool `json:"isSellyMall"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// ResponseSupplierContract ...
|
// ResponseSupplierContract ...
|
||||||
|
|
|
@ -42,6 +42,7 @@ type OutboundRequestItem struct {
|
||||||
UnitCode string `json:"unitCode"`
|
UnitCode string `json:"unitCode"`
|
||||||
Price float64 `json:"price"`
|
Price float64 `json:"price"`
|
||||||
Name string `json:"name"`
|
Name string `json:"name"`
|
||||||
|
PartnerProductCode string `json:"partnerProductCode"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// CustomerInfo ...
|
// CustomerInfo ...
|
||||||
|
@ -63,11 +64,12 @@ type AddressDetail struct {
|
||||||
|
|
||||||
// UpdateOutboundRequestLogisticInfoPayload ...
|
// UpdateOutboundRequestLogisticInfoPayload ...
|
||||||
type UpdateOutboundRequestLogisticInfoPayload struct {
|
type UpdateOutboundRequestLogisticInfoPayload struct {
|
||||||
ShippingLabel string `json:"shippingLabel"`
|
ShippingLabel string `json:"shippingLabel,omitempty"`
|
||||||
TrackingCode string `json:"trackingCode"`
|
TrackingCode string `json:"trackingCode,omitempty"`
|
||||||
ORCode string `json:"orCode"`
|
ORCode string `json:"orCode,omitempty"`
|
||||||
TPLCode string `json:"tplCode"`
|
TPLCode string `json:"tplCode,omitempty"`
|
||||||
OrderID string `json:"orderId"`
|
OrderID string `json:"orderId"`
|
||||||
|
DeliveryStatus string `json:"deliveryStatus,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// CancelOutboundRequest ...
|
// CancelOutboundRequest ...
|
||||||
|
@ -101,6 +103,7 @@ type GetWarehousesRequest struct {
|
||||||
Status string `json:"status"`
|
Status string `json:"status"`
|
||||||
Supplier string `json:"supplier"`
|
Supplier string `json:"supplier"`
|
||||||
BusinessType string `json:"businessType"`
|
BusinessType string `json:"businessType"`
|
||||||
|
IDs []string `json:"ids"`
|
||||||
|
|
||||||
Page int64 `json:"page"`
|
Page int64 `json:"page"`
|
||||||
Limit int64 `json:"limit"`
|
Limit int64 `json:"limit"`
|
||||||
|
@ -113,3 +116,24 @@ type WarehouseORUpdateDeliveryStatus struct {
|
||||||
OrderID string `json:"orderId"`
|
OrderID string `json:"orderId"`
|
||||||
DeliveryStatus string `json:"deliveryStatus"`
|
DeliveryStatus string `json:"deliveryStatus"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// UpdateStatusWarehousePendingInactiveRequest ...
|
||||||
|
type UpdateStatusWarehousePendingInactiveRequest struct {
|
||||||
|
Warehouses []UpdateStatusWarehousePendingInactive `json:"warehouses"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// UpdateIsSellyMallRequest ...
|
||||||
|
type UpdateIsSellyMallRequest struct {
|
||||||
|
SupplierID string `json:"supplier"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// UpdateStatusWarehousePendingInactive ...
|
||||||
|
type UpdateStatusWarehousePendingInactive struct {
|
||||||
|
WarehouseID string `json:"warehouse"`
|
||||||
|
PendingInactive bool `json:"pendingInactive"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type GetListWarehouseConfigReq struct {
|
||||||
|
PartnerCode string `json:"partnerCode"`
|
||||||
|
PartnerIdentityCode string `json:"partnerIdentityCode"`
|
||||||
|
}
|
||||||
|
|
|
@ -65,12 +65,24 @@ type WarehouseOrder struct {
|
||||||
PaymentMethod WarehousePaymentMethod `json:"paymentMethod"`
|
PaymentMethod WarehousePaymentMethod `json:"paymentMethod"`
|
||||||
IsLimitNumberOfPurchases bool `json:"isLimitNumberOfPurchases"`
|
IsLimitNumberOfPurchases bool `json:"isLimitNumberOfPurchases"`
|
||||||
LimitNumberOfPurchases int64 `json:"limitNumberOfPurchases"`
|
LimitNumberOfPurchases int64 `json:"limitNumberOfPurchases"`
|
||||||
|
NotifyOnNewOrder WarehouseConfigNotifyOnNewOrder `json:"notifyOnNewOrder"`
|
||||||
|
LabelSize string `json:"labelSize"`
|
||||||
|
MaximumOrderValue float64 `json:"maximumOrderValue"`
|
||||||
|
MaximumNumberPerBuyerEachMonth int64 `json:"maximumNumberPerBuyerEachMonth"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// WarehouseConfigNotifyOnNewOrder ...
|
||||||
|
type WarehouseConfigNotifyOnNewOrder struct {
|
||||||
|
Enable bool `bson:"enable" json:"enable"`
|
||||||
|
Channel string `bson:"channel" json:"channel"`
|
||||||
|
RoomID string `bson:"roomId" json:"roomId"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// WarehousePaymentMethod ...
|
// WarehousePaymentMethod ...
|
||||||
type WarehousePaymentMethod struct {
|
type WarehousePaymentMethod struct {
|
||||||
Cod bool `json:"cod"`
|
Cod bool `json:"cod"`
|
||||||
BankTransfer bool `json:"bankTransfer"`
|
BankTransfer bool `json:"bankTransfer"`
|
||||||
|
Fundiin bool `json:"fundiin"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// WarehouseDelivery ...
|
// WarehouseDelivery ...
|
||||||
|
@ -144,6 +156,8 @@ type WarehouseNatsResponse struct {
|
||||||
UpdatedAt time.Time `json:"updatedAt"`
|
UpdatedAt time.Time `json:"updatedAt"`
|
||||||
ReasonPendingInactive string `json:"reasonPendingInactive"`
|
ReasonPendingInactive string `json:"reasonPendingInactive"`
|
||||||
IsPendingInactive bool `json:"isPendingInactive"`
|
IsPendingInactive bool `json:"isPendingInactive"`
|
||||||
|
IsFromInternational bool `json:"isFromInternational"`
|
||||||
|
StoreCode string `json:"storeCode"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// WarehouseInfo ...
|
// WarehouseInfo ...
|
||||||
|
@ -172,3 +186,9 @@ type GetWarehousesResponse struct {
|
||||||
Limit int64 `json:"limit"`
|
Limit int64 `json:"limit"`
|
||||||
List []WarehouseInfo `json:"list"`
|
List []WarehouseInfo `json:"list"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type GetListWarehouseConfigRes struct {
|
||||||
|
Total int64 `json:"total"`
|
||||||
|
Limit int64 `json:"limit"`
|
||||||
|
List []WarehouseConfiguration `json:"list"`
|
||||||
|
}
|
||||||
|
|
|
@ -14,8 +14,11 @@ var prefixes = struct {
|
||||||
SocialPost string
|
SocialPost string
|
||||||
Staff string
|
Staff string
|
||||||
Segment string
|
Segment string
|
||||||
|
Product string
|
||||||
|
Queue string
|
||||||
Campaign string
|
Campaign string
|
||||||
Affiliate string
|
Affiliate string
|
||||||
|
Socket string
|
||||||
}{
|
}{
|
||||||
Communication: "communication",
|
Communication: "communication",
|
||||||
Order: "order",
|
Order: "order",
|
||||||
|
@ -30,6 +33,9 @@ var prefixes = struct {
|
||||||
SocialPost: "social_post",
|
SocialPost: "social_post",
|
||||||
Staff: "staff",
|
Staff: "staff",
|
||||||
Segment: "segment",
|
Segment: "segment",
|
||||||
|
Product: "product",
|
||||||
|
Queue: "queue",
|
||||||
Campaign: "campaign",
|
Campaign: "campaign",
|
||||||
Affiliate: "affiliate",
|
Affiliate: "affiliate",
|
||||||
|
Socket: "socket",
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,6 +9,7 @@ func getLocationValue(val string) string {
|
||||||
var Location = struct {
|
var Location = struct {
|
||||||
GetLocationByCode string
|
GetLocationByCode string
|
||||||
GetLocationByCodeFromLocationService string
|
GetLocationByCodeFromLocationService string
|
||||||
|
GetLocationByWardCode string
|
||||||
GetProvincesByCodes string
|
GetProvincesByCodes string
|
||||||
GetProvincesByCodesFromLocationService string
|
GetProvincesByCodesFromLocationService string
|
||||||
GetDistrictsByCodes string
|
GetDistrictsByCodes string
|
||||||
|
@ -28,6 +29,7 @@ var Location = struct {
|
||||||
}{
|
}{
|
||||||
GetLocationByCode: getLocationValue("get_location_warehouse"),
|
GetLocationByCode: getLocationValue("get_location_warehouse"),
|
||||||
GetLocationByCodeFromLocationService: getLocationValue("get_location_warehouse_from_location_service"),
|
GetLocationByCodeFromLocationService: getLocationValue("get_location_warehouse_from_location_service"),
|
||||||
|
GetLocationByWardCode: getLocationValue("get_location_by_ward_code"),
|
||||||
GetProvincesByCodes: getLocationValue("get_provinces_by_codes"),
|
GetProvincesByCodes: getLocationValue("get_provinces_by_codes"),
|
||||||
GetProvincesByCodesFromLocationService: getLocationValue("get_provinces_by_codes_from_location_service"),
|
GetProvincesByCodesFromLocationService: getLocationValue("get_provinces_by_codes_from_location_service"),
|
||||||
GetDistrictsByCodes: getLocationValue("get_districts_by_codes"),
|
GetDistrictsByCodes: getLocationValue("get_districts_by_codes"),
|
||||||
|
|
|
@ -8,6 +8,7 @@ func getOrderValue(val string) string {
|
||||||
|
|
||||||
var Order = struct {
|
var Order = struct {
|
||||||
UpdateORStatus string
|
UpdateORStatus string
|
||||||
|
GetUserTotalWarningOrders string
|
||||||
CancelDelivery string
|
CancelDelivery string
|
||||||
ChangeDeliveryStatus string
|
ChangeDeliveryStatus string
|
||||||
UpdateLogisticInfoFailed string
|
UpdateLogisticInfoFailed string
|
||||||
|
@ -15,6 +16,7 @@ var Order = struct {
|
||||||
GetSupplierOrders string
|
GetSupplierOrders string
|
||||||
}{
|
}{
|
||||||
UpdateORStatus: getOrderValue("update_outbound_request_status"),
|
UpdateORStatus: getOrderValue("update_outbound_request_status"),
|
||||||
|
GetUserTotalWarningOrders: getOrderValue("get_user_total_warning_orders"),
|
||||||
CancelDelivery: getOrderValue("cancel_delivery"),
|
CancelDelivery: getOrderValue("cancel_delivery"),
|
||||||
ChangeDeliveryStatus: getOrderValue("change_delivery_status"),
|
ChangeDeliveryStatus: getOrderValue("change_delivery_status"),
|
||||||
UpdateLogisticInfoFailed: getOrderValue("update_logistic_info_failed"),
|
UpdateLogisticInfoFailed: getOrderValue("update_logistic_info_failed"),
|
||||||
|
|
|
@ -0,0 +1,26 @@
|
||||||
|
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"),
|
||||||
|
}
|
|
@ -0,0 +1,13 @@
|
||||||
|
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"),
|
||||||
|
}
|
|
@ -0,0 +1,16 @@
|
||||||
|
package subject
|
||||||
|
|
||||||
|
import "fmt"
|
||||||
|
|
||||||
|
func getSocketValue(val string) string {
|
||||||
|
return fmt.Sprintf("%s.%s", prefixes.Socket, val)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Socket ...
|
||||||
|
var Socket = struct {
|
||||||
|
EmitEventReward string
|
||||||
|
EmitEventToUser string
|
||||||
|
}{
|
||||||
|
EmitEventReward: getSocketValue("emit_event_reward"),
|
||||||
|
EmitEventToUser: "send_message_to_socket",
|
||||||
|
}
|
|
@ -1,6 +1,8 @@
|
||||||
package subject
|
package subject
|
||||||
|
|
||||||
import "fmt"
|
import (
|
||||||
|
"fmt"
|
||||||
|
)
|
||||||
|
|
||||||
func getWarehouseValue(val string) string {
|
func getWarehouseValue(val string) string {
|
||||||
return fmt.Sprintf("%s.%s", prefixes.Warehouse, val)
|
return fmt.Sprintf("%s.%s", prefixes.Warehouse, val)
|
||||||
|
@ -17,6 +19,7 @@ var Warehouse = struct {
|
||||||
WebhookTNC string
|
WebhookTNC string
|
||||||
WebhookGlobalCare string
|
WebhookGlobalCare string
|
||||||
WebhookOnPoint string
|
WebhookOnPoint string
|
||||||
|
WebhookViettelFFM string
|
||||||
FindOne string
|
FindOne string
|
||||||
FindByCondition string
|
FindByCondition string
|
||||||
Distinct string
|
Distinct string
|
||||||
|
@ -26,6 +29,11 @@ var Warehouse = struct {
|
||||||
UpdateIsClosedSupplier string
|
UpdateIsClosedSupplier string
|
||||||
GetWarehouses string
|
GetWarehouses string
|
||||||
UpdateORDeliveryStatus string
|
UpdateORDeliveryStatus string
|
||||||
|
UpdateStatusWarehousePendingInactive string
|
||||||
|
UpdateIsSellyMall string
|
||||||
|
UpdateWarehouseConfig string
|
||||||
|
BulkWriteWarehouseConfig string
|
||||||
|
GetListWarehouseConfig string
|
||||||
}{
|
}{
|
||||||
CreateWarehouseIntoServiceSupplier: getWarehouseValue("create_warehouse_into_service_supplier"),
|
CreateWarehouseIntoServiceSupplier: getWarehouseValue("create_warehouse_into_service_supplier"),
|
||||||
UpdateWarehouseIntoServiceSupplier: getWarehouseValue("update_warehouse_into_service_supplier"),
|
UpdateWarehouseIntoServiceSupplier: getWarehouseValue("update_warehouse_into_service_supplier"),
|
||||||
|
@ -39,6 +47,7 @@ var Warehouse = struct {
|
||||||
WebhookTNC: getWarehouseValue("webhook_tnc"),
|
WebhookTNC: getWarehouseValue("webhook_tnc"),
|
||||||
WebhookGlobalCare: getWarehouseValue("webhook_global_care"),
|
WebhookGlobalCare: getWarehouseValue("webhook_global_care"),
|
||||||
WebhookOnPoint: getWarehouseValue("webhook_on_point"),
|
WebhookOnPoint: getWarehouseValue("webhook_on_point"),
|
||||||
|
WebhookViettelFFM: getWarehouseValue("webhook_viettel_ffm"),
|
||||||
FindOne: getWarehouseValue("find_one"),
|
FindOne: getWarehouseValue("find_one"),
|
||||||
FindByCondition: getWarehouseValue("find_all_by_condition"),
|
FindByCondition: getWarehouseValue("find_all_by_condition"),
|
||||||
Distinct: getWarehouseValue("distinct"),
|
Distinct: getWarehouseValue("distinct"),
|
||||||
|
@ -46,4 +55,9 @@ var Warehouse = struct {
|
||||||
UpdateIsClosedSupplier: getWarehouseValue("update_is_closed_supplier"),
|
UpdateIsClosedSupplier: getWarehouseValue("update_is_closed_supplier"),
|
||||||
GetWarehouses: getWarehouseValue("get_warehouses"),
|
GetWarehouses: getWarehouseValue("get_warehouses"),
|
||||||
UpdateORDeliveryStatus: getWarehouseValue("update_or_delivery_status"),
|
UpdateORDeliveryStatus: getWarehouseValue("update_or_delivery_status"),
|
||||||
|
UpdateStatusWarehousePendingInactive: getWarehouseValue("update_status_warehouse_pending_inactive"),
|
||||||
|
UpdateIsSellyMall: getWarehouseValue("update_is_selly_mall"),
|
||||||
|
UpdateWarehouseConfig: getWarehouseValue("update_warehouse_config"),
|
||||||
|
BulkWriteWarehouseConfig: getWarehouseValue("bulk_write_warehouse_config"),
|
||||||
|
GetListWarehouseConfig: getWarehouseValue("get_list_warehouse_config"),
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue