Skip to content

Commit

Permalink
Update how-to-configure-data-transfer.md
Browse files Browse the repository at this point in the history
изменение в событии basket_add и order - добавлен параметр "qnt"
  • Loading branch information
likatya authored Nov 13, 2024
1 parent b5790ab commit 37edceb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/ecom/how-to-configure-data-transfer.md
Original file line number Diff line number Diff line change
Expand Up @@ -525,9 +525,9 @@ typeof sndsyApi != 'undefined' && sndsyApi.runQueue();
"id": "product1", //обязательно, формат String
"available": 1 | 0, //формат UInt8
"name": "name", //рекомендуется, формат String
"qnt": 1, //обязательно, формат Int64
"price": 7.88, //рекомендуется, формат Decimal64(2)
"old_price": 5.99,//формат Decimal64(2)
"description": "description", //формат String
"picture": [], //абсолютные ссылки в массиве
"url": "url", //формат String, абсолютная ссылка
"model": "model", //формат String
Expand Down Expand Up @@ -601,6 +601,7 @@ typeof sndsyApi != 'undefined' && sndsyApi.runQueue();
"name": "name", //рекомендуется, формат String
"price": 7.88, //рекомендуется, формат Decimal64(2)
"old_price": 5.99,//формат Decimal64(2)
"qnt": 1, //обязательно, формат Int64
"description": "description", //формат String
"picture": [], //абсолютные ссылки в массиве
"url": "url", //формат String, абсолютная ссылка
Expand Down

0 comments on commit 37edceb

Please sign in to comment.