[FIX] l10n_lu: remove unused res_company (badly revived from v6.0 merge)

bzr revid: xal@openerp.com-20120713083433-ix4d069io71vlhfm
This commit is contained in:
Xavier ALT 2012-07-13 10:34:33 +02:00
parent fbaca2f2a0
commit 71f8ebc3c4
2 changed files with 0 additions and 21 deletions

View File

@ -20,6 +20,5 @@
##############################################################################
import wizard
import res_company
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -1,20 +0,0 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
from osv import fields, osv
class res_company_vat_lu(osv.osv):
_name = 'res.company'
_inherit = 'res.company'
_columns = {
'vat_matricule': fields.char('VAT Matricule', size=32, help="VAT Matricule identifing company to country vat office"),
'vat_office': fields.char('VAT Office', size=16),
'vat_mode': fields.selection([('sales', 'Sales'), ('receipts', 'Receipts')], 'VAT Mode', size=16),
}
_defaults = {
'vat_mode': lambda *a: 'sales',
}
res_company_vat_lu()