~openerp-commiter/openobject-addons/trunk-extra-addons

« back to all changes in this revision

Viewing changes to health/wizard/regimecaisse.py

  • Committer: Eric Vernichon
  • Date: 2009-04-27 14:31:45 UTC
  • Revision ID: eric@vernichon.fr-20090427143145-urjpwaohgd083o41
ce module n'a pas été testé en V5

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# -*- encoding: utf-8 -*-
 
1
# -*- coding: utf-8 -*-
2
2
##############################################################################
3
3
#
4
 
# Copyright (c) 2007 EVI All Rights Reserved.
 
4
# Copyright (c) 2009 EVERLIBRE All Rights Reserved.
5
5
#
6
6
# WARNING: This program as such is intended to be used by professional
7
7
# programmers who take the whole responsability of assessing all potential
30
30
import pooler
31
31
 
32
32
dates_form = '''<?xml version="1.0"?>
33
 
<form string="Select Date">
 
33
<form string="Select period">
34
34
    <field name="date" colspan="4"/>
35
35
</form>'''
36
36
 
37
37
dates_fields = {
38
 
    'date': {'string': 'Start', 'type': 'date', 'required': True},
 
38
    'date': {'string': 'Début', 'type': 'date', 'required': True},
39
39
}
40
40
 
41
41
class wizard_report(wizard.interface):