blob: ab92ee895af2fea4a0823bcdd0df328cd8c998dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import fields, models
class ServiceTaxRate(models.Model):
_name = "l10n_eu_service.service_tax_rate"
_description = "EU Service Tax Rate"
country_id = fields.Many2one('res.country', string='Country')
rate = fields.Float(string="VAT Rate")
|