-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Price list additions #1032
base: develop
Are you sure you want to change the base?
Price list additions #1032
Changes from 9 commits
14cb6e6
0209664
12406f6
d8802ac
9cac12a
6f83c2c
6153407
b724a88
34e9ea1
5ce80c6
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
title: PriceListPricesType | ||
type: string | ||
enum: | ||
- net | ||
- gross | ||
description: Price list prices type |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
title: PriceListType | ||
type: string | ||
enum: | ||
- sell | ||
- purchase | ||
description: Price list types |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
title: GetEntitiesClientsInfoResponse | ||
type: object | ||
properties: | ||
data: | ||
$ref: ../schemas/EntitiesClientsInfo.yaml |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
title: GetPriceListItemsResponse | ||
type: object | ||
properties: | ||
data: | ||
$ref: ../schemas/PriceListItemsList.yaml |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
title: ListPriceListsResponse | ||
type: object | ||
properties: | ||
data: | ||
type: array | ||
items: | ||
$ref: ../schemas/PriceList.yaml |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
type: object | ||
title: EntitiesClientInfo | ||
properties: | ||
countries_list: | ||
type: array | ||
description: Countries list | ||
nullable: true | ||
items: | ||
type: string | ||
payment_methods_list: | ||
type: array | ||
description: Payment methods list | ||
nullable: true | ||
items: | ||
$ref: ./PaymentMethod.yaml | ||
payment_accounts_list: | ||
type: array | ||
description: Payment accounts list | ||
nullable: true | ||
items: | ||
$ref: ./PaymentAccount.yaml | ||
vat_types_list: | ||
type: array | ||
description: Vat types list | ||
nullable: true | ||
items: | ||
$ref: ./VatType.yaml | ||
price_lists: | ||
type: array | ||
description: Price lists | ||
nullable: true | ||
items: | ||
$ref: ./PriceList.yaml | ||
limit: | ||
type: number | ||
description: Limit | ||
nullable: true | ||
usage: | ||
type: number | ||
description: usage | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. sistemare descrizioni tutte There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. prendere spunto daglli altir modelli |
||
nullable: true |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,3 +40,4 @@ properties: | |
type: string | ||
description: E-invoice payment method | ||
nullable: true | ||
description: '' |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
type: object | ||
title: PriceList | ||
properties: | ||
id: | ||
type: string | ||
description: Price list id | ||
nullable: true | ||
name: | ||
type: string | ||
example: '123' | ||
description: Price list name | ||
nullable: true | ||
prices_type: | ||
$ref: ../enums/PriceListPricesType.yaml | ||
is_default: | ||
type: boolean | ||
description: This entity is default | ||
nullable: true | ||
valid_from: | ||
type: string | ||
description: Price list start validity date | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ...validity start date |
||
nullable: true | ||
valid_to: | ||
type: string | ||
nullable: true | ||
description: Price list end validity date | ||
type: | ||
$ref: ../enums/PriceListType.yaml |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
title: PriceListItem | ||
type: object | ||
properties: | ||
price: | ||
type: number |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
title: PriceListItemsList | ||
type: object | ||
additionalProperties: | ||
type: object | ||
$ref: ./PriceListItem.yaml |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
tutti le chiamate di info per creazione si chiamano ReceiptPreCreateInfo IssuedDocumentPreCreateInfo e così via