mirror of
https://github.com/valitydev/swag-payments.git
synced 2024-11-07 01:55:22 +00:00
f40a1bf400
* HG-240: Introduce invoice cart * HG-240: Fix review issues * HG-240: Redesign VAT definition and usage * HG-246: add cart support to InvoiceTemplating (#93) * Revert "HG-246: add cart support to InvoiceTemplating (#93)" (#95) * Add minItems to InvoiceCart definition (#96)
36 lines
1.1 KiB
YAML
36 lines
1.1 KiB
YAML
description: Позиция товара или услуги
|
||
type: object
|
||
required:
|
||
- product
|
||
- quantity
|
||
- price
|
||
properties:
|
||
product:
|
||
description: Описание предлагаемого товара или услуги
|
||
type: string
|
||
maxLength: 1000
|
||
quantity:
|
||
description: |
|
||
Количество единиц товаров или услуг, предлагаемых на продажу в этой
|
||
позиции
|
||
type: integer
|
||
format: int64
|
||
minimum: 1
|
||
default: 1
|
||
price:
|
||
description: |
|
||
Цена предлагаемого товара или услуги, в минорных денежных единицах, например
|
||
в копейках в случае указания российских рублей в качестве валюты
|
||
type: integer
|
||
format: int64
|
||
minimum: 1
|
||
cost:
|
||
description: |
|
||
Суммарная стоимость позиции с учётом количества единиц товаров или услуг
|
||
type: integer
|
||
format: int64
|
||
minimum: 1
|
||
readOnly: true
|
||
taxMode:
|
||
$ref: '#/definitions/InvoiceLineTaxMode'
|