16 lines
311 B
Python
16 lines
311 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||
|
|
||
|
"""
|
||
|
The EU_ACCOUNT_MAP answers the question: "which existing account should be used for VAT Payable OSS?"
|
||
|
|
||
|
{
|
||
|
'coa': 'account_code'
|
||
|
}
|
||
|
"""
|
||
|
|
||
|
EU_ACCOUNT_MAP = {
|
||
|
'de_skr03': '1767',
|
||
|
'de_skr04': '3817',
|
||
|
}
|