Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog][keepachangelog] and this project adheres to [Semantic Versioning][semver].

## Unreleased

### Added

- Source `customs.fts.fee`
- Fields `customs.history.items[].utilization_tax.office.code`, `customs.history.items[].utilization_tax.date`, `customs.history.items[].utilization_tax.is_personal_use`
- Field `customs.history.items[].utilization_tax.status` also fillable by `customs.fts.fee`
- Field `customs.history.date.update` also fillable by `customs.fts.fee`

## v5.30.0

### Changed
Expand Down
36 changes: 34 additions & 2 deletions fields/default/fields_list.json
Original file line number Diff line number Diff line change
Expand Up @@ -5062,7 +5062,38 @@
"string"
],
"fillable_by": [
"base.basalt"
"base.basalt",
"customs.fts.fee"
]
},
{
"path": "customs.history.items[].utilization_tax.office.code",
"description": "История по таможне: Код таможенного органа, зарегистрировавшего таможенный приходный ордер",
"types": [
"string"
],
"fillable_by": [
"customs.fts.fee"
]
},
{
"path": "customs.history.items[].utilization_tax.date",
"description": "История по таможне: Дата оплаты утилизационного сбора",
"types": [
"string"
],
"fillable_by": [
"customs.fts.fee"
]
},
{
"path": "customs.history.items[].utilization_tax.is_personal_use",
"description": "История по таможне: Признак ввоза транспортного средства физическим лицом для личного пользования",
"types": [
"boolean"
],
"fillable_by": [
"customs.fts.fee"
]
},
{
Expand Down Expand Up @@ -5121,7 +5152,8 @@
],
"fillable_by": [
"customs.fts",
"base.basalt"
"base.basalt",
"customs.fts.fee"
]
},
{
Expand Down
7 changes: 6 additions & 1 deletion reports/default/examples/empty.json
Original file line number Diff line number Diff line change
Expand Up @@ -715,7 +715,12 @@
}
},
"utilization_tax": {
"status": null
"status": null,
"office": {
"code": null
},
"date": null,
"is_personal_use": null
},
"sender": {
"name": null,
Expand Down
7 changes: 6 additions & 1 deletion reports/default/examples/full.json
Original file line number Diff line number Diff line change
Expand Up @@ -933,7 +933,12 @@
}
},
"utilization_tax": {
"status": "Уплачен"
"status": "Уплачен",
"office": {
"code": "10608050"
},
"date": "2024-08-19T00:00:00.000Z",
"is_personal_use": false
},
"sender": {
"name": "ООО Автоторг",
Expand Down
51 changes: 49 additions & 2 deletions reports/default/json-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -5737,7 +5737,53 @@
"Уплачен"
],
"fillable_by": [
"base.basalt"
"base.basalt",
"customs.fts.fee"
]
},
"office": {
"type": "object",
"additionalProperties": false,
"properties": {
"code": {
"description": "Код таможенного органа, зарегистрировавшего таможенный приходный ордер",
"type": [
"string",
"null"
],
"examples": [
"10608050"
],
"fillable_by": [
"customs.fts.fee"
]
}
}
},
"date": {
"description": "Дата оплаты утилизационного сбора",
"type": [
"string",
"null"
],
"examples": [
"2024-08-19T00:00:00.000Z"
],
"fillable_by": [
"customs.fts.fee"
]
},
"is_personal_use": {
"description": "Признак ввоза транспортного средства физическим лицом для личного пользования",
"type": [
"boolean",
"null"
],
"examples": [
false
],
"fillable_by": [
"customs.fts.fee"
]
}
}
Expand Down Expand Up @@ -5827,7 +5873,8 @@
],
"fillable_by": [
"customs.fts",
"base.basalt"
"base.basalt",
"customs.fts.fee"
]
}
}
Expand Down
5 changes: 5 additions & 0 deletions sources/default/sources_list.json
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,11 @@
"description": "Данные о таможенном оформлении в базе ФТС",
"enabled": true
},
{
"name": "customs.fts.fee",
"description": "Утилизационный сбор (ФТС)",
"enabled": true
},
{
"name": "owner.taxi.history",
"description": "История такси владельца ТС",
Expand Down
Loading