Merge pull request #6750 from rohitwaghchaure/country_wise_tax_issue
[Fix] country wise tax, country name issue
This commit is contained in:
commit
e585683db3
@ -1039,7 +1039,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
"Russia": {
|
"Russian Federation": {
|
||||||
"Russia VAT 18%": {
|
"Russia VAT 18%": {
|
||||||
"account_name": "VAT 18%",
|
"account_name": "VAT 18%",
|
||||||
"tax_rate": 18.00,
|
"tax_rate": 18.00,
|
||||||
|
@ -247,7 +247,7 @@ def get_fy_details(fy_start_date, fy_end_date):
|
|||||||
|
|
||||||
def create_sales_tax(args):
|
def create_sales_tax(args):
|
||||||
country_wise_tax = get_country_wise_tax(args.get("country"))
|
country_wise_tax = get_country_wise_tax(args.get("country"))
|
||||||
if len(country_wise_tax)>0:
|
if country_wise_tax and len(country_wise_tax) > 0:
|
||||||
for sales_tax, tax_data in country_wise_tax.items():
|
for sales_tax, tax_data in country_wise_tax.items():
|
||||||
make_tax_account_and_template(args.get("company_name").strip(),
|
make_tax_account_and_template(args.get("company_name").strip(),
|
||||||
tax_data.get('account_name'), tax_data.get('tax_rate'), sales_tax)
|
tax_data.get('account_name'), tax_data.get('tax_rate'), sales_tax)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user