Compare commits
13 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
99b0a24d48 | ||
|
|
e5867813ab | ||
|
|
b0e1210f34 | ||
|
|
049b02835b | ||
|
|
6cf4ae89e3 | ||
|
|
8a6ca3b2eb | ||
|
|
25051ee802 | ||
|
|
61a78b1c4c | ||
|
|
97a9d2aba5 | ||
|
|
f02e71d17e | ||
|
|
e6bfa30545 | ||
|
|
f6311fe59e | ||
|
|
8e73d136f2 |
11
client.go
11
client.go
@@ -37,17 +37,20 @@ func NewMockClient(handler http.HandlerFunc) *Client {
|
||||
}
|
||||
|
||||
func (c Client) newRequest(ctx context.Context, method string, uri string, body interface{}) (*http.Request, error) {
|
||||
var err error
|
||||
var bodyJson []byte
|
||||
|
||||
// Set default values for empty fields if `default` tag is present
|
||||
// And body is not nil
|
||||
if body != nil {
|
||||
if err := getDefaultValues(reflect.ValueOf(body)); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
}
|
||||
|
||||
bodyJson, err := json.Marshal(body)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
bodyJson, err = json.Marshal(body)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
}
|
||||
|
||||
uri, err = url.JoinPath(c.baseUrl, uri)
|
||||
|
||||
42
core.go
42
core.go
@@ -5,6 +5,7 @@ import (
|
||||
"net/http"
|
||||
"reflect"
|
||||
"strconv"
|
||||
"strings"
|
||||
"testing"
|
||||
"time"
|
||||
)
|
||||
@@ -162,3 +163,44 @@ func TimeFromString(t *testing.T, format, datetime string) time.Time {
|
||||
}
|
||||
return dt
|
||||
}
|
||||
|
||||
const ShortDateLayout = "2006-01-02"
|
||||
|
||||
// Do not use this structure for responses
|
||||
// as there are no ways to unmarshal to any layout
|
||||
// and leave nil if json field is null
|
||||
type TimeFormat struct {
|
||||
time.Time
|
||||
layout string
|
||||
}
|
||||
|
||||
func NewTimeFormat(t time.Time, layout string) *TimeFormat {
|
||||
return &TimeFormat{
|
||||
Time: t,
|
||||
layout: layout,
|
||||
}
|
||||
}
|
||||
|
||||
func newTimeLayout(layout string) *TimeFormat {
|
||||
return &TimeFormat{
|
||||
layout: layout,
|
||||
}
|
||||
}
|
||||
|
||||
func (rd *TimeFormat) UnmarshalJSON(b []byte) error {
|
||||
var err error
|
||||
|
||||
s := strings.Trim(string(b), `"`) // remove quotes
|
||||
|
||||
// Added for extra accuracy
|
||||
// encoding/json won't invoke this method if field is null
|
||||
if s == "null" {
|
||||
return nil
|
||||
}
|
||||
rd.Time, err = time.Parse(rd.layout, s)
|
||||
return err
|
||||
}
|
||||
|
||||
func (rd *TimeFormat) MarshalJSON() ([]byte, error) {
|
||||
return []byte(fmt.Sprintf(`%q`, rd.Time.Format(rd.layout))), nil
|
||||
}
|
||||
|
||||
96
core_test.go
96
core_test.go
@@ -1,8 +1,10 @@
|
||||
package core
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
"reflect"
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/stretchr/testify/assert"
|
||||
)
|
||||
@@ -54,3 +56,97 @@ func TestDefaultValues(t *testing.T) {
|
||||
assert.Equal(t, "empty_string", req.OptionalStructure.EmptyField)
|
||||
assert.Equal(t, (*DefaultStructure)(nil), req.EmptyOptionalStructure)
|
||||
}
|
||||
|
||||
func TestTimeFormat(t *testing.T) {
|
||||
t.Run("Time Format Marshalling", func(t *testing.T) {
|
||||
tests := []struct {
|
||||
ft *TimeFormat
|
||||
layout string
|
||||
expectedJSON string
|
||||
diff time.Duration
|
||||
}{
|
||||
{
|
||||
ft: NewTimeFormat(time.Date(2024, 4, 30, 15, 42, 12, 55, time.FixedZone("Test Zone", 0)), ShortDateLayout),
|
||||
layout: ShortDateLayout,
|
||||
expectedJSON: `"2024-04-30"`,
|
||||
diff: time.Hour * 24,
|
||||
},
|
||||
{
|
||||
ft: NewTimeFormat(time.Date(2024, 4, 30, 0, 0, 0, 0, time.FixedZone("Test Zone", 0)), ShortDateLayout),
|
||||
layout: ShortDateLayout,
|
||||
expectedJSON: `"2024-04-30"`,
|
||||
diff: time.Hour * 24,
|
||||
},
|
||||
{
|
||||
ft: NewTimeFormat(time.Time{}, ShortDateLayout),
|
||||
layout: ShortDateLayout,
|
||||
expectedJSON: `"0001-01-01"`,
|
||||
diff: time.Hour * 24,
|
||||
},
|
||||
{
|
||||
ft: nil,
|
||||
layout: ShortDateLayout,
|
||||
expectedJSON: `null`,
|
||||
diff: time.Hour * 24,
|
||||
},
|
||||
}
|
||||
|
||||
for _, tc := range tests {
|
||||
marshaled, err := json.Marshal(tc.ft)
|
||||
assert.Equal(t, nil, err)
|
||||
assert.Equal(t, tc.expectedJSON, string(marshaled))
|
||||
|
||||
unmarshaled := newTimeLayout(tc.layout)
|
||||
err = json.Unmarshal(marshaled, unmarshaled)
|
||||
assert.Equal(t, nil, err)
|
||||
|
||||
if tc.ft != nil {
|
||||
diffedTime := tc.ft.Add(-tc.diff)
|
||||
assert.Equal(t, true, diffedTime.Before(unmarshaled.Time) || diffedTime.Equal(unmarshaled.Time))
|
||||
assert.Equal(t, true, tc.ft.After(unmarshaled.Time) || tc.ft.Equal(unmarshaled.Time))
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
t.Run("Time Format in structure Marshalling", func(t *testing.T) {
|
||||
type test struct {
|
||||
Date *TimeFormat `json:"date"`
|
||||
}
|
||||
|
||||
tests := []struct {
|
||||
structure *test
|
||||
layout string
|
||||
expectedJSON string
|
||||
diff time.Duration
|
||||
}{
|
||||
{
|
||||
structure: &test{Date: NewTimeFormat(time.Date(2024, 4, 30, 5, 4, 7, 20, time.FixedZone("Test Zone", 0)), ShortDateLayout)},
|
||||
layout: ShortDateLayout,
|
||||
expectedJSON: `{"date":"2024-04-30"}`,
|
||||
diff: time.Hour * 24,
|
||||
},
|
||||
{
|
||||
structure: &test{Date: nil},
|
||||
layout: ShortDateLayout,
|
||||
expectedJSON: `{"date":null}`,
|
||||
diff: time.Hour * 24,
|
||||
},
|
||||
}
|
||||
|
||||
for _, tc := range tests {
|
||||
marshaled, err := json.Marshal(tc.structure)
|
||||
assert.Equal(t, nil, err)
|
||||
assert.Equal(t, tc.expectedJSON, string(marshaled))
|
||||
|
||||
unmarshaled := &test{Date: newTimeLayout(tc.layout)}
|
||||
err = json.Unmarshal(marshaled, unmarshaled)
|
||||
assert.Equal(t, nil, err)
|
||||
|
||||
if tc.structure != nil && tc.structure.Date != nil {
|
||||
diffedTime := tc.structure.Date.Add(-tc.diff)
|
||||
assert.Equal(t, true, diffedTime.Before(unmarshaled.Date.Time) || diffedTime.Equal(unmarshaled.Date.Time))
|
||||
assert.Equal(t, true, tc.structure.Date.After(unmarshaled.Date.Time) || tc.structure.Date.Equal(unmarshaled.Date.Time))
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
@@ -3,7 +3,6 @@ package ozon
|
||||
import (
|
||||
"context"
|
||||
"net/http"
|
||||
"time"
|
||||
|
||||
core "github.com/diphantxm/ozon-api-client"
|
||||
)
|
||||
@@ -14,10 +13,10 @@ type Analytics struct {
|
||||
|
||||
type GetAnalyticsDataParams struct {
|
||||
// Date from which the data will be in the report
|
||||
DateFrom time.Time `json:"date_from"`
|
||||
DateFrom *core.TimeFormat `json:"date_from"`
|
||||
|
||||
// Date up to which the data will be in the report
|
||||
DateTo time.Time `json:"date_to"`
|
||||
DateTo *core.TimeFormat `json:"date_to"`
|
||||
|
||||
// Items Enum: "unknownDimension" "sku" "spu" "day" "week" "month" "year" "category1" "category2" "category3" "category4" "brand" "modelID"
|
||||
// Data grouping available to all sellers:
|
||||
@@ -126,7 +125,7 @@ type GetAnalyticsDataResultData struct {
|
||||
}
|
||||
|
||||
type GetAnalyticsDataResultDimension struct {
|
||||
// Identifier
|
||||
// Product SKU
|
||||
Id string `json:"id"`
|
||||
|
||||
// Name
|
||||
|
||||
@@ -4,6 +4,7 @@ import (
|
||||
"context"
|
||||
"net/http"
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
core "github.com/diphantxm/ozon-api-client"
|
||||
)
|
||||
@@ -22,8 +23,8 @@ func TestGetAnalyticsData(t *testing.T) {
|
||||
http.StatusOK,
|
||||
map[string]string{"Client-Id": "my-client-id", "Api-Key": "my-api-key"},
|
||||
&GetAnalyticsDataParams{
|
||||
DateFrom: core.TimeFromString(t, "2006-01-02", "2020-09-01"),
|
||||
DateTo: core.TimeFromString(t, "2006-01-02", "2021-10-15"),
|
||||
DateFrom: core.NewTimeFormat(time.Now().Add(time.Duration(30)*24*time.Hour), core.ShortDateLayout),
|
||||
DateTo: core.NewTimeFormat(time.Now(), core.ShortDateLayout),
|
||||
Dimension: []GetAnalyticsDataDimension{SKUDimension, DayDimension},
|
||||
Metrics: []GetAnalyticsDataFilterMetric{HistViewPDP},
|
||||
Sort: []GetAnalyticsDataSort{
|
||||
|
||||
@@ -41,7 +41,7 @@ type CancellationInfo struct {
|
||||
CancellationReasonMessage string `json:"cancellation_reason_message"`
|
||||
|
||||
// Delivery service integration type
|
||||
TPLIntegrationType string `json:"tpl_integration_type"`
|
||||
TPLIntegrationType TPLIntegrationType `json:"tpl_integration_type"`
|
||||
|
||||
// Cancellation request status
|
||||
State CancellationInfoState `json:"state"`
|
||||
|
||||
@@ -81,6 +81,12 @@ type GetCategoryAttributesResponse struct {
|
||||
}
|
||||
|
||||
type GetCategoryAttributesResult struct {
|
||||
// Indication that the dictionary attribute values depend on the category:
|
||||
//
|
||||
// true — the attribute has its own set of values for each category.
|
||||
// false — the attribute has the same set of values for all categories
|
||||
CategoryDependent bool `json:"category_dependent"`
|
||||
|
||||
// Characteristic description
|
||||
Description string `json:"description"`
|
||||
|
||||
|
||||
@@ -88,6 +88,7 @@ func TestGetCategoryAttributes(t *testing.T) {
|
||||
`{
|
||||
"result": [
|
||||
{
|
||||
"category_dependent": true,
|
||||
"description": "string",
|
||||
"dictionary_id": 0,
|
||||
"group_id": 0,
|
||||
|
||||
@@ -217,7 +217,7 @@ type ChatHistoryMessageUser struct {
|
||||
Type string `json:"type"`
|
||||
}
|
||||
|
||||
// Chat history
|
||||
// Returns the history of chat messages. By default messages are shown from newest to oldest.
|
||||
func (c Chats) History(ctx context.Context, params *ChatHistoryParams) (*ChatHistoryResponse, error) {
|
||||
url := "/v2/chat/history"
|
||||
|
||||
|
||||
143
ozon/common.go
143
ozon/common.go
@@ -1,6 +1,8 @@
|
||||
package ozon
|
||||
|
||||
import "time"
|
||||
import (
|
||||
"time"
|
||||
)
|
||||
|
||||
const (
|
||||
testTimeout = 5 * time.Second
|
||||
@@ -91,16 +93,16 @@ const (
|
||||
Purchased ListDiscountRequestsStatus = "PURCHASED"
|
||||
)
|
||||
|
||||
type WorkingDay string
|
||||
type WorkingDay int
|
||||
|
||||
const (
|
||||
Mon WorkingDay = "1"
|
||||
Tue WorkingDay = "2"
|
||||
Wed WorkingDay = "3"
|
||||
Thu WorkingDay = "4"
|
||||
Fri WorkingDay = "5"
|
||||
Sat WorkingDay = "6"
|
||||
Sun WorkingDay = "7"
|
||||
Mon WorkingDay = 1
|
||||
Tue WorkingDay = 2
|
||||
Wed WorkingDay = 3
|
||||
Thu WorkingDay = 4
|
||||
Fri WorkingDay = 5
|
||||
Sat WorkingDay = 6
|
||||
Sun WorkingDay = 7
|
||||
)
|
||||
|
||||
type GetAnalyticsDataDimension string
|
||||
@@ -312,6 +314,9 @@ const (
|
||||
|
||||
// delivery by the seller
|
||||
NonIntegratedTPLType TPLIntegrationType = "non_integrated"
|
||||
|
||||
// Russian Post delivery scheme
|
||||
HybrydTPLType TPLIntegrationType = "hybryd"
|
||||
)
|
||||
|
||||
type DetailsDeliveryItemName string
|
||||
@@ -681,3 +686,123 @@ const (
|
||||
// Check is failed
|
||||
MandatoryMarkStatusFailed MandatoryMarkStatus = "failed"
|
||||
)
|
||||
|
||||
type GetCarriageStatus string
|
||||
|
||||
const (
|
||||
// acceptance in progress
|
||||
GetCarriageStatusReceived GetCarriageStatus = "received"
|
||||
|
||||
// closed after acceptance
|
||||
GetCarriageStatusClosed GetCarriageStatus = "closed"
|
||||
|
||||
GetCarriageStatusSended GetCarriageStatus = "sended"
|
||||
|
||||
GetCarriageStatusCancelled GetCarriageStatus = "cancelled"
|
||||
)
|
||||
|
||||
type TransactionOperationService string
|
||||
|
||||
const (
|
||||
// return of unclaimed products from the customer to the warehouse
|
||||
TransactionNotDelivered TransactionOperationService = "MarketplaceNotDeliveredCostItem"
|
||||
|
||||
// return from the customer to the warehouse after delivery
|
||||
TransactionReturnAfterDelivery TransactionOperationService = "TransactionOperationServiceNotDelivered"
|
||||
|
||||
// product delivery to the customer
|
||||
TransactionDelivery TransactionOperationService = "MarketplaceDeliveryCostItem"
|
||||
|
||||
// purchasing reviews on the platform
|
||||
TransactionSaleReviews TransactionOperationService = "MarketplaceSaleReviewsItem"
|
||||
|
||||
// products delivery to the Ozon warehouse (cross docking)
|
||||
TransactionItemAdForSupplierLogistic TransactionOperationService = "ItemAdvertisementForSupplierLogistic"
|
||||
|
||||
// product placement service
|
||||
TransactionServiceStorageItem TransactionOperationService = "MarketplaceServiceStorageItem"
|
||||
|
||||
// products promotion
|
||||
TransactionMarketingActionCost TransactionOperationService = "MarketplaceMarketingActionCostItem"
|
||||
|
||||
// promotion and selling on an instalment plan
|
||||
TransactionServiceItemInstallment TransactionOperationService = "MarketplaceServiceItemInstallment"
|
||||
|
||||
// mandatory products labeling
|
||||
TransactionServiceMarkingItems TransactionOperationService = "MarketplaceServiceItemMarkingItems"
|
||||
|
||||
// flexible payment schedule
|
||||
TransactionServiceFlexiblePaymentSchedule TransactionOperationService = "MarketplaceServiceItemFlexiblePaymentSchedule"
|
||||
|
||||
// picking up products for removal by the seller
|
||||
TransactionServiceReturnFromStock TransactionOperationService = "MarketplaceServiceItemReturnFromStock"
|
||||
|
||||
// forwarding trade
|
||||
TransactionItemAdForSupplierLogisticSeller TransactionOperationService = "ItemAdvertisementForSupplierLogisticSeller"
|
||||
|
||||
// last mile
|
||||
TransactionServiceDeliveryToCustomer TransactionOperationService = "MarketplaceServiceItemDelivToCustomer"
|
||||
|
||||
// pipeline
|
||||
TransactionServiceDirectFlowTrans TransactionOperationService = "MarketplaceServiceItemDirectFlowTrans"
|
||||
|
||||
// shipment processing
|
||||
TransactionServiceDropoffFF TransactionOperationService = "MarketplaceServiceItemDropoffFF"
|
||||
|
||||
// shipment processing
|
||||
TransactionServiceDropoffPVZ TransactionOperationService = "MarketplaceServiceItemDropoffPVZ"
|
||||
|
||||
// shipment processing
|
||||
TransactionServiceDropoffSC TransactionOperationService = "MarketplaceServiceItemDropoffSC"
|
||||
|
||||
// order packaging
|
||||
TransactionServiceFulfillment TransactionOperationService = "MarketplaceServiceItemFulfillment"
|
||||
|
||||
// picking products up by car from the seller's address (Pick-up)
|
||||
TransactionServicePickup TransactionOperationService = "MarketplaceServiceItemPickup"
|
||||
|
||||
// return processing
|
||||
TransactionServiceReturnAfterDelivToCustomer TransactionOperationService = "MarketplaceServiceItemReturnAfterDelivToCustomer"
|
||||
|
||||
// reverse pipeline
|
||||
TransactionServiceReturnFlowTrans TransactionOperationService = "MarketplaceServiceItemReturnFlowTrans"
|
||||
|
||||
// cancellation processing
|
||||
TransactionServiceReturnNotDelivToCustomer TransactionOperationService = "MarketplaceServiceItemReturnNotDelivToCustomer"
|
||||
|
||||
// unredeemed order processing
|
||||
TransactionServiceReturnPartGoodsCustomer TransactionOperationService = "MarketplaceServiceItemReturnPartGoodsCustomer"
|
||||
|
||||
// acquiring payment
|
||||
TransactionRedistributionOfAcquiringOperation TransactionOperationService = "MarketplaceRedistributionOfAcquiringOperation"
|
||||
|
||||
// FBS return short-term placement
|
||||
TransactionServiceAtPickupPointFBS TransactionOperationService = "MarketplaceReturnStorageServiceAtThePickupPointFbsItem"
|
||||
|
||||
// FBS return long-term placement
|
||||
TransactionServiceInWarehouseFBS TransactionOperationService = "MarketplaceReturnStorageServiceInTheWarehouseFbsItem"
|
||||
|
||||
// bulky products delivery
|
||||
TransactionServiceDeliveryKGT TransactionOperationService = "MarketplaceServiceItemDeliveryKGT"
|
||||
|
||||
// logistics
|
||||
TransactionServiceDirectFlowLogistic TransactionOperationService = "MarketplaceServiceItemDirectFlowLogistic"
|
||||
|
||||
// reverse logistics
|
||||
TransactionServiceReturnFlowLogistic TransactionOperationService = "MarketplaceServiceItemReturnFlowLogistic"
|
||||
|
||||
// "Seller's Bonus" promotion service
|
||||
TransactionServicePremiumCashbackIndPoints TransactionOperationService = "MarketplaceServicePremiumCashbackIndividualPoints"
|
||||
|
||||
// Premium promotion service, fixed commission
|
||||
TransactionServicePremiumPromotion TransactionOperationService = "MarketplaceServicePremiumPromotion"
|
||||
|
||||
// withholding for product shortage
|
||||
TransactionServiceWithHoldingForUndeliverableGoods TransactionOperationService = "OperationMarketplaceWithHoldingForUndeliverableGoods"
|
||||
|
||||
// drop-off service at the pick-up point
|
||||
TransactionServiceDropoffPPZ TransactionOperationService = "MarketplaceServiceItemDropoffPPZ"
|
||||
|
||||
// reissue of returns at the pick-up point
|
||||
TransactionServiceRedistributionReturnsPVZ TransactionOperationService = "MarketplaceServiceItemRedistributionReturnsPVZ"
|
||||
)
|
||||
|
||||
139
ozon/fbs.go
139
ozon/fbs.go
@@ -174,7 +174,7 @@ type FBSPosting struct {
|
||||
Substatus string `json:"substatus"`
|
||||
|
||||
// Type of integration with the delivery service
|
||||
TPLIntegrationType string `json:"tpl_integration_type"`
|
||||
TPLIntegrationType TPLIntegrationType `json:"tpl_integration_type"`
|
||||
|
||||
// Shipment tracking number
|
||||
TrackingNumber string `json:"tracking_number"`
|
||||
@@ -1831,24 +1831,37 @@ type CheckProductItemsDataResponse struct {
|
||||
|
||||
// Asynchronous method:
|
||||
//
|
||||
// for checking the availability of product items in the “Chestny ZNAK” labeling system;
|
||||
// for saving product items data.
|
||||
// To get the checks results, use the `/v4/fbs/posting/product/exemplar/status` method.
|
||||
// To get data about created items, use the `/v5/fbs/fbs/posting/product/exemplar/create-or-get` method.
|
||||
// for checking the availability of product items in the “Chestny ZNAK” labeling system;
|
||||
// for saving product items data.
|
||||
//
|
||||
// If necessary, specify the number of the cargo customs declaration in the gtd parameter.
|
||||
// If it is missing, pass the value `is_gtd_absent` = true.
|
||||
// To get the checks results,
|
||||
// use the /v4/fbs/posting/product/exemplar/status method.
|
||||
// To get data about created items,
|
||||
// use the /v5/fbs/fbs/posting/product/exemplar/create-or-get method.
|
||||
//
|
||||
// If you have multiple identical products in a shipment, specify one `product_id` and exemplars array for each product in the shipment.
|
||||
// If necessary, specify the number of the cargo customs declaration
|
||||
// in the gtd parameter. If it is missing,
|
||||
// pass the value is_gtd_absent = true.
|
||||
//
|
||||
// If you have multiple identical products in a shipment,
|
||||
// specify one product_id and exemplars array for each product in the shipment.
|
||||
//
|
||||
// Always pass a complete set of product items data.
|
||||
//
|
||||
// For example, you have 10 product items in your system.
|
||||
// You've passed them for checking and saving.
|
||||
// Then you added another 60 product items to your system.
|
||||
// When you pass product items for checking and saving again, pass all of them: both old and newly added.
|
||||
// When you pass product items for checking and saving again,
|
||||
// pass all of them: both old and newly added.
|
||||
//
|
||||
// Unlike /v4/fbs/posting/product/exemplar/set,
|
||||
// you can pass more item information in the request.
|
||||
//
|
||||
// The 200 response code doesn't guarantee that instance data has been received.
|
||||
// It indicates that a task for adding the information has been created.
|
||||
// To check the task status, use the /v4/fbs/posting/product/exemplar/status method.
|
||||
func (c FBS) CheckProductItemsData(ctx context.Context, params *CheckProductItemsDataParams) (*CheckProductItemsDataResponse, error) {
|
||||
url := "/v4/fbs/posting/product/exemplar/set"
|
||||
url := "/v5/fbs/posting/product/exemplar/set"
|
||||
|
||||
resp := &CheckProductItemsDataResponse{}
|
||||
|
||||
@@ -2082,10 +2095,15 @@ type PartialPackOrderAdditionalData struct {
|
||||
Products []PostingProduct `json:"products"`
|
||||
}
|
||||
|
||||
// If you pass to the request a part of the products from the shipment, the primary shipment will split into two parts.
|
||||
// The primary unassembled shipment will contain some of the products that were not passed to the request.
|
||||
// If you pass some of the shipped products through the request,
|
||||
// the primary shipment will split into two parts.
|
||||
// The primary unassembled shipment will contain some of the products
|
||||
// that weren't passed to the request.
|
||||
//
|
||||
// The status of the original shipment will only change when the split shipments status changes
|
||||
// Default status of created shipments is awaiting_deliver.
|
||||
//
|
||||
// The status of the original shipment will only change
|
||||
// when the split shipments status changes
|
||||
func (c FBS) PartialPackOrder(ctx context.Context, params *PartialPackOrderParams) (*PartialPackOrderResponse, error) {
|
||||
url := "/v4/posting/fbs/ship/package"
|
||||
|
||||
@@ -2869,6 +2887,8 @@ type CreateOrGetProductExemplarResponse struct {
|
||||
}
|
||||
|
||||
// Method returns the created items data passed in the `/v5/fbs/posting/product/exemplar/set` method.
|
||||
//
|
||||
// Use this method to get the `exemplar_id`
|
||||
func (c FBS) CreateOrGetProductExemplar(ctx context.Context, params *CreateOrGetProductExemplarParams) (*CreateOrGetProductExemplarResponse, error) {
|
||||
url := "/v5/fbs/posting/product/exemplar/create-or-get"
|
||||
|
||||
@@ -2882,3 +2902,96 @@ func (c FBS) CreateOrGetProductExemplar(ctx context.Context, params *CreateOrGet
|
||||
|
||||
return resp, nil
|
||||
}
|
||||
|
||||
type GetCarriageParams struct {
|
||||
CarriageId int64 `json:"carriage_id"`
|
||||
}
|
||||
|
||||
type GetCarriageResponse struct {
|
||||
core.CommonResponse
|
||||
|
||||
// Acceptance certificate type for FBS sellers
|
||||
ActType string `json:"act_type"`
|
||||
|
||||
// Pass identifiers for the freight
|
||||
ArrivalPassIds []string `json:"arrival_pass_ids"`
|
||||
|
||||
// List of available actions on the freight
|
||||
AvailableActions []string `json:"available_actions"`
|
||||
|
||||
// Cancel availability
|
||||
CancelAvailability GetCarriageCancelAvailability `json:"cancel_availability"`
|
||||
|
||||
// Freight identifier
|
||||
CarriageId int64 `json:"carriage_id"`
|
||||
|
||||
// Company identifier
|
||||
CompanyId int64 `json:"company_id"`
|
||||
|
||||
// Number of package units
|
||||
ContainersCount int32 `json:"containers_count"`
|
||||
|
||||
// Date and time of freight creation
|
||||
CreatedAt time.Time `json:"created_at"`
|
||||
|
||||
// Delivery method identifier
|
||||
DeliveryMethodId int64 `json:"delivery_method_id"`
|
||||
|
||||
// Shipping date
|
||||
DepartureDate string `json:"departure_date"`
|
||||
|
||||
// First mile type
|
||||
FirstMileType string `json:"first_mile_type"`
|
||||
|
||||
// true if there are shipments subject to shipping that are not in the current freight
|
||||
HasPostingsForNextCarriage bool `json:"has_postings_for_next_carriage"`
|
||||
|
||||
// Delivery service integration type
|
||||
IntegrationType string `json:"integration_type"`
|
||||
|
||||
// true if you already printed shipping labels
|
||||
IsContainerLabelPrinted bool `json:"is_container_label_printed"`
|
||||
|
||||
// true if the freight is partial
|
||||
IsPartial bool `json:"is_partial"`
|
||||
|
||||
// Serial number of the partial freight
|
||||
PartialNum int64 `json:"partial_num"`
|
||||
|
||||
// The number of retries to create a freight
|
||||
RetryCount int32 `json:"retry_count"`
|
||||
|
||||
// Freight status
|
||||
Status GetCarriageStatus `json:"status"`
|
||||
|
||||
// Delivery method identifier
|
||||
TPLProviderId int64 `json:"tpl_provider_id"`
|
||||
|
||||
// Date and time when the freight was last updated
|
||||
UpdatedAt time.Time `json:"updated_at"`
|
||||
|
||||
// Warehouse identifier
|
||||
WarehouseId int64 `json:"warehouse_id"`
|
||||
}
|
||||
|
||||
type GetCarriageCancelAvailability struct {
|
||||
// true if the freight can be cancelled
|
||||
IsCancelAvailable bool `json:"is_cancel_available"`
|
||||
|
||||
// Reason why freight can't be cancelled
|
||||
Reason string `json:"reason"`
|
||||
}
|
||||
|
||||
func (c FBS) GetCarriage(ctx context.Context, params *GetCarriageParams) (*GetCarriageResponse, error) {
|
||||
url := "/v1/carriage/get"
|
||||
|
||||
resp := &GetCarriageResponse{}
|
||||
|
||||
response, err := c.client.Request(ctx, http.MethodPost, url, params, resp, nil)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
response.CopyCommonResponse(&resp.CommonResponse)
|
||||
|
||||
return resp, nil
|
||||
}
|
||||
|
||||
@@ -2919,3 +2919,84 @@ func TestCreateOrGetProductExemplar(t *testing.T) {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func TestGetCarriage(t *testing.T) {
|
||||
t.Parallel()
|
||||
|
||||
tests := []struct {
|
||||
statusCode int
|
||||
headers map[string]string
|
||||
params *GetCarriageParams
|
||||
response string
|
||||
}{
|
||||
// Test Ok
|
||||
{
|
||||
http.StatusOK,
|
||||
map[string]string{"Client-Id": "my-client-id", "Api-Key": "my-api-key"},
|
||||
&GetCarriageParams{
|
||||
CarriageId: 15,
|
||||
},
|
||||
`{
|
||||
"act_type": "string",
|
||||
"arrival_pass_ids": [
|
||||
"string"
|
||||
],
|
||||
"available_actions": [
|
||||
"string"
|
||||
],
|
||||
"cancel_availability": {
|
||||
"is_cancel_available": true,
|
||||
"reason": "string"
|
||||
},
|
||||
"carriage_id": 15,
|
||||
"company_id": 0,
|
||||
"containers_count": 0,
|
||||
"created_at": "2019-08-24T14:15:22Z",
|
||||
"delivery_method_id": 0,
|
||||
"departure_date": "string",
|
||||
"first_mile_type": "string",
|
||||
"has_postings_for_next_carriage": true,
|
||||
"integration_type": "string",
|
||||
"is_container_label_printed": true,
|
||||
"is_partial": true,
|
||||
"partial_num": 0,
|
||||
"retry_count": 0,
|
||||
"status": "string",
|
||||
"tpl_provider_id": 0,
|
||||
"updated_at": "2019-08-24T14:15:22Z",
|
||||
"warehouse_id": 0
|
||||
}`,
|
||||
},
|
||||
// Test No Client-Id or Api-Key
|
||||
{
|
||||
http.StatusUnauthorized,
|
||||
map[string]string{},
|
||||
&GetCarriageParams{},
|
||||
`{
|
||||
"code": 16,
|
||||
"message": "Client-Id and Api-Key headers are required"
|
||||
}`,
|
||||
},
|
||||
}
|
||||
|
||||
for _, test := range tests {
|
||||
c := NewMockClient(core.NewMockHttpHandler(test.statusCode, test.response, test.headers))
|
||||
|
||||
ctx, _ := context.WithTimeout(context.Background(), testTimeout)
|
||||
resp, err := c.FBS().GetCarriage(ctx, test.params)
|
||||
if err != nil {
|
||||
t.Error(err)
|
||||
continue
|
||||
}
|
||||
|
||||
compareJsonResponse(t, test.response, &GetCarriageResponse{})
|
||||
|
||||
if resp.StatusCode != test.statusCode {
|
||||
t.Errorf("got wrong status code: got: %d, expected: %d", resp.StatusCode, test.statusCode)
|
||||
}
|
||||
|
||||
if resp.CarriageId != test.params.CarriageId {
|
||||
t.Errorf("carriage id in request and response should be equal")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -382,7 +382,7 @@ type ListTransactionsResultOperationPosting struct {
|
||||
|
||||
type ListTransactionsResultOperationService struct {
|
||||
// Service name
|
||||
Name string `json:"name"`
|
||||
Name TransactionOperationService `json:"name"`
|
||||
|
||||
// Price
|
||||
Price float64 `json:"price"`
|
||||
|
||||
@@ -41,6 +41,7 @@ type Client struct {
|
||||
certificates *Certificates
|
||||
strategies *Strategies
|
||||
barcodes *Barcodes
|
||||
passes *Passes
|
||||
}
|
||||
|
||||
func (c Client) Analytics() *Analytics {
|
||||
@@ -119,6 +120,10 @@ func (c Client) Barcodes() *Barcodes {
|
||||
return c.barcodes
|
||||
}
|
||||
|
||||
func (c Client) Passes() *Passes {
|
||||
return c.passes
|
||||
}
|
||||
|
||||
type ClientOption func(c *ClientOptions)
|
||||
|
||||
func WithHttpClient(httpClient core.HttpClient) ClientOption {
|
||||
@@ -182,6 +187,7 @@ func NewClient(opts ...ClientOption) *Client {
|
||||
certificates: &Certificates{client: coreClient},
|
||||
strategies: &Strategies{client: coreClient},
|
||||
barcodes: &Barcodes{client: coreClient},
|
||||
passes: &Passes{client: coreClient},
|
||||
}
|
||||
}
|
||||
|
||||
@@ -209,5 +215,6 @@ func NewMockClient(handler http.HandlerFunc) *Client {
|
||||
certificates: &Certificates{client: coreClient},
|
||||
strategies: &Strategies{client: coreClient},
|
||||
barcodes: &Barcodes{client: coreClient},
|
||||
passes: &Passes{client: coreClient},
|
||||
}
|
||||
}
|
||||
|
||||
302
ozon/pass.go
Normal file
302
ozon/pass.go
Normal file
@@ -0,0 +1,302 @@
|
||||
package ozon
|
||||
|
||||
import (
|
||||
"context"
|
||||
"net/http"
|
||||
"time"
|
||||
|
||||
core "github.com/diphantxm/ozon-api-client"
|
||||
)
|
||||
|
||||
type Passes struct {
|
||||
client *core.Client
|
||||
}
|
||||
|
||||
type ListPassesParams struct {
|
||||
// Cursor for the next data sample
|
||||
Cursor string `json:"curson"`
|
||||
|
||||
// Filters
|
||||
Filter ListPassesFilter `json:"filter"`
|
||||
|
||||
// Limit on number of entries in a reply. Default value is 1000. Maximum value is 1000
|
||||
Limit int32 `json:"limit"`
|
||||
}
|
||||
|
||||
type ListPassesFilter struct {
|
||||
// Filter by pass identifier
|
||||
ArrivalPassIds []string `json:"arrival_pass_ids"`
|
||||
|
||||
// Filter by purpose of arrival:
|
||||
//
|
||||
// FBS_DELIVERY—delivery.
|
||||
// FBS_RETURN—take out returns.
|
||||
// If the parameter isn't specified, both purposes are considered.
|
||||
//
|
||||
// The specified purpose must be in the list of reasons for passes
|
||||
ArrivalReason string `json:"arrival_reason"`
|
||||
|
||||
// Filter by drop-off points identifier
|
||||
DropoffPointIds []int64 `json:"dropoff_point_ids"`
|
||||
|
||||
// true to get only active pass requests
|
||||
OnlyActivePasses bool `json:"only_active_passes"`
|
||||
|
||||
// Filter by seller's warehouses identifier
|
||||
WarehouseIds []int64 `json:"warehouse_ids"`
|
||||
}
|
||||
|
||||
type ListPassesResponse struct {
|
||||
core.CommonResponse
|
||||
|
||||
// List of passes
|
||||
ArrivalPasses []ListPassesArrivalPass `json:"arrival_passes"`
|
||||
|
||||
// Cursor for the next data sample. If the parameter is empty, there is no more data
|
||||
Cursor string `json:"cursor"`
|
||||
}
|
||||
|
||||
type ListPassesArrivalPass struct {
|
||||
// Pass identifier
|
||||
ArrivalPassId int64 `json:"arrival_pass_id"`
|
||||
|
||||
// Arrival purpose
|
||||
ArrivalReasons []string `json:"arrival_reasons"`
|
||||
|
||||
// Date and time of arrival in UTC format
|
||||
ArrivalTime time.Time `json:"arrival_time"`
|
||||
|
||||
// Driver full name
|
||||
DriverName string `json:"driver_name"`
|
||||
|
||||
// Driver phone number
|
||||
DriverPhone string `json:"driver_phone"`
|
||||
|
||||
// Drop-off point identifier
|
||||
DropoffPointId int64 `json:"dropoff_point_id"`
|
||||
|
||||
// true if the request is active
|
||||
IsActive bool `json:"is_active"`
|
||||
|
||||
// Car license plate
|
||||
VehicleLicensePlate string `json:"vehicle_license_plate"`
|
||||
|
||||
// Car model
|
||||
VehicleModel string `json:"vehicle_model"`
|
||||
|
||||
// Warehouse identifier
|
||||
WarehouseId int64 `json:"warehouse_id"`
|
||||
}
|
||||
|
||||
func (c Passes) List(ctx context.Context, params *ListPassesParams) (*ListPassesResponse, error) {
|
||||
url := "/v1/pass/list"
|
||||
|
||||
resp := &ListPassesResponse{}
|
||||
|
||||
response, err := c.client.Request(ctx, http.MethodPost, url, params, resp, nil)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
response.CopyCommonResponse(&resp.CommonResponse)
|
||||
|
||||
return resp, nil
|
||||
}
|
||||
|
||||
type CreateCarriageParams struct {
|
||||
// List of passes
|
||||
ArrivalPasses []CarriageArrivalPass `json:"arrival_passes"`
|
||||
|
||||
// Freight identifier
|
||||
CarriageId int64 `json:"carriage_id"`
|
||||
}
|
||||
|
||||
type CarriageArrivalPass struct {
|
||||
// Driver full name
|
||||
DriverName string `json:"driver_name"`
|
||||
|
||||
// Driver phone number
|
||||
DriverPhone string `json:"driver_phone"`
|
||||
|
||||
// Car license plate
|
||||
VehicleLicensePlate string `json:"vehicle_license_plate"`
|
||||
|
||||
// Car model
|
||||
VehicleModel string `json:"vehicle_model"`
|
||||
|
||||
// true if you will export returns. Default is false
|
||||
WithReturns bool `json:"with_returns"`
|
||||
}
|
||||
|
||||
type CreateCarriageResponse struct {
|
||||
core.CommonResponse
|
||||
|
||||
// Pass identifiers
|
||||
ArrivalPassIds []string `json:"arrival_pass_ids"`
|
||||
}
|
||||
|
||||
func (c Passes) CreateCarriage(ctx context.Context, params *CreateCarriageParams) (*CreateCarriageResponse, error) {
|
||||
url := "/v1/carriage/pass/create"
|
||||
|
||||
resp := &CreateCarriageResponse{}
|
||||
|
||||
response, err := c.client.Request(ctx, http.MethodPost, url, params, resp, nil)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
response.CopyCommonResponse(&resp.CommonResponse)
|
||||
|
||||
return resp, nil
|
||||
}
|
||||
|
||||
type UpdateCarriageParams struct {
|
||||
ArrivalPasses []UpdateCarriageArrivalPass `json:"arrival_passes"`
|
||||
|
||||
CarriageId int64 `json:"carriage_id"`
|
||||
}
|
||||
|
||||
type UpdateCarriageArrivalPass struct {
|
||||
CarriageArrivalPass
|
||||
|
||||
Id int64 `json:"id"`
|
||||
}
|
||||
|
||||
type UpdateCarriageResponse struct {
|
||||
core.CommonResponse
|
||||
}
|
||||
|
||||
func (c Passes) UpdateCarriage(ctx context.Context, params *UpdateCarriageParams) (*UpdateCarriageResponse, error) {
|
||||
url := "/v1/carriage/pass/update"
|
||||
|
||||
resp := &UpdateCarriageResponse{}
|
||||
|
||||
response, err := c.client.Request(ctx, http.MethodPost, url, params, resp, nil)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
response.CopyCommonResponse(&resp.CommonResponse)
|
||||
|
||||
return resp, nil
|
||||
}
|
||||
|
||||
type DeleteCarriageParams struct {
|
||||
// Pass identifiers
|
||||
ArrivalPassIds []int64 `json:"arrival_pass_ids"`
|
||||
|
||||
// Freight identifier
|
||||
CarriageId int64 `json:"carriage_id"`
|
||||
}
|
||||
|
||||
type DeleteCarriageResponse struct {
|
||||
core.CommonResponse
|
||||
}
|
||||
|
||||
func (c Passes) DeleteCarriage(ctx context.Context, params *DeleteCarriageParams) (*DeleteCarriageResponse, error) {
|
||||
url := "/v1/carriage/pass/delete"
|
||||
|
||||
resp := &DeleteCarriageResponse{}
|
||||
|
||||
response, err := c.client.Request(ctx, http.MethodPost, url, params, resp, nil)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
response.CopyCommonResponse(&resp.CommonResponse)
|
||||
|
||||
return resp, nil
|
||||
}
|
||||
|
||||
type CreateReturnParams struct {
|
||||
// Array of passes
|
||||
ArrivalPasses []ReturnArrivalPass `json:"arrival_passes"`
|
||||
}
|
||||
|
||||
type ReturnArrivalPass struct {
|
||||
// Date and time of arrival in UTC format. At that time, the pass will become valid
|
||||
ArrivalTime time.Time `json:"arrival_time"`
|
||||
|
||||
// Driver full name
|
||||
DriverName string `json:"driver_name"`
|
||||
|
||||
// Driver phone number
|
||||
DriverPhone string `json:"driver_phone"`
|
||||
|
||||
// Car license plate
|
||||
VehicleLicensePlate string `json:"vehicle_license_plate"`
|
||||
|
||||
// Car model
|
||||
VehicleModel string `json:"vehicle_model"`
|
||||
|
||||
// Drop-off point identifier for which the pass is issued
|
||||
DropoffPointId int64 `json:"dropoff_point_id"`
|
||||
|
||||
// Warehouse identifier
|
||||
WarehouseId int64 `json:"warehouse_id"`
|
||||
}
|
||||
|
||||
type CreateReturnResponse struct {
|
||||
core.CommonResponse
|
||||
|
||||
// Pass identifiers
|
||||
ArrivalPassIds []string `json:"arrival_pass_ids"`
|
||||
}
|
||||
|
||||
func (c Passes) CreateReturn(ctx context.Context, params *CreateReturnParams) (*CreateReturnResponse, error) {
|
||||
url := "/v1/return/pass/create"
|
||||
|
||||
resp := &CreateReturnResponse{}
|
||||
|
||||
response, err := c.client.Request(ctx, http.MethodPost, url, params, resp, nil)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
response.CopyCommonResponse(&resp.CommonResponse)
|
||||
|
||||
return resp, nil
|
||||
}
|
||||
|
||||
type UpdateReturnParams struct {
|
||||
ArrivalPasses []ReturnArrivalPass `json:"arrival_passes"`
|
||||
}
|
||||
|
||||
type UpdateReturnResponse struct {
|
||||
core.CommonResponse
|
||||
|
||||
// Pass identifiers
|
||||
ArrivalPassIds []string `json:"arrival_pass_ids"`
|
||||
}
|
||||
|
||||
func (c Passes) UpdateReturn(ctx context.Context, params *UpdateReturnParams) (*UpdateReturnResponse, error) {
|
||||
url := "/v1/return/pass/update"
|
||||
|
||||
resp := &UpdateReturnResponse{}
|
||||
|
||||
response, err := c.client.Request(ctx, http.MethodPost, url, params, resp, nil)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
response.CopyCommonResponse(&resp.CommonResponse)
|
||||
|
||||
return resp, nil
|
||||
}
|
||||
|
||||
type DeleteReturnParams struct {
|
||||
// Pass identifiers
|
||||
ArrivalPassIds []int64 `json:"arrival_pass_ids"`
|
||||
}
|
||||
|
||||
type DeleteReturnResponse struct {
|
||||
core.CommonResponse
|
||||
}
|
||||
|
||||
func (c Passes) DeleteReturn(ctx context.Context, params *DeleteReturnParams) (*DeleteReturnResponse, error) {
|
||||
url := "/v1/return/pass/delete"
|
||||
|
||||
resp := &DeleteReturnResponse{}
|
||||
|
||||
response, err := c.client.Request(ctx, http.MethodPost, url, params, resp, nil)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
response.CopyCommonResponse(&resp.CommonResponse)
|
||||
|
||||
return resp, nil
|
||||
}
|
||||
431
ozon/pass_test.go
Normal file
431
ozon/pass_test.go
Normal file
@@ -0,0 +1,431 @@
|
||||
package ozon
|
||||
|
||||
import (
|
||||
"context"
|
||||
"net/http"
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
core "github.com/diphantxm/ozon-api-client"
|
||||
)
|
||||
|
||||
func TestListPasses(t *testing.T) {
|
||||
t.Parallel()
|
||||
|
||||
tests := []struct {
|
||||
statusCode int
|
||||
headers map[string]string
|
||||
params *ListPassesParams
|
||||
response string
|
||||
}{
|
||||
// Test Ok
|
||||
{
|
||||
http.StatusOK,
|
||||
map[string]string{"Client-Id": "my-client-id", "Api-Key": "my-api-key"},
|
||||
&ListPassesParams{
|
||||
Cursor: "",
|
||||
Filter: ListPassesFilter{
|
||||
ArrivalPassIds: []string{"string"},
|
||||
ArrivalReason: "string",
|
||||
DropoffPointIds: []int64{123},
|
||||
OnlyActivePasses: true,
|
||||
WarehouseIds: []int64{456},
|
||||
},
|
||||
},
|
||||
`{
|
||||
"arrival_passes": [
|
||||
{
|
||||
"arrival_pass_id": 0,
|
||||
"arrival_reasons": [
|
||||
"string"
|
||||
],
|
||||
"arrival_time": "2019-08-24T14:15:22Z",
|
||||
"driver_name": "string",
|
||||
"driver_phone": "string",
|
||||
"dropoff_point_id": 123,
|
||||
"is_active": true,
|
||||
"vehicle_license_plate": "string",
|
||||
"vehicle_model": "string",
|
||||
"warehouse_id": 456
|
||||
}
|
||||
],
|
||||
"cursor": "string"
|
||||
}`,
|
||||
},
|
||||
// Test No Client-Id or Api-Key
|
||||
{
|
||||
http.StatusUnauthorized,
|
||||
map[string]string{},
|
||||
&ListPassesParams{},
|
||||
`{
|
||||
"code": 16,
|
||||
"message": "Client-Id and Api-Key headers are required"
|
||||
}`,
|
||||
},
|
||||
}
|
||||
|
||||
for _, test := range tests {
|
||||
c := NewMockClient(core.NewMockHttpHandler(test.statusCode, test.response, test.headers))
|
||||
|
||||
ctx, _ := context.WithTimeout(context.Background(), testTimeout)
|
||||
resp, err := c.Passes().List(ctx, test.params)
|
||||
if err != nil {
|
||||
t.Error(err)
|
||||
continue
|
||||
}
|
||||
|
||||
compareJsonResponse(t, test.response, &ListPassesResponse{})
|
||||
|
||||
if resp.StatusCode != test.statusCode {
|
||||
t.Errorf("got wrong status code: got: %d, expected: %d", resp.StatusCode, test.statusCode)
|
||||
}
|
||||
|
||||
if len(resp.ArrivalPasses) != 0 {
|
||||
if resp.ArrivalPasses[0].WarehouseId != test.params.Filter.WarehouseIds[0] {
|
||||
t.Errorf("warehouse id in request and response should be equal")
|
||||
}
|
||||
|
||||
if resp.ArrivalPasses[0].DropoffPointId != test.params.Filter.DropoffPointIds[0] {
|
||||
t.Errorf("dropoff point id in request and response should be equal")
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func TestCreateArrivalPass(t *testing.T) {
|
||||
t.Parallel()
|
||||
|
||||
tests := []struct {
|
||||
statusCode int
|
||||
headers map[string]string
|
||||
params *CreateCarriageParams
|
||||
response string
|
||||
}{
|
||||
// Test Ok
|
||||
{
|
||||
http.StatusOK,
|
||||
map[string]string{"Client-Id": "my-client-id", "Api-Key": "my-api-key"},
|
||||
&CreateCarriageParams{
|
||||
ArrivalPasses: []CarriageArrivalPass{
|
||||
{
|
||||
DriverName: "string",
|
||||
DriverPhone: "string",
|
||||
VehicleLicensePlate: "string",
|
||||
VehicleModel: "string",
|
||||
WithReturns: true,
|
||||
},
|
||||
},
|
||||
CarriageId: 14,
|
||||
},
|
||||
`{
|
||||
"arrival_pass_ids": [
|
||||
"154"
|
||||
]
|
||||
}`,
|
||||
},
|
||||
// Test No Client-Id or Api-Key
|
||||
{
|
||||
http.StatusUnauthorized,
|
||||
map[string]string{},
|
||||
&CreateCarriageParams{},
|
||||
`{
|
||||
"code": 16,
|
||||
"message": "Client-Id and Api-Key headers are required"
|
||||
}`,
|
||||
},
|
||||
}
|
||||
|
||||
for _, test := range tests {
|
||||
c := NewMockClient(core.NewMockHttpHandler(test.statusCode, test.response, test.headers))
|
||||
|
||||
ctx, _ := context.WithTimeout(context.Background(), testTimeout)
|
||||
resp, err := c.Passes().CreateCarriage(ctx, test.params)
|
||||
if err != nil {
|
||||
t.Error(err)
|
||||
continue
|
||||
}
|
||||
|
||||
compareJsonResponse(t, test.response, &CreateCarriageResponse{})
|
||||
|
||||
if resp.StatusCode != test.statusCode {
|
||||
t.Errorf("got wrong status code: got: %d, expected: %d", resp.StatusCode, test.statusCode)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func TestUpdateArrivalPass(t *testing.T) {
|
||||
t.Parallel()
|
||||
|
||||
tests := []struct {
|
||||
statusCode int
|
||||
headers map[string]string
|
||||
params *UpdateCarriageParams
|
||||
response string
|
||||
}{
|
||||
// Test Ok
|
||||
{
|
||||
http.StatusOK,
|
||||
map[string]string{"Client-Id": "my-client-id", "Api-Key": "my-api-key"},
|
||||
&UpdateCarriageParams{
|
||||
ArrivalPasses: []UpdateCarriageArrivalPass{
|
||||
{
|
||||
Id: 11,
|
||||
CarriageArrivalPass: CarriageArrivalPass{
|
||||
DriverName: "string",
|
||||
DriverPhone: "string",
|
||||
VehicleLicensePlate: "string",
|
||||
VehicleModel: "string",
|
||||
WithReturns: true,
|
||||
},
|
||||
},
|
||||
},
|
||||
CarriageId: 14,
|
||||
},
|
||||
`{}`,
|
||||
},
|
||||
// Test No Client-Id or Api-Key
|
||||
{
|
||||
http.StatusUnauthorized,
|
||||
map[string]string{},
|
||||
&UpdateCarriageParams{},
|
||||
`{
|
||||
"code": 16,
|
||||
"message": "Client-Id and Api-Key headers are required"
|
||||
}`,
|
||||
},
|
||||
}
|
||||
|
||||
for _, test := range tests {
|
||||
c := NewMockClient(core.NewMockHttpHandler(test.statusCode, test.response, test.headers))
|
||||
|
||||
ctx, _ := context.WithTimeout(context.Background(), testTimeout)
|
||||
resp, err := c.Passes().UpdateCarriage(ctx, test.params)
|
||||
if err != nil {
|
||||
t.Error(err)
|
||||
continue
|
||||
}
|
||||
|
||||
compareJsonResponse(t, test.response, &UpdateCarriageResponse{})
|
||||
|
||||
if resp.StatusCode != test.statusCode {
|
||||
t.Errorf("got wrong status code: got: %d, expected: %d", resp.StatusCode, test.statusCode)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func TestDeleteArrivalPass(t *testing.T) {
|
||||
t.Parallel()
|
||||
|
||||
tests := []struct {
|
||||
statusCode int
|
||||
headers map[string]string
|
||||
params *DeleteCarriageParams
|
||||
response string
|
||||
}{
|
||||
// Test Ok
|
||||
{
|
||||
http.StatusOK,
|
||||
map[string]string{"Client-Id": "my-client-id", "Api-Key": "my-api-key"},
|
||||
&DeleteCarriageParams{
|
||||
ArrivalPassIds: []int64{123},
|
||||
CarriageId: 14,
|
||||
},
|
||||
`{}`,
|
||||
},
|
||||
// Test No Client-Id or Api-Key
|
||||
{
|
||||
http.StatusUnauthorized,
|
||||
map[string]string{},
|
||||
&DeleteCarriageParams{},
|
||||
`{
|
||||
"code": 16,
|
||||
"message": "Client-Id and Api-Key headers are required"
|
||||
}`,
|
||||
},
|
||||
}
|
||||
|
||||
for _, test := range tests {
|
||||
c := NewMockClient(core.NewMockHttpHandler(test.statusCode, test.response, test.headers))
|
||||
|
||||
ctx, _ := context.WithTimeout(context.Background(), testTimeout)
|
||||
resp, err := c.Passes().DeleteCarriage(ctx, test.params)
|
||||
if err != nil {
|
||||
t.Error(err)
|
||||
continue
|
||||
}
|
||||
|
||||
compareJsonResponse(t, test.response, &DeleteCarriageResponse{})
|
||||
|
||||
if resp.StatusCode != test.statusCode {
|
||||
t.Errorf("got wrong status code: got: %d, expected: %d", resp.StatusCode, test.statusCode)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func TestCreateReturn(t *testing.T) {
|
||||
t.Parallel()
|
||||
|
||||
tests := []struct {
|
||||
statusCode int
|
||||
headers map[string]string
|
||||
params *CreateReturnParams
|
||||
response string
|
||||
}{
|
||||
// Test Ok
|
||||
{
|
||||
http.StatusOK,
|
||||
map[string]string{"Client-Id": "my-client-id", "Api-Key": "my-api-key"},
|
||||
&CreateReturnParams{
|
||||
ArrivalPasses: []ReturnArrivalPass{
|
||||
{
|
||||
ArrivalTime: time.Now(),
|
||||
DriverName: "string",
|
||||
DriverPhone: "string",
|
||||
VehicleLicensePlate: "string",
|
||||
VehicleModel: "string",
|
||||
DropoffPointId: 11,
|
||||
WarehouseId: 5,
|
||||
},
|
||||
},
|
||||
},
|
||||
`{
|
||||
"arrival_pass_ids": [
|
||||
"1111"
|
||||
]
|
||||
}`,
|
||||
},
|
||||
// Test No Client-Id or Api-Key
|
||||
{
|
||||
http.StatusUnauthorized,
|
||||
map[string]string{},
|
||||
&CreateReturnParams{},
|
||||
`{
|
||||
"code": 16,
|
||||
"message": "Client-Id and Api-Key headers are required"
|
||||
}`,
|
||||
},
|
||||
}
|
||||
|
||||
for _, test := range tests {
|
||||
c := NewMockClient(core.NewMockHttpHandler(test.statusCode, test.response, test.headers))
|
||||
|
||||
ctx, _ := context.WithTimeout(context.Background(), testTimeout)
|
||||
resp, err := c.Passes().CreateReturn(ctx, test.params)
|
||||
if err != nil {
|
||||
t.Error(err)
|
||||
continue
|
||||
}
|
||||
|
||||
compareJsonResponse(t, test.response, &CreateReturnResponse{})
|
||||
|
||||
if resp.StatusCode != test.statusCode {
|
||||
t.Errorf("got wrong status code: got: %d, expected: %d", resp.StatusCode, test.statusCode)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func TestUpdateReturn(t *testing.T) {
|
||||
t.Parallel()
|
||||
|
||||
tests := []struct {
|
||||
statusCode int
|
||||
headers map[string]string
|
||||
params *UpdateReturnParams
|
||||
response string
|
||||
}{
|
||||
// Test Ok
|
||||
{
|
||||
http.StatusOK,
|
||||
map[string]string{"Client-Id": "my-client-id", "Api-Key": "my-api-key"},
|
||||
&UpdateReturnParams{
|
||||
ArrivalPasses: []ReturnArrivalPass{
|
||||
{
|
||||
ArrivalTime: time.Now(),
|
||||
DriverName: "string",
|
||||
DriverPhone: "string",
|
||||
VehicleLicensePlate: "string",
|
||||
VehicleModel: "string",
|
||||
DropoffPointId: 11,
|
||||
WarehouseId: 5,
|
||||
},
|
||||
},
|
||||
},
|
||||
`{}`,
|
||||
},
|
||||
// Test No Client-Id or Api-Key
|
||||
{
|
||||
http.StatusUnauthorized,
|
||||
map[string]string{},
|
||||
&UpdateReturnParams{},
|
||||
`{
|
||||
"code": 16,
|
||||
"message": "Client-Id and Api-Key headers are required"
|
||||
}`,
|
||||
},
|
||||
}
|
||||
|
||||
for _, test := range tests {
|
||||
c := NewMockClient(core.NewMockHttpHandler(test.statusCode, test.response, test.headers))
|
||||
|
||||
ctx, _ := context.WithTimeout(context.Background(), testTimeout)
|
||||
resp, err := c.Passes().UpdateReturn(ctx, test.params)
|
||||
if err != nil {
|
||||
t.Error(err)
|
||||
continue
|
||||
}
|
||||
|
||||
compareJsonResponse(t, test.response, &UpdateReturnResponse{})
|
||||
|
||||
if resp.StatusCode != test.statusCode {
|
||||
t.Errorf("got wrong status code: got: %d, expected: %d", resp.StatusCode, test.statusCode)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func TestDeleteReturn(t *testing.T) {
|
||||
t.Parallel()
|
||||
|
||||
tests := []struct {
|
||||
statusCode int
|
||||
headers map[string]string
|
||||
params *DeleteReturnParams
|
||||
response string
|
||||
}{
|
||||
// Test Ok
|
||||
{
|
||||
http.StatusOK,
|
||||
map[string]string{"Client-Id": "my-client-id", "Api-Key": "my-api-key"},
|
||||
&DeleteReturnParams{
|
||||
ArrivalPassIds: []int64{456},
|
||||
},
|
||||
`{}`,
|
||||
},
|
||||
// Test No Client-Id or Api-Key
|
||||
{
|
||||
http.StatusUnauthorized,
|
||||
map[string]string{},
|
||||
&DeleteReturnParams{},
|
||||
`{
|
||||
"code": 16,
|
||||
"message": "Client-Id and Api-Key headers are required"
|
||||
}`,
|
||||
},
|
||||
}
|
||||
|
||||
for _, test := range tests {
|
||||
c := NewMockClient(core.NewMockHttpHandler(test.statusCode, test.response, test.headers))
|
||||
|
||||
ctx, _ := context.WithTimeout(context.Background(), testTimeout)
|
||||
resp, err := c.Passes().DeleteReturn(ctx, test.params)
|
||||
if err != nil {
|
||||
t.Error(err)
|
||||
continue
|
||||
}
|
||||
|
||||
compareJsonResponse(t, test.response, &DeleteReturnResponse{})
|
||||
|
||||
if resp.StatusCode != test.statusCode {
|
||||
t.Errorf("got wrong status code: got: %d, expected: %d", resp.StatusCode, test.statusCode)
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -27,7 +27,7 @@ type GetStocksInfoParams struct {
|
||||
|
||||
type GetStocksInfoFilter struct {
|
||||
// Filter by the offer_id parameter. It is possible to pass a list of values
|
||||
OfferId string `json:"offer_id,omitempty"`
|
||||
OfferId []string `json:"offer_id,omitempty"`
|
||||
|
||||
// Filter by the product_id parameter. It is possible to pass a list of values
|
||||
ProductId int64 `json:"product_id,omitempty"`
|
||||
@@ -226,9 +226,6 @@ type ProductDetails struct {
|
||||
// Use PriceIndexes instead
|
||||
PriceIndex string `json:"price_index"`
|
||||
|
||||
// Product price suggested by the system based on similar offers
|
||||
RecommendedPrice string `json:"recommended_price"`
|
||||
|
||||
// Product state description
|
||||
Status ProductDetailStatus `json:"status"`
|
||||
|
||||
@@ -258,9 +255,6 @@ type ProductDetailCommission struct {
|
||||
// Delivery cost
|
||||
DeliveryAmount float64 `json:"deliveryAmount"`
|
||||
|
||||
// Minimum commission fee
|
||||
MinValue float64 `json:"minValue"`
|
||||
|
||||
// Commission percentage
|
||||
Percent float64 `json:"percent"`
|
||||
|
||||
@@ -896,6 +890,7 @@ type CreateOrUpdateProductResult struct {
|
||||
}
|
||||
|
||||
// This method allows you to create products and update their details
|
||||
// More info: https://docs.ozon.ru/api/seller/en/#operation/ProductAPI_ImportProductsV3
|
||||
func (c Products) CreateOrUpdateProduct(ctx context.Context, params *CreateOrUpdateProductParams) (*CreateOrUpdateProductResponse, error) {
|
||||
url := "/v3/product/import"
|
||||
|
||||
@@ -1241,7 +1236,7 @@ type ProductInfoResultPicture struct {
|
||||
//
|
||||
// If you called the `/v1/product/pictures/info` method, one of the statuses will appear:
|
||||
// - uploaded — image uploaded;
|
||||
// - failed — image was not uploaded
|
||||
// - pending — image was not uploaded
|
||||
State string `json:"state"`
|
||||
|
||||
// The link to the image in the public cloud storage. The image format is JPG or PNG
|
||||
@@ -1927,7 +1922,7 @@ type GetProductPriceInfoResponse struct {
|
||||
|
||||
type GetProductPriceInfoResult struct {
|
||||
// Products list
|
||||
Items []GetPRoductPriceInfoResultItem `json:"items"`
|
||||
Items []GetProductPriceInfoResultItem `json:"items"`
|
||||
|
||||
// Identifier of the last value on page. Leave this field blank in the first request.
|
||||
//
|
||||
@@ -1938,7 +1933,7 @@ type GetProductPriceInfoResult struct {
|
||||
Total int32 `json:"total"`
|
||||
}
|
||||
|
||||
type GetPRoductPriceInfoResultItem struct {
|
||||
type GetProductPriceInfoResultItem struct {
|
||||
// Maximum acquiring fee
|
||||
Acquiring int32 `json:"acquiring"`
|
||||
|
||||
@@ -2081,9 +2076,6 @@ type GetProductPriceInfoResultItemPrice struct {
|
||||
// Product price including discounts. This value is shown on the product description page
|
||||
Price string `json:"price"`
|
||||
|
||||
// Product price suggested by the system based on similar offers
|
||||
RecommendedPrice string `json:"recommended_price"`
|
||||
|
||||
// Retailer price
|
||||
RetailPrice string `json:"retail_price"`
|
||||
|
||||
|
||||
@@ -26,7 +26,7 @@ func TestGetStocksInfo(t *testing.T) {
|
||||
Limit: 100,
|
||||
LastId: "",
|
||||
Filter: GetStocksInfoFilter{
|
||||
OfferId: "136834",
|
||||
OfferId: []string{"136834"},
|
||||
ProductId: 214887921,
|
||||
Visibility: "ALL",
|
||||
},
|
||||
@@ -147,7 +147,6 @@ func TestGetProductDetails(t *testing.T) {
|
||||
"old_price": "",
|
||||
"premium_price": "",
|
||||
"price": "590.0000",
|
||||
"recommended_price": "",
|
||||
"sources": [
|
||||
{
|
||||
"is_enabled": true,
|
||||
@@ -1395,7 +1394,6 @@ func TestListProductsByIDs(t *testing.T) {
|
||||
"old_price": "1000.0000",
|
||||
"premium_price": "590.0000",
|
||||
"price": "690.0000",
|
||||
"recommended_price": "",
|
||||
"sources": [
|
||||
{
|
||||
"is_enabled": true,
|
||||
@@ -1472,7 +1470,6 @@ func TestListProductsByIDs(t *testing.T) {
|
||||
"old_price": "12200.0000",
|
||||
"premium_price": "5490.0000",
|
||||
"price": "6100.0000",
|
||||
"recommended_price": "",
|
||||
"sources": [
|
||||
{
|
||||
"is_enabled": true,
|
||||
@@ -2357,7 +2354,6 @@ func TestGetProductPriceInfo(t *testing.T) {
|
||||
"price": "499.0000",
|
||||
"old_price": "579.0000",
|
||||
"premium_price": "",
|
||||
"recommended_price": "",
|
||||
"retail_price": "",
|
||||
"vat": "0.200000",
|
||||
"min_ozon_price": "",
|
||||
|
||||
@@ -112,9 +112,6 @@ type GetFBSReturnsParams struct {
|
||||
}
|
||||
|
||||
type GetFBSReturnsFilter struct {
|
||||
// Time of receiving the return from the customer
|
||||
AcceptedFromCustomerMoment GetFBSReturnsFilterTimeRange `json:"accepted_from_customer_moment"`
|
||||
|
||||
// Last day of free storage
|
||||
LastFreeWaitingDay GetFBSReturnsFilterTimeRange `json:"last_free_waiting_dat"`
|
||||
|
||||
@@ -163,9 +160,6 @@ type GetFBSReturnsResponse struct {
|
||||
}
|
||||
|
||||
type GetFBSReturnResultReturn struct {
|
||||
// Time of receiving the return from the customer
|
||||
AcceptedFromCustomerMoment string `json:"accepted_from_customer_moment"`
|
||||
|
||||
// Bottom barcode on the product label
|
||||
ClearingId int64 `json:"clearing_id"`
|
||||
|
||||
@@ -878,3 +872,82 @@ func (c Returns) GetGiveoutInfo(ctx context.Context, params *GetGiveoutInfoParam
|
||||
|
||||
return resp, nil
|
||||
}
|
||||
|
||||
type GetFBSQuantityReturnsParams struct {
|
||||
Filter GetFBSQuantityReturnsFilter `json:"filter"`
|
||||
|
||||
// Split the method response
|
||||
Pagination GetFBSQuantityReturnsPagination `json:"pagination"`
|
||||
}
|
||||
|
||||
type GetFBSQuantityReturnsFilter struct {
|
||||
// Filter by drop-off point identifier
|
||||
PlaceId int64 `json:"place_id"`
|
||||
}
|
||||
|
||||
type GetFBSQuantityReturnsPagination struct {
|
||||
// Identifier of the last drop-off point on the page. Leave this field blank in the first request.
|
||||
//
|
||||
// To get the next values, specify id of the last drop-off point from the response of the previous request
|
||||
LastId int64 `json:"last_id"`
|
||||
|
||||
// Number of drop-off points per page. Maximum is 500
|
||||
Limit int32 `json:"limit"`
|
||||
}
|
||||
|
||||
type GetFBSQuantityReturnsResponse struct {
|
||||
core.CommonResponse
|
||||
|
||||
// Seller identifier
|
||||
CompanyId int64 `json:"company_id"`
|
||||
|
||||
DropoffPoints []GetFBSQuantityDropoffPoint `json:"drop_off_points"`
|
||||
|
||||
// true if there are any other points where sellers have orders waiting
|
||||
HasNext bool `json:"has_next"`
|
||||
}
|
||||
|
||||
type GetFBSQuantityDropoffPoint struct {
|
||||
// Drop-off point address
|
||||
Address string `json:"address"`
|
||||
|
||||
// Drop-off point identifier
|
||||
Id int64 `json:"id"`
|
||||
|
||||
// Drop-off point name
|
||||
Name string `json:"name"`
|
||||
|
||||
// Pass information
|
||||
PassInfo GetFBSQuantityDropoffPointPassInfo `json:"pass_info"`
|
||||
|
||||
// The warehouse identifier to which the shipment will arrive
|
||||
PlaceId int64 `json:"place_id"`
|
||||
|
||||
// Quantity of returns at the drop-off point
|
||||
ReturnsCount int32 `json:"returns_count"`
|
||||
|
||||
// Seller's warehouses identifiers
|
||||
WarehouseIds []string `json:"warehouses_ids"`
|
||||
}
|
||||
|
||||
type GetFBSQuantityDropoffPointPassInfo struct {
|
||||
// Quantity of drop-off point passes
|
||||
Count int32 `json:"count"`
|
||||
|
||||
// true if you need a pass to the drop-off point
|
||||
IsRequired bool `json:"is_required"`
|
||||
}
|
||||
|
||||
func (c Returns) FBSQuantity(ctx context.Context, params *GetFBSQuantityReturnsParams) (*GetFBSQuantityReturnsResponse, error) {
|
||||
url := "/v1/returns/company/fbs/info"
|
||||
|
||||
resp := &GetFBSQuantityReturnsResponse{}
|
||||
|
||||
response, err := c.client.Request(ctx, http.MethodPost, url, nil, resp, nil)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
response.CopyCommonResponse(&resp.CommonResponse)
|
||||
|
||||
return resp, nil
|
||||
}
|
||||
|
||||
@@ -116,7 +116,6 @@ func TestGetFBSReturns(t *testing.T) {
|
||||
"last_id": 0,
|
||||
"returns": [
|
||||
{
|
||||
"accepted_from_customer_moment": "string",
|
||||
"clearing_id": 23,
|
||||
"commission": 21,
|
||||
"commission_percent": 0,
|
||||
@@ -987,3 +986,76 @@ func TestGetGiveoutInfo(t *testing.T) {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func TestFBSQuantity(t *testing.T) {
|
||||
t.Parallel()
|
||||
|
||||
tests := []struct {
|
||||
statusCode int
|
||||
headers map[string]string
|
||||
params *GetFBSQuantityReturnsParams
|
||||
response string
|
||||
}{
|
||||
// Test Ok
|
||||
{
|
||||
http.StatusOK,
|
||||
map[string]string{"Client-Id": "my-client-id", "Api-Key": "my-api-key"},
|
||||
&GetFBSQuantityReturnsParams{
|
||||
Filter: GetFBSQuantityReturnsFilter{
|
||||
PlaceId: 1,
|
||||
},
|
||||
Pagination: GetFBSQuantityReturnsPagination{
|
||||
LastId: 2,
|
||||
Limit: 3,
|
||||
},
|
||||
},
|
||||
`{
|
||||
"company_id": 0,
|
||||
"drop_off_points": [
|
||||
{
|
||||
"address": "string",
|
||||
"id": 0,
|
||||
"name": "string",
|
||||
"pass_info": {
|
||||
"count": 0,
|
||||
"is_required": true
|
||||
},
|
||||
"place_id": 0,
|
||||
"returns_count": 0,
|
||||
"warehouses_ids": [
|
||||
"string"
|
||||
]
|
||||
}
|
||||
],
|
||||
"has_next": true
|
||||
}`,
|
||||
},
|
||||
// Test No Client-Id or Api-Key
|
||||
{
|
||||
http.StatusUnauthorized,
|
||||
map[string]string{},
|
||||
&GetFBSQuantityReturnsParams{},
|
||||
`{
|
||||
"code": 16,
|
||||
"message": "Client-Id and Api-Key headers are required"
|
||||
}`,
|
||||
},
|
||||
}
|
||||
|
||||
for _, test := range tests {
|
||||
c := NewMockClient(core.NewMockHttpHandler(test.statusCode, test.response, test.headers))
|
||||
|
||||
ctx, _ := context.WithTimeout(context.Background(), testTimeout)
|
||||
resp, err := c.Returns().FBSQuantity(ctx, test.params)
|
||||
if err != nil {
|
||||
t.Error(err)
|
||||
continue
|
||||
}
|
||||
|
||||
compareJsonResponse(t, test.response, &GetFBSQuantityReturnsResponse{})
|
||||
|
||||
if resp.StatusCode != test.statusCode {
|
||||
t.Errorf("got wrong status code: got: %d, expected: %d", resp.StatusCode, test.statusCode)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -377,6 +377,7 @@ type GetCompetitorPriceResult struct {
|
||||
StrategyCompetitorProductURL string `json:"strategy_competitor_product_url"`
|
||||
}
|
||||
|
||||
// If you add a product to your pricing strategy, the method returns you the price and a link to the competitor's product
|
||||
func (c Strategies) GetCompetitorPrice(ctx context.Context, params *GetCompetitorPriceParams) (*GetCompetitorPriceResponse, error) {
|
||||
url := "/v1/pricing-strategy/product/info"
|
||||
|
||||
|
||||
@@ -21,27 +21,37 @@ func TestGetListOfWarehouses(t *testing.T) {
|
||||
http.StatusOK,
|
||||
map[string]string{"Client-Id": "my-client-id", "Api-Key": "my-api-key"},
|
||||
`{
|
||||
"result": [
|
||||
{
|
||||
"warehouse_id": 15588127982000,
|
||||
"name": "Proffi (Панорама Групп)",
|
||||
"is_rfbs": false
|
||||
},
|
||||
{
|
||||
"warehouse_id": 22142605386000,
|
||||
"name": "Склад на производственной",
|
||||
"is_rfbs": true
|
||||
},
|
||||
{
|
||||
"warehouse_id": 22208673494000,
|
||||
"name": "Тест 37349",
|
||||
"is_rfbs": true
|
||||
},
|
||||
{
|
||||
"warehouse_id": 22240462819000,
|
||||
"name": "Тест12",
|
||||
"is_rfbs": true
|
||||
}
|
||||
"result": [
|
||||
{
|
||||
"warehouse_id": 1020000177886000,
|
||||
"name": "This is a test",
|
||||
"is_rfbs": false,
|
||||
"has_entrusted_acceptance": false,
|
||||
"first_mile_type": {
|
||||
"dropoff_point_id": "",
|
||||
"dropoff_timeslot_id": 0,
|
||||
"first_mile_is_changing": false,
|
||||
"first_mile_type": ""
|
||||
},
|
||||
"is_kgt": false,
|
||||
"can_print_act_in_advance": false,
|
||||
"min_working_days": 5,
|
||||
"is_karantin": false,
|
||||
"has_postings_limit": false,
|
||||
"postings_limit": -1,
|
||||
"working_days": [
|
||||
1,
|
||||
2,
|
||||
3,
|
||||
4,
|
||||
5,
|
||||
6,
|
||||
7
|
||||
],
|
||||
"min_postings_limit": 10,
|
||||
"is_timetable_editable": true,
|
||||
"status": "disabled"
|
||||
}
|
||||
]
|
||||
}`,
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user