~camptocamp/c2c-rd-addons/7.0

« back to all changes in this revision

Viewing changes to chricar_top/top.py

  • Committer: openerp@bazaar.camptocamp.net
  • Date: 2011-06-07 07:24:13 UTC
  • mfrom: (3.1.40 c2c_austria_dev)
  • Revision ID: openerp@bazaar.camptocamp.net-20110607072413-b21c0i4vfqoh22oj
merge

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
# Service Company.
18
18
#
19
19
# This program is Free Software; you can redistribute it and/or
20
 
# modify it under the terms of the GNU General Public License
 
20
# modify it under the terms of the GNU Affero General Public License
21
21
# as published by the Free Software Foundation; either version 3
22
22
# of the License, or (at your option) any later version.
23
23
#
24
24
# This program is distributed in the hope that it will be useful,
25
25
# but WITHOUT ANY WARRANTY; without even the implied warranty of
26
26
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
27
 
# GNU General Public License for more details.
 
27
# GNU Affero General Public License for more details.
28
28
#
29
 
# You should have received a copy of the GNU General Public License
 
29
# You should have received a copy of the GNU Affero General Public License
30
30
# along with this program; if not, see <http://www.gnu.org/licenses/> or
31
31
# write to the Free Software Foundation, Inc.,
32
32
# 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
170
170
 
171
171
       'operating_cost'     : fields.function(_operating_cost, method=True, string="Monthly operating costs", type='float', digits=(16,0)),
172
172
       'ref_top'            : fields.function(_get_ref, method=True, string="Ref Top", type="char"),
173
 
 
 
173
       'air_condition'      : fields.selection([('unknown','Unknown'),
 
174
                                                ('none','None'),
 
175
                                                ('full','Full'),
 
176
                                                ('partial','Partial'),
 
177
                                                ], 'Air Condition' ),
174
178
}
175
179
     _defaults = {
176
180
       'alarm'             : lambda *a: False,