~openbias/bias-trunk/addons_pscleaners

« back to all changes in this revision

Viewing changes to bias_account_report/wizard/wizard_account_custom_report.py

  • Committer: Arturo Galvan Rdz.
  • Date: 2012-09-26 20:03:46 UTC
  • Revision ID: agalvan@bias.com.mx-20120926200346-ji6yfdr7svxnjyu4
Modificaciones a reportes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
        <field name="account_id"/>
51
51
        <field name="group_by" />
52
52
        <field name="report_zero"/>
 
53
        <field name="reconcil" readonly="1"/>
53
54
    <newline/>
54
55
    <separator string="Seleccion de Empresa" colspan="2"/>
55
56
    <separator string="Categoria de Empresa" colspan="2"/>
93
94
    'category_ids': {'string': 'Categoria', 'type': 'many2many', 'relation': 'res.partner.category'},
94
95
        'journal_ids': {'string': 'Journal', 'type': 'many2many', 'relation': 'account.journal', 'help': 'Keep empty for all journals'},
95
96
        'journal_exc_ids': {'string': 'Journal', 'type': 'many2many', 'relation': 'account.journal'},
 
97
    'reconcil':{
 
98
        'string':"Asientos Incluidos",
 
99
        'type':'selection',
 
100
        'selection':[
 
101
                ('all','Todos los Asientos'),
 
102
                ('unreconcile_today','No pagados hasta hoy'),
 
103
                ('unreconcile_inrange','No pagados en el Rango'),
 
104
                ('reconcile_inrange','Pagados en el Rango')],
 
105
        'required':True,
 
106
        'default': lambda *a: 'all',
 
107
    },
96
108
}
97
109
 
98
110
new_form = '''<?xml version="1.0"?>