Compare commits
61 Commits
master
...
feature/au
Author | SHA1 | Date |
---|---|---|
QuanTT0110 | f0eb62f3f5 | |
Sinh | b5fe2c5a71 | |
Tue | 2b890e01ef | |
Tue | 25cb392d93 | |
Tue | a6f9f9eac7 | |
Tue | 546592f8ce | |
Tue | d2874bc681 | |
Tue | 9297f2d9bd | |
Tue | 87158679a7 | |
Sinh | f3ef44279b | |
Sinh | e0ecb83b9e | |
Sinh | 9c9ed32d58 | |
Minh Nguyen | f6386332de | |
QuanTT0110 | b7d963cc90 | |
Sinh | 65fe4d8380 | |
Sinh | 8d571022fc | |
Sinh | 722fa1aacf | |
quang1472001 | d71d7f0eb4 | |
Tue | af44ea63f4 | |
Tue | c7ad6baf4c | |
Minh Nguyen | 539aa79128 | |
Nguyen Minh | 42874f4937 | |
quang1472001 | ed0f16623a | |
quang1472001 | 3e13cb55b3 | |
quang1472001 | cebb3214cf | |
quang1472001 | b9b55d144e | |
quang1472001 | 29b2b861ff | |
quang1472001 | a86a097886 | |
quang1472001 | 863e924a5e | |
quang1472001 | 7a3e50ef97 | |
Sinh | 13a465b627 | |
Sinh | 7f57a9bd97 | |
trunglt251292 | 8fe3b39134 | |
Sinh | 68146c7c2a | |
Sinh | 439d1a0d5a | |
Minh Nguyen | ed564effe6 | |
Minh Nguyen | c2acdaf244 | |
Minh Nguyen | 40e5219036 | |
Minh Nguyen | df9ccf9d69 | |
Minh Nguyen | e61ae3c10d | |
Nguyen Minh | 36ad0b4972 | |
quang1472001 | d7c0138d6a | |
quang1472001 | 021df099cc | |
Minh Nguyen | 08a9fdabe0 | |
Tue | 6b168cd98a | |
Minh Nguyen | 4a5adc610e | |
trunglt251292 | a9cc99994f | |
trunglt251292 | 6bd4ebce2e | |
trunglt251292 | 3c5c95b103 | |
trunglt251292 | a261c32dc4 | |
Sinh | fa5be3e17c | |
anbuiselly | c449dd44f1 | |
Sinh | af85d25516 | |
Minh Nguyen | 389507050a | |
Sinh | 86269e4292 | |
Tue | 22cd1eb18f | |
Tue | 44f0e4be44 | |
trunglt251292 | ddc0af6338 | |
trunglt251292 | 5f5bfeb182 | |
Nguyen Minh | 139dc6a865 | |
Tue | 4546d0e89b |
|
@ -0,0 +1,60 @@
|
||||||
|
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"
|
||||||
|
"go.mongodb.org/mongo-driver/bson"
|
||||||
|
)
|
||||||
|
|
||||||
|
// AuthSMS ...
|
||||||
|
type AuthSMS struct{}
|
||||||
|
|
||||||
|
// GetAutSMS ...
|
||||||
|
func GetAutSMS() AuthSMS {
|
||||||
|
return AuthSMS{}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (s AuthSMS) CreateUserSMSViaAuthSMS(p model.CreateUserSMSRequest) (*model.CreateUserSMSResponse, error) {
|
||||||
|
msg, err := natsio.GetServer().Request(subject.AuthSMS.CreateUserSMS, toBytes(p))
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
var r struct {
|
||||||
|
Data *model.CreateUserSMSResponse `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 AuthSMS) GetListPermission() (*model.GetListPermissionResponse, error) {
|
||||||
|
msg, err := natsio.GetServer().Request(subject.AuthSMS.GetListPermission, toBytes(bson.M{}))
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
var r struct {
|
||||||
|
Data *model.GetListPermissionResponse `json:"data"`
|
||||||
|
Error string `json:"error"`
|
||||||
|
}
|
||||||
|
|
||||||
|
if err = json.Unmarshal(msg.Data, &r); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
if r.Error != "" {
|
||||||
|
return nil, errors.New(r.Error)
|
||||||
|
}
|
||||||
|
|
||||||
|
return r.Data, nil
|
||||||
|
}
|
|
@ -28,7 +28,7 @@ func (l Location) GetLocationByCode(payload model.LocationRequestPayload) (*mode
|
||||||
Data *model.ResponseLocationAddress `json:"data"`
|
Data *model.ResponseLocationAddress `json:"data"`
|
||||||
Error string `json:"error"`
|
Error string `json:"error"`
|
||||||
}
|
}
|
||||||
if err := json.Unmarshal(msg.Data, &r); err != nil {
|
if err = json.Unmarshal(msg.Data, &r); err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -38,7 +38,7 @@ func (l Location) GetLocationByCode(payload model.LocationRequestPayload) (*mode
|
||||||
return r.Data, nil
|
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.GetProvincesByCodes, toBytes(p))
|
msg, err := natsio.GetServer().Request(subject.Location.GetProvincesByCodes, toBytes(p))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -46,11 +46,11 @@ func (l Location) GetProvincesByCodes(p model.ProvinceRequestPayload) (*model.Lo
|
||||||
}
|
}
|
||||||
|
|
||||||
var r struct {
|
var r struct {
|
||||||
Data *model.LocationProvinceResponse `json:"data"'`
|
Data *model.LocationProvinceResponse `json:"data"`
|
||||||
Error string `json:"error"`
|
Error string `json:"error"`
|
||||||
}
|
}
|
||||||
|
|
||||||
if err := json.Unmarshal(msg.Data, &r); err != nil {
|
if err = json.Unmarshal(msg.Data, &r); err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -71,7 +71,7 @@ func (l Location) GetDistrictsByCodes(p model.DistrictRequestPayload) (*model.Lo
|
||||||
Error string `json:"error"`
|
Error string `json:"error"`
|
||||||
}
|
}
|
||||||
|
|
||||||
if err := json.Unmarshal(msg.Data, &r); err != nil {
|
if err = json.Unmarshal(msg.Data, &r); err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -94,7 +94,7 @@ func (l Location) GetWardsByCodes(p model.WardRequestPayload) (*model.LocationWa
|
||||||
Error string `json:"error"`
|
Error string `json:"error"`
|
||||||
}
|
}
|
||||||
|
|
||||||
if err := json.Unmarshal(msg.Data, &r); err != nil {
|
if err = json.Unmarshal(msg.Data, &r); err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -104,3 +104,211 @@ func (l Location) GetWardsByCodes(p model.WardRequestPayload) (*model.LocationWa
|
||||||
|
|
||||||
return r.Data, nil
|
return r.Data, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// GetProvinceByCondition ...
|
||||||
|
func (l Location) GetProvinceByCondition(p model.ProvinceRequestCondition) (*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.ProvinceRequestCondition) ([]*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.DistrictRequestCondition) (*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.DistrictRequestCondition) ([]*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.WardRequestCondition) (*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.WardRequestCondition) ([]*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.ProvinceRequestCondition) (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.DistrictRequestCondition) (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.WardRequestCondition) (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
|
||||||
|
}
|
||||||
|
|
|
@ -3,6 +3,7 @@ package client
|
||||||
import (
|
import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"errors"
|
"errors"
|
||||||
|
"go.mongodb.org/mongo-driver/bson"
|
||||||
|
|
||||||
"git.selly.red/Selly-Modules/natsio"
|
"git.selly.red/Selly-Modules/natsio"
|
||||||
"git.selly.red/Selly-Modules/natsio/model"
|
"git.selly.red/Selly-Modules/natsio/model"
|
||||||
|
@ -80,27 +81,6 @@ func (s Supplier) FindAll(supplierID model.SupplierRequestPayload) (*model.Suppl
|
||||||
return r.Data, nil
|
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 {
|
|
||||||
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
|
|
||||||
}
|
|
||||||
|
|
||||||
// CreateWarehouseIntoServiceSupplier ...
|
// CreateWarehouseIntoServiceSupplier ...
|
||||||
func (s Supplier) CreateWarehouseIntoServiceSupplier(p model.CreateSupplierWarehousePayload) error {
|
func (s Supplier) CreateWarehouseIntoServiceSupplier(p model.CreateSupplierWarehousePayload) error {
|
||||||
msg, err := natsio.GetServer().Request(subject.Warehouse.CreateWarehouseIntoServiceSupplier, toBytes(p))
|
msg, err := natsio.GetServer().Request(subject.Warehouse.CreateWarehouseIntoServiceSupplier, toBytes(p))
|
||||||
|
@ -136,3 +116,25 @@ func (s Supplier) UpdateWarehouseIntoServiceSupplier(p model.UpdateSupplierWareh
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// GetWarehouseFreeship ...
|
||||||
|
func (s Supplier) GetWarehouseFreeship() (*model.ResponseListWarehouseIDByBusinessType, error) {
|
||||||
|
msg, err := natsio.GetServer().Request(subject.Supplier.GetListWarehouseFreeship, toBytes(bson.M{}))
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
var r struct {
|
||||||
|
Data *model.ResponseListWarehouseIDByBusinessType `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,10 @@
|
||||||
|
package model
|
||||||
|
|
||||||
|
type CreateUserSMSRequest struct {
|
||||||
|
Name string `json:"name"`
|
||||||
|
Phone string `json:"phone"`
|
||||||
|
Email string `json:"email"`
|
||||||
|
Supplier string `json:"supplier"`
|
||||||
|
Role string `json:"role"`
|
||||||
|
Password string `json:"password"`
|
||||||
|
}
|
|
@ -0,0 +1,9 @@
|
||||||
|
package model
|
||||||
|
|
||||||
|
type CreateUserSMSResponse struct {
|
||||||
|
ID string `json:"_id"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type GetListPermissionResponse struct {
|
||||||
|
Permission []string `json:"permission"`
|
||||||
|
}
|
|
@ -1,23 +1,65 @@
|
||||||
package model
|
package model
|
||||||
|
|
||||||
// LocationRequestPayload ...
|
// LocationRequestPayload ...
|
||||||
type LocationRequestPayload struct {
|
type (
|
||||||
Province int `json:"province"`
|
LocationRequestPayload struct {
|
||||||
District int `json:"district"`
|
Province int `json:"province"`
|
||||||
Ward int `json:"ward"`
|
District int `json:"district"`
|
||||||
}
|
Ward int `json:"ward"`
|
||||||
|
}
|
||||||
|
|
||||||
// ProvinceRequestPayload ...
|
// ProvinceRequestPayload ...
|
||||||
type ProvinceRequestPayload struct {
|
ProvinceRequestPayload struct {
|
||||||
Codes []int `json:"codes"`
|
Codes []int `json:"codes"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// DistrictRequestPayload ...
|
// ProvinceRequestCondition ...
|
||||||
type DistrictRequestPayload struct {
|
ProvinceRequestCondition struct {
|
||||||
Codes []int `json:"codes"`
|
Code int `json:"code"`
|
||||||
}
|
Codes []int `json:"codes"`
|
||||||
|
Slug string `json:"slug"`
|
||||||
|
Slugs []string `json:"slugs"`
|
||||||
|
Keyword string `json:"keyword"`
|
||||||
|
Region string `json:"region"`
|
||||||
|
}
|
||||||
|
|
||||||
// WardRequestPayload ...
|
// DistrictRequestPayload ...
|
||||||
type WardRequestPayload struct {
|
DistrictRequestPayload struct {
|
||||||
Codes []int `json:"codes"`
|
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"`
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
|
@ -1,43 +1,96 @@
|
||||||
package model
|
package model
|
||||||
|
|
||||||
type ResponseLocationAddress struct {
|
import "time"
|
||||||
Province LocationProvince `json:"province"`
|
|
||||||
District LocationDistrict `json:"district"`
|
|
||||||
Ward LocationWard `json:"ward"`
|
|
||||||
}
|
|
||||||
|
|
||||||
// LocationProvince ...
|
type (
|
||||||
type LocationProvince struct {
|
// ResponseLocationAddress ...
|
||||||
ID string `json:"id"`
|
ResponseLocationAddress struct {
|
||||||
Name string `json:"name"`
|
Province LocationProvince `json:"province"`
|
||||||
Code int `json:"code"`
|
District LocationDistrict `json:"district"`
|
||||||
}
|
Ward LocationWard `json:"ward"`
|
||||||
|
}
|
||||||
|
|
||||||
// LocationDistrict ...
|
// LocationProvince ...
|
||||||
type LocationDistrict struct {
|
LocationProvince struct {
|
||||||
ID string `json:"id"`
|
ID string `json:"id"`
|
||||||
Name string `json:"name"`
|
Name string `json:"name"`
|
||||||
Code int `json:"code"`
|
Code int `json:"code"`
|
||||||
}
|
RegionCode string `json:"regionCode"`
|
||||||
|
MainRegionCode string `json:"mainRegionCode"`
|
||||||
|
}
|
||||||
|
|
||||||
// LocationWard ...
|
// LocationDistrict ...
|
||||||
type LocationWard struct {
|
LocationDistrict struct {
|
||||||
ID string `json:"id"`
|
ID string `json:"id"`
|
||||||
Name string `json:"name"`
|
Name string `json:"name"`
|
||||||
Code int `json:"code"`
|
Code int `json:"code"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// LocationProvinceResponse ...
|
// LocationWard ...
|
||||||
type LocationProvinceResponse struct {
|
LocationWard struct {
|
||||||
Provinces []LocationProvince `json:"provinces"`
|
ID string `json:"id"`
|
||||||
}
|
Name string `json:"name"`
|
||||||
|
Code int `json:"code"`
|
||||||
|
}
|
||||||
|
|
||||||
// LocationDistrictResponse ...
|
// LocationProvinceResponse ...
|
||||||
type LocationDistrictResponse struct {
|
LocationProvinceResponse struct {
|
||||||
Districts []LocationDistrict `json:"districts"`
|
Provinces []LocationProvince `json:"provinces"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// LocationWardResponse ...
|
// LocationDistrictResponse ...
|
||||||
type LocationWardResponse struct {
|
LocationDistrictResponse struct {
|
||||||
Wards []LocationWard `json:"wards"`
|
Districts []LocationDistrict `json:"districts"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// LocationWardResponse ...
|
||||||
|
LocationWardResponse struct {
|
||||||
|
Wards []LocationWard `json:"wards"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// LocationProvinceDetailResponse ...
|
||||||
|
LocationProvinceDetailResponse struct {
|
||||||
|
ID string `json:"_id"`
|
||||||
|
Name string `json:"name"`
|
||||||
|
SearchString string `json:"searchString"`
|
||||||
|
Slug string `json:"slug"`
|
||||||
|
OldSlug string `json:"oldSlug"`
|
||||||
|
Code int `json:"code"`
|
||||||
|
CountryCode string `json:"countryCode"`
|
||||||
|
RegionCode string `json:"regionCode"`
|
||||||
|
MainRegionCode string `json:"mainRegionCode"`
|
||||||
|
TotalDistricts int `json:"totalDistricts"`
|
||||||
|
TotalWards int `json:"totalWards"`
|
||||||
|
CreatedAt time.Time `json:"createdAt"`
|
||||||
|
UpdatedAt time.Time `json:"updatedAt"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// LocationDistrictDetailResponse ...
|
||||||
|
LocationDistrictDetailResponse struct {
|
||||||
|
ID string `json:"_id"`
|
||||||
|
Name string `json:"name"`
|
||||||
|
SearchString string `json:"searchString"`
|
||||||
|
Slug string `json:"slug"`
|
||||||
|
OldSlug string `json:"oldSlug"`
|
||||||
|
Code int `json:"code"`
|
||||||
|
ProvinceCode int `json:"provinceCode"`
|
||||||
|
Area int `json:"area"`
|
||||||
|
TotalWards int `json:"totalWards"`
|
||||||
|
CreatedAt time.Time `json:"createdAt"`
|
||||||
|
UpdatedAt time.Time `json:"updatedAt"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// LocationWardDetailResponse ...
|
||||||
|
LocationWardDetailResponse struct {
|
||||||
|
ID string `json:"_id"`
|
||||||
|
Name string `json:"name"`
|
||||||
|
SearchString string `json:"searchString"`
|
||||||
|
Slug string `json:"slug"`
|
||||||
|
OldSlugs []string `json:"oldSlugs"`
|
||||||
|
Code int `json:"code"`
|
||||||
|
DistrictCode int `json:"districtCode"`
|
||||||
|
ProvinceCode int `json:"provinceCode"`
|
||||||
|
CreatedAt time.Time `json:"createdAt"`
|
||||||
|
UpdatedAt time.Time `json:"updatedAt"`
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
|
@ -21,16 +21,25 @@ type ResponseListSellerInfoSupportChat struct {
|
||||||
|
|
||||||
// ResponseSellerInfoSupportChat ...
|
// ResponseSellerInfoSupportChat ...
|
||||||
type ResponseSellerInfoSupportChat struct {
|
type ResponseSellerInfoSupportChat 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"`
|
||||||
Membership SellerMembershipInfo `json:"membership"`
|
Membership SellerMembershipInfo `json:"membership"`
|
||||||
Info SellerContactInfo `json:"info"`
|
Info SellerContactInfo `json:"info"`
|
||||||
Team *TeamInfo `json:"team,omitempty"`
|
Team *TeamInfo `json:"team,omitempty"`
|
||||||
Statistic SellerStatistic `json:"statistic"`
|
Statistic SellerStatistic `json:"statistic"`
|
||||||
TrackingTime *SellerTrackingTime `json:"trackingTime"`
|
TrackingTime *SellerTrackingTime `json:"trackingTime"`
|
||||||
Invitee *InviteeInfo `json:"invitee"`
|
Invitee *InviteeInfo `json:"invitee"`
|
||||||
CreatedAt time.Time `json:"createdAt"`
|
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"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// SellerTrackingTime ...
|
// SellerTrackingTime ...
|
||||||
|
|
|
@ -29,3 +29,7 @@ type SupplierAll struct {
|
||||||
Suppliers []SupplierBrief `json:"suppliers"`
|
Suppliers []SupplierBrief `json:"suppliers"`
|
||||||
Total int64 `json:"total"`
|
Total int64 `json:"total"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type ResponseListWarehouseIDByBusinessType struct {
|
||||||
|
Warehouses []string `json:"warehouses"`
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,15 @@
|
||||||
|
package subject
|
||||||
|
|
||||||
|
import "fmt"
|
||||||
|
|
||||||
|
func getAuthSMSValue(val string) string {
|
||||||
|
return fmt.Sprintf("%s.%s", prefixes.AuthSMS, val)
|
||||||
|
}
|
||||||
|
|
||||||
|
var AuthSMS = struct {
|
||||||
|
CreateUserSMS string
|
||||||
|
GetListPermission string
|
||||||
|
}{
|
||||||
|
CreateUserSMS: getAuthSMSValue("create_user_sms"),
|
||||||
|
GetListPermission: getAuthSMSValue("get_list_permission"),
|
||||||
|
}
|
|
@ -9,6 +9,7 @@ var prefixes = struct {
|
||||||
Bank string
|
Bank string
|
||||||
Supplier string
|
Supplier string
|
||||||
Seller string
|
Seller string
|
||||||
|
AuthSMS string
|
||||||
}{
|
}{
|
||||||
Communication: "communication",
|
Communication: "communication",
|
||||||
Order: "order",
|
Order: "order",
|
||||||
|
@ -18,4 +19,5 @@ var prefixes = struct {
|
||||||
Supplier: "supplier",
|
Supplier: "supplier",
|
||||||
Bank: "bank",
|
Bank: "bank",
|
||||||
Seller: "seller",
|
Seller: "seller",
|
||||||
|
AuthSMS: "auth_sms",
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,13 +7,33 @@ func getLocationValue(val string) string {
|
||||||
}
|
}
|
||||||
|
|
||||||
var Location = struct {
|
var Location = struct {
|
||||||
GetLocationByCode string
|
GetLocationByCode string
|
||||||
GetProvincesByCodes string
|
GetProvincesByCodes string
|
||||||
GetDistrictsByCodes string
|
GetDistrictsByCodes string
|
||||||
GetWardsByCodes string
|
GetWardsByCodes string
|
||||||
|
GetProvinceByCondition string
|
||||||
|
GetProvincesByCondition string
|
||||||
|
GetDistrictByCondition string
|
||||||
|
GetDistrictsByCondition string
|
||||||
|
GetWardByCondition string
|
||||||
|
GetWardsByCondition string
|
||||||
|
CountProvinceByCondition string
|
||||||
|
CountDistrictByCondition string
|
||||||
|
CountWardByCondition string
|
||||||
|
ProvinceDistinctWithField string
|
||||||
}{
|
}{
|
||||||
GetLocationByCode: getLocationValue("get_location_warehouse"),
|
GetLocationByCode: getLocationValue("get_location_warehouse"),
|
||||||
GetProvincesByCodes: getLocationValue("get_provinces_by_codes"),
|
GetProvincesByCodes: getLocationValue("get_provinces_by_codes"),
|
||||||
GetDistrictsByCodes: getLocationValue("get_districts_by_codes"),
|
GetDistrictsByCodes: getLocationValue("get_districts_by_codes"),
|
||||||
GetWardsByCodes: getLocationValue("get_wards_by_codes"),
|
GetWardsByCodes: getLocationValue("get_wards_by_codes"),
|
||||||
|
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"),
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,8 +10,10 @@ var Supplier = struct {
|
||||||
GetListSupplierInfo string
|
GetListSupplierInfo string
|
||||||
GetSupplierContractBySupplierID string
|
GetSupplierContractBySupplierID string
|
||||||
FindAll string
|
FindAll string
|
||||||
|
GetListWarehouseFreeship string
|
||||||
}{
|
}{
|
||||||
GetListSupplierInfo: getSupplierValue("get_list_supplier_info"),
|
GetListSupplierInfo: getSupplierValue("get_list_supplier_info"),
|
||||||
GetSupplierContractBySupplierID: getSupplierValue("get_supplier_contract_by_supplier_id"),
|
GetSupplierContractBySupplierID: getSupplierValue("get_supplier_contract_by_supplier_id"),
|
||||||
FindAll: getSupplierValue("find_all"),
|
FindAll: getSupplierValue("find_all"),
|
||||||
|
GetListWarehouseFreeship: getSupplierValue("get_list_warehouse_freeship"),
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue