Skip to content
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

Swedish tax template add missing brackets #44666

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
Open
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
199 changes: 195 additions & 4 deletions erpnext/setup/setup_wizard/data/country_wise_tax.json
Original file line number Diff line number Diff line change
Expand Up @@ -4500,10 +4500,201 @@
},

"Sweden": {
"Sweden Tax": {
"account_name": "VAT",
"tax_rate": 25.00
}
"tax_categories": [],
"chart_of_accounts": {
"*": {
"sales_tax_templates": [
{
"title": "Försäljning Moms 25%",
"is_default": 1,
"taxes": [
{
"account_head": {
"account_name": "Utgående moms, 25 %",
"account_number": "2610",
"tax_rate": 25.00
},
"description": "Moms 25%",
"rate": 25.00
}
]
},
{
"title": "Försäljning Moms 12%",
"is_default": 0,
"taxes": [
{
"account_head": {
"account_name": "Utgående moms, 12 %",
"account_number": "2620",
"tax_rate": 12.00
},
"description": "Moms 12%",
"rate": 12.00
}
]
},
{
"title": "Försäljning Moms 6%",
"is_default": 0,
"taxes": [
{
"account_head": {
"account_name": "Utgående moms, 6 %",
"account_number": "2630",
"tax_rate": 6.00
},
"description": "Moms 6%",
"rate": 6.00
}
]
},
{
"title": "Försäljning Moms 0%",
"is_default": 0,
"taxes": [
{
"account_head": {
"account_name": "Utgående moms, 6 %",
"account_number": "2630",
"tax_rate": 0.00
},
"description": "Moms 0%",
"rate": 0.00
}
]
}
],
"purchase_tax_templates": [
{
"title": "Inköp Moms 25%",
"is_default": 1,
"taxes": [
{
"account_head": {
"account_name": "Ingående moms",
"account_number": "2640",
"root_type": "Liability",
"tax_rate": 25.00
},
"description": "Moms 25%",
"rate": 25.00
}
]
},
{
"title": "Inköp Moms 12%",
"is_default": 0,
"taxes": [
{
"account_head": {
"account_name": "Ingående moms",
"account_number": "2640",
"root_type": "Liability",
"tax_rate": 12.00
},
"description": "Moms 12%",
"rate": 12.00
}
]
},
{
"title": "Inköp Moms 6%",
"is_default": 0,
"taxes": [
{
"account_head": {
"account_name": "Ingående moms",
"account_number": "2640",
"root_type": "Liability",
"tax_rate": 6.00
},
"description": "Moms 6%",
"rate": 6.00
}
]
},
{
"title": "Inköp Moms 0%",
"is_default": 0,
"taxes": [
{
"account_head": {
"account_name": "Ingående moms",
"account_number": "2640",
"root_type": "Liability",
"tax_rate": 0.00
},
"description": "Moms 0%",
"rate": 0.00
}
]
}
],
"item_tax_templates": [
{
"title": "Artikel Moms 25%",
"taxes": [
{
"tax_type": {
"account_name": "Utgående moms, 25 %",
"account_number": "2610",
"root_type": "Liability",
"tax_rate": 25.00
},
"description": "Moms 25%",
"tax_rate": 25.00
}
]
},
{
"title": "Artikel Moms 12%",
"taxes": [
{
"tax_type": {
"account_name": "Utgående moms, 12 %",
"account_number": "2620",
"root_type": "Liability",
"tax_rate": 12.00
},
"description": "Moms 12%",
"tax_rate": 12.00
}
]
},
{
"title": "Artikel Moms 6%",
"taxes": [
{
"tax_type": {
"account_name": "Utgående moms, 6 %",
"account_number": "2630",
"root_type": "Liability",
"tax_rate": 6.00
},
"description": "Moms 6%",
"tax_rate": 6.00
}
]
},
{
"title": "Artikel Moms 0%",
"taxes": [
{
"tax_type": {
"account_name": "Utgående moms, 0 %",
"account_number": "2611",
"root_type": "Liability",
"tax_rate": 0.00
},
"description": "Moms 0%",
"tax_rate": 0.00
}
]
}
]
}
}
},

"Switzerland": {
Expand Down
Loading