[FIX] website_event_sale: remove invalid code chunk introduced during previous forwar...
[odoo/odoo.git] / addons / point_of_sale / account_bank_statement.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2008 PC Solutions (<http://pcsol.be>). All Rights Reserved
6 #    Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
7 #
8 #    This program is free software: you can redistribute it and/or modify
9 #    it under the terms of the GNU Affero General Public License as
10 #    published by the Free Software Foundation, either version 3 of the
11 #    License, or (at your option) any later version.
12 #
13 #    This program is distributed in the hope that it will be useful,
14 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
15 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 #    GNU Affero General Public License for more details.
17 #
18 #    You should have received a copy of the GNU Affero General Public License
19 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 #
21 ##############################################################################
22
23 from openerp.osv import fields, osv
24
25 class account_journal(osv.osv):
26     _inherit = 'account.journal'
27     _columns = {
28         'journal_user': fields.boolean('PoS Payment Method', help="Check this box if this journal define a payment method that can be used in point of sales."),
29
30         'amount_authorized_diff' : fields.float('Amount Authorized Difference', help="This field depicts the maximum difference allowed between the ending balance and the theorical cash when closing a session, for non-POS managers. If this maximum is reached, the user will have an error message at the closing of his session saying that he needs to contact his manager."),
31         'self_checkout_payment_method' : fields.boolean('Self Checkout Payment Method'),
32     }
33     _defaults = {
34         'self_checkout_payment_method' : False,
35     }
36
37
38 class account_cash_statement(osv.osv):
39     _inherit = 'account.bank.statement'
40     _columns = {
41         'pos_session_id' : fields.many2one('pos.session'),
42     }
43
44
45 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: