Update December 11, 2023 (#54)
This commit is contained in:
129
ozon/fbs.go
129
ozon/fbs.go
@@ -1750,18 +1750,76 @@ func (c FBS) GetDropOffPointRestrictions(ctx context.Context, params *GetDropOff
|
|||||||
}
|
}
|
||||||
|
|
||||||
type CheckProductItemsDataParams struct {
|
type CheckProductItemsDataParams struct {
|
||||||
|
// Quantity of boxes the product is packed in
|
||||||
|
MultiBoxQuantity int32 `json:"multi_box_qty"`
|
||||||
|
|
||||||
// Shipment number
|
// Shipment number
|
||||||
PostingNumber string `json:"posting_number"`
|
PostingNumber string `json:"posting_number"`
|
||||||
|
|
||||||
Products CheckProductItemsDataProduct `json:"products"`
|
// Product list
|
||||||
|
Products []CheckProductItemsDataProduct `json:"products"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type CheckProductItemsDataProduct struct {
|
type CheckProductItemsDataProduct struct {
|
||||||
// Product items data
|
// Product items data
|
||||||
Exemplars []FBSProductExemplar `json:"exemplars"`
|
Exemplars []CheckProductItemsDataProductExemplar `json:"exemplars"`
|
||||||
|
|
||||||
// SKU, FBS product identifier in the Ozon system
|
// Indication that you need to pass the сustoms cargo declaration
|
||||||
|
// (CCD) number for the product and shipment
|
||||||
|
IsGTDNeeded bool `json:"is_gtd_needed"`
|
||||||
|
|
||||||
|
// Indication that you need to pass the "Chestny ZNAK" labeling
|
||||||
|
IsMandatoryMarkNeeded bool `json:"is_mandatory_mark_needed"`
|
||||||
|
|
||||||
|
// Indication that you need to pass the product batch registration number
|
||||||
|
IsRNPTNeeded bool `json:"is_rnpt_needed"`
|
||||||
|
|
||||||
|
// Product ID
|
||||||
ProductId int64 `json:"product_id"`
|
ProductId int64 `json:"product_id"`
|
||||||
|
|
||||||
|
// Items quantity
|
||||||
|
Quantity int32 `json:"quantity"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type CheckProductItemsDataProductExemplar struct {
|
||||||
|
// Item identifier
|
||||||
|
ExemplarId int64 `json:"exemplar_id"`
|
||||||
|
|
||||||
|
// Customs cargo declaration (CCD) number
|
||||||
|
GTD string `json:"gtd"`
|
||||||
|
|
||||||
|
// Сustoms cargo declaration (CCD) check status
|
||||||
|
GTDCheckStatus string `json:"gtd_check_status"`
|
||||||
|
|
||||||
|
// Сustoms cargo declaration (CCD) check error codes
|
||||||
|
GTDErrorCodes []string `json:"gtd_error_codes"`
|
||||||
|
|
||||||
|
// Indication that the customs cargo declaration (CCD) number isn't specified
|
||||||
|
IsGTDAbsent bool `json:"is_gtd_absent"`
|
||||||
|
|
||||||
|
// "Chestny ZNAK" labeling check status
|
||||||
|
MandatoryMarkCheckStatus MandatoryMarkStatus `json:"mandatory_mark_check_status"`
|
||||||
|
|
||||||
|
// "Chestny ZNAK" labeling check error codes
|
||||||
|
MandatoryMarkErrorCodes []string `json:"mandatory_mark_error_codes"`
|
||||||
|
|
||||||
|
// Indication that the product batch registration number isn't specified
|
||||||
|
IsRNPTAbsent bool `json:"is_rnpt_absent"`
|
||||||
|
|
||||||
|
// Mandatory "Chestny ZNAK" labeling
|
||||||
|
MandatoryMark string `json:"mandatory_mark"`
|
||||||
|
|
||||||
|
// Product batch registration number
|
||||||
|
RNPT string `json:"rnpt"`
|
||||||
|
|
||||||
|
// Product batch registration number check status
|
||||||
|
RNPTCheckStatus string `json:"rnpt_check_status"`
|
||||||
|
|
||||||
|
// Product batch registration number check error codes
|
||||||
|
RNPTErrorCodes []string `json:"rnpt_error_codes"`
|
||||||
|
|
||||||
|
// Unique identifier of charges of the jewelry
|
||||||
|
JWUIN string `json:"jw_uin"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type CheckProductItemsDataResponse struct {
|
type CheckProductItemsDataResponse struct {
|
||||||
@@ -1772,20 +1830,23 @@ type CheckProductItemsDataResponse struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Asynchronous method:
|
// 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`
|
// 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.
|
||||||
//
|
//
|
||||||
// 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 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
|
// 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
|
// Always pass a complete set of product items data.
|
||||||
//
|
//
|
||||||
// For example, you have 10 product items in your system.
|
// For example, you have 10 product items in your system.
|
||||||
// You have passed them for checking and saving. Then they added another 60 product items to your system.
|
// You've passed them for checking and saving.
|
||||||
// When you pass product items for checking and saving again, pass all of them: both old and newly added
|
// 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.
|
||||||
func (c FBS) CheckProductItemsData(ctx context.Context, params *CheckProductItemsDataParams) (*CheckProductItemsDataResponse, error) {
|
func (c FBS) CheckProductItemsData(ctx context.Context, params *CheckProductItemsDataParams) (*CheckProductItemsDataResponse, error) {
|
||||||
url := "/v4/fbs/posting/product/exemplar/set"
|
url := "/v4/fbs/posting/product/exemplar/set"
|
||||||
|
|
||||||
@@ -1996,8 +2057,8 @@ type PartialPackOrderParams struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
type PartialPackOrderProduct struct {
|
type PartialPackOrderProduct struct {
|
||||||
// Data array on product items
|
// Product item identifiers
|
||||||
ExemplarInfo []FBSProductExemplar `json:"exemplar_info"`
|
ExemplarIds []string `json:"exemplarIds"`
|
||||||
|
|
||||||
// FBS product identifier in the Ozon system, SKU
|
// FBS product identifier in the Ozon system, SKU
|
||||||
ProductId int64 `json:"product_id"`
|
ProductId int64 `json:"product_id"`
|
||||||
@@ -2009,11 +2070,8 @@ type PartialPackOrderProduct struct {
|
|||||||
type PartialPackOrderResponse struct {
|
type PartialPackOrderResponse struct {
|
||||||
core.CommonResponse
|
core.CommonResponse
|
||||||
|
|
||||||
// Additional data about shipments
|
// Shipments numbers formed after packaging
|
||||||
AdditionalData []PartialPackOrderAdditionalData `json:"additional_data"`
|
Result string `json:"result"`
|
||||||
|
|
||||||
// Identifiers of shipments that were created after package
|
|
||||||
Result []string `json:"result"`
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type PartialPackOrderAdditionalData struct {
|
type PartialPackOrderAdditionalData struct {
|
||||||
@@ -2029,7 +2087,7 @@ type PartialPackOrderAdditionalData struct {
|
|||||||
//
|
//
|
||||||
// The status of the original shipment will only change when the split shipments status changes
|
// 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) {
|
func (c FBS) PartialPackOrder(ctx context.Context, params *PartialPackOrderParams) (*PartialPackOrderResponse, error) {
|
||||||
url := "/v3/posting/fbs/ship/package"
|
url := "/v4/posting/fbs/ship/package"
|
||||||
|
|
||||||
resp := &PartialPackOrderResponse{}
|
resp := &PartialPackOrderResponse{}
|
||||||
|
|
||||||
@@ -2791,3 +2849,36 @@ func (c FBS) GetActPDF(ctx context.Context, params *GetActPDFParams) (*GetActPDF
|
|||||||
|
|
||||||
return resp, nil
|
return resp, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type CreateOrGetProductExemplarParams struct {
|
||||||
|
// Shipment number
|
||||||
|
PostingNumber string `json:"posting_number"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type CreateOrGetProductExemplarResponse struct {
|
||||||
|
core.CommonResponse
|
||||||
|
|
||||||
|
// Quantity of boxes the product is packed in
|
||||||
|
MultiBoxQuantity int32 `json:"multi_box_qty"`
|
||||||
|
|
||||||
|
// Shipment number
|
||||||
|
PostingNumber string `json:"posting_number"`
|
||||||
|
|
||||||
|
// Product list
|
||||||
|
Products []CheckProductItemsDataProduct `json:"products"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// Method returns the created items data passed in the `/v5/fbs/posting/product/exemplar/set` method.
|
||||||
|
func (c FBS) CreateOrGetProductExemplar(ctx context.Context, params *CreateOrGetProductExemplarParams) (*CreateOrGetProductExemplarResponse, error) {
|
||||||
|
url := "/v5/fbs/posting/product/exemplar/create-or-get"
|
||||||
|
|
||||||
|
resp := &CreateOrGetProductExemplarResponse{}
|
||||||
|
|
||||||
|
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
|
||||||
|
}
|
||||||
|
|||||||
116
ozon/fbs_test.go
116
ozon/fbs_test.go
@@ -1395,15 +1395,27 @@ func TestCheckProductItemsData(t *testing.T) {
|
|||||||
http.StatusOK,
|
http.StatusOK,
|
||||||
map[string]string{"Client-Id": "my-client-id", "Api-Key": "my-api-key"},
|
map[string]string{"Client-Id": "my-client-id", "Api-Key": "my-api-key"},
|
||||||
&CheckProductItemsDataParams{
|
&CheckProductItemsDataParams{
|
||||||
PostingNumber: "48173252-0034-4",
|
MultiBoxQuantity: 0,
|
||||||
Products: CheckProductItemsDataProduct{
|
PostingNumber: "1234",
|
||||||
Exemplars: []FBSProductExemplar{
|
Products: []CheckProductItemsDataProduct{
|
||||||
{
|
{
|
||||||
IsGTDAbsest: true,
|
Exemplars: []CheckProductItemsDataProductExemplar{
|
||||||
MandatoryMark: "010290000151642731tVMohkbfFgunB",
|
{
|
||||||
|
ExemplarId: 1,
|
||||||
|
GTD: "string",
|
||||||
|
IsGTDAbsent: true,
|
||||||
|
IsRNPTAbsent: true,
|
||||||
|
MandatoryMark: "string",
|
||||||
|
RNPT: "string",
|
||||||
|
JWUIN: "string",
|
||||||
|
},
|
||||||
},
|
},
|
||||||
|
IsGTDNeeded: true,
|
||||||
|
IsMandatoryMarkNeeded: true,
|
||||||
|
IsRNPTNeeded: true,
|
||||||
|
ProductId: 22,
|
||||||
|
Quantity: 11,
|
||||||
},
|
},
|
||||||
ProductId: 476925391,
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
`{
|
`{
|
||||||
@@ -1784,22 +1796,15 @@ func TestPartialPackOrder(t *testing.T) {
|
|||||||
PostingNumber: "48173252-0034-4",
|
PostingNumber: "48173252-0034-4",
|
||||||
Products: []PartialPackOrderProduct{
|
Products: []PartialPackOrderProduct{
|
||||||
{
|
{
|
||||||
ExemplarInfo: []FBSProductExemplar{
|
ExemplarIds: []string{"string"},
|
||||||
{
|
ProductId: 247508873,
|
||||||
MandatoryMark: "mark",
|
Quantity: 1,
|
||||||
GTD: "gtd",
|
|
||||||
IsGTDAbsest: true,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
ProductId: 247508873,
|
|
||||||
Quantity: 1,
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
`{
|
`
|
||||||
"result": [
|
{
|
||||||
"48173252-0034-9"
|
"result": "48173252-0034-9"
|
||||||
]
|
|
||||||
}`,
|
}`,
|
||||||
},
|
},
|
||||||
// Test No Client-Id or Api-Key
|
// Test No Client-Id or Api-Key
|
||||||
@@ -2843,3 +2848,74 @@ func TestGetActPDF(t *testing.T) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestCreateOrGetProductExemplar(t *testing.T) {
|
||||||
|
t.Parallel()
|
||||||
|
|
||||||
|
tests := []struct {
|
||||||
|
statusCode int
|
||||||
|
headers map[string]string
|
||||||
|
params *CreateOrGetProductExemplarParams
|
||||||
|
response string
|
||||||
|
}{
|
||||||
|
// Test Ok
|
||||||
|
{
|
||||||
|
http.StatusOK,
|
||||||
|
map[string]string{"Client-Id": "my-client-id", "Api-Key": "my-api-key"},
|
||||||
|
&CreateOrGetProductExemplarParams{
|
||||||
|
PostingNumber: "string",
|
||||||
|
},
|
||||||
|
`{
|
||||||
|
"multi_box_qty": 0,
|
||||||
|
"posting_number": "string",
|
||||||
|
"products": [
|
||||||
|
{
|
||||||
|
"exemplars": [
|
||||||
|
{
|
||||||
|
"exemplar_id": 0,
|
||||||
|
"gtd": "string",
|
||||||
|
"is_gtd_absent": true,
|
||||||
|
"is_rnpt_absent": true,
|
||||||
|
"mandatory_mark": "string",
|
||||||
|
"rnpt": "string",
|
||||||
|
"jw_uin": "string"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"is_gtd_needed": true,
|
||||||
|
"is_mandatory_mark_needed": true,
|
||||||
|
"is_rnpt_needed": true,
|
||||||
|
"product_id": 0,
|
||||||
|
"quantity": 0
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}`,
|
||||||
|
},
|
||||||
|
// Test No Client-Id or Api-Key
|
||||||
|
{
|
||||||
|
http.StatusUnauthorized,
|
||||||
|
map[string]string{},
|
||||||
|
&CreateOrGetProductExemplarParams{},
|
||||||
|
`{
|
||||||
|
"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().CreateOrGetProductExemplar(ctx, test.params)
|
||||||
|
if err != nil {
|
||||||
|
t.Error(err)
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
compareJsonResponse(t, test.response, &CreateOrGetProductExemplarResponse{})
|
||||||
|
|
||||||
|
if resp.StatusCode != test.statusCode {
|
||||||
|
t.Errorf("got wrong status code: got: %d, expected: %d", resp.StatusCode, test.statusCode)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user