~vauxoo/openerp-venezuela-localization/barbara-generatetxt

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#!/usr/bin/python
# -*- encoding: utf-8 -*-
###########################################################################
#    Module Writen to OpenERP, Open Source Management Solution
#    Copyright (C) OpenERP Venezuela (<http://openerp.com.ve>).
#    All Rights Reserved
###############Credits######################################################
#    Coded by: Humberto Arocha           <humberto@openerp.com.ve>
#              Maria Gabriela Quilarque  <gabrielaquilarque97@gmail.com>
#              Javier Duran              <javier.duran@netquatro.com>             
#    Planified by: Nhomar Hernandez
#    Finance by: Helados Gilda, C.A. http://heladosgilda.com.ve
#    Audited by: Humberto Arocha humberto@openerp.com.ve
#############################################################################
#    This program is free software: you can redistribute it and/or modify
#    it under the terms of the GNU General Public License as published by
#    the Free Software Foundation, either version 3 of the License, or
#    (at your option) any later version.
#
#    This program is distributed in the hope that it will be useful,
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#    GNU General Public License for more details.
#
#    You should have received a copy of the GNU General Public License
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
##############################################################################
from osv import osv
from osv import fields
from tools.translate import _
from tools import config
import time
import datetime
import decimal_precision as dp

class islr_rates(osv.osv):
    '''
    Modulo para crear las tasas de los Conceptos de Retencion
    '''
    _name='islr.rates'
    _description = 'Rates'


    def _get_name(self,cr,uid,ids, field_name, arg, context):
        '''
        Funcion para obtener el nombre de la tasa del concepto de retencion
        '''
        res={}
        for rate in self.browse(cr,uid,ids):
            if rate.nature:
                if rate.residence:
                    name = 'Persona' + ' ' +'Natural' + ' ' +'Residente'
                else:
                    name = 'Persona' + ' ' +'Natural' + ' ' +'No Residente'
            else:
                if rate.residence:
                    name = 'Persona' + ' ' +'Juridica' + ' ' +'Domiciliada'
                else:
                    name = 'Persona' + ' ' +'Juridica' + ' ' +'No Domiciliada'
            res[rate.id]=name
        return res

    _columns={
    'name': fields.function(_get_name, method=True, type='char', string='Rate', size=256, help="Name retention rate of withhold concept"),
    'code':fields.char('Concept Code', size=3,required=True, help="Concept code"),
    'base': fields.float('Without Tax Amount',required=True, help="Percentage of the amount on which to apply the withholding", digits_compute= dp.get_precision('Withhold ISLR')),
    'minimum': fields.float('Min. Amount',required=True, help="Minimum amount, from which it will determine whether you withholded", digits_compute= dp.get_precision('Withhold ISLR')),
    'wh_perc': fields.float('Percentage Amount',required=True,help="The percentage to apply to taxable withold income  throw the amount to withhold", digits_compute= dp.get_precision('Withhold ISLR')),
    'subtract': fields.float('Subtrahend in Tax Units',required=True,help="Amount to subtract from the total amount to withhold, Amount Percentage withhold ..... This subtrahend only applied the first time you perform withhold ", digits_compute= dp.get_precision('Withhold ISLR')),
    'residence': fields.boolean('Residence',help="Indicates whether a person is resident, compared with the direction of the Company"),
    'nature': fields.boolean('Nature',help="Indicates whether a person is nature or legal"),
    'concept_id': fields.many2one('islr.wh.concept','Withhold  Concept',help="Withhold concept associated with this rate",required=False, ondelete='cascade'),
    }
islr_rates()