Launchpad automatic translations update.
[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 osv import fields, osv
24
25 class account_journal(osv.osv):
26     _inherit = 'account.journal'
27     _columns = {
28         'auto_cash': fields.boolean('Automatic Opening', help="This field authorize the automatic creation of the cashbox, without control of the initial balance."),
29         'check_dtls': fields.boolean('Control Balance Before Closing', help="This field authorize Validation of Cashbox without controlling the closing balance."),
30         '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."),
31     }
32     _defaults = {
33         'check_dtls': False,
34         'auto_cash': True,
35     }
36
37 account_journal()
38
39 class account_cash_statement(osv.osv):
40     _inherit = 'account.bank.statement'
41
42     def _equal_balance(self, cr, uid, cash_id, context=None):
43         statement = self.browse(cr, uid, cash_id, context=context)
44         if not statement.journal_id.check_dtls:
45             return True
46         if statement.journal_id.check_dtls and (statement.balance_end != statement.balance_end_cash):
47             return False
48         else:
49             return True
50
51     def _get_cash_open_box_lines(self, cr, uid, context=None):
52         res = super(account_cash_statement,self)._get_cash_open_box_lines(cr, uid, context)
53         curr = [0.01, 0.02, 0.05, 0.10, 0.20, 0.50]
54         for rs in curr:
55             dct = {
56                 'pieces': rs,
57                 'number': 0
58             }
59             res.append(dct)
60         res.sort()
61         return res
62
63     def _get_default_cash_close_box_lines(self, cr, uid, context=None):
64         res = super(account_cash_statement,self)._get_default_cash_close_box_lines(cr, uid, context=context)
65         curr = [0.01, 0.02, 0.05, 0.10, 0.20, 0.50]
66         for rs in curr:
67             dct = {
68                 'pieces': rs,
69                 'number': 0
70             }
71             res.append(dct)
72         res.sort()
73         return res
74
75 account_cash_statement()
76
77 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: