[FIX] point_of_sale: it was impossible to delete a pos session
[odoo/odoo.git] / addons / point_of_sale / point_of_sale.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
6 #
7 #    This program is free software: you can redistribute it and/or modify
8 #    it under the terms of the GNU Affero General Public License as
9 #    published by the Free Software Foundation, either version 3 of the
10 #    License, or (at your option) any later version.
11 #
12 #    This program is distributed in the hope that it will be useful,
13 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 #    GNU Affero General Public License for more details.
16 #
17 #    You should have received a copy of the GNU Affero General Public License
18 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 #
20 ##############################################################################
21
22 import logging
23 import time
24
25 from openerp import tools
26 from openerp.osv import fields, osv
27 from openerp.tools.translate import _
28
29 import openerp.addons.decimal_precision as dp
30 import openerp.addons.product.product
31
32 _logger = logging.getLogger(__name__)
33
34 class pos_config(osv.osv):
35     _name = 'pos.config'
36
37     POS_CONFIG_STATE = [
38         ('active', 'Active'),
39         ('inactive', 'Inactive'),
40         ('deprecated', 'Deprecated')
41     ]
42
43     def _get_currency(self, cr, uid, ids, fieldnames, args, context=None):
44         result = dict.fromkeys(ids, False)
45         for pos_config in self.browse(cr, uid, ids, context=context):
46             if pos_config.journal_id:
47                 currency_id = pos_config.journal_id.currency.id or pos_config.journal_id.company_id.currency_id.id
48             else:
49                 currency_id = self.pool['res.users'].browse(cr, uid, uid, context=context).company_id.currency_id.id
50             result[pos_config.id] = currency_id
51         return result
52
53     _columns = {
54         'name' : fields.char('Point of Sale Name', select=1,
55              required=True, help="An internal identification of the point of sale"),
56         'journal_ids' : fields.many2many('account.journal', 'pos_config_journal_rel', 
57              'pos_config_id', 'journal_id', 'Available Payment Methods',
58              domain="[('journal_user', '=', True ), ('type', 'in', ['bank', 'cash'])]",),
59         'picking_type_id': fields.many2one('stock.picking.type', 'Picking Type'),
60         'stock_location_id': fields.many2one('stock.location', 'Stock Location', domain=[('usage', '=', 'internal')], required=True),
61         'journal_id' : fields.many2one('account.journal', 'Sale Journal',
62              domain=[('type', '=', 'sale')],
63              help="Accounting journal used to post sales entries."),
64         'currency_id' : fields.function(_get_currency, type="many2one", string="Currency", relation="res.currency"),
65         'iface_self_checkout' : fields.boolean('Self Checkout Mode',
66              help="Check this if this point of sale should open by default in a self checkout mode. If unchecked, OpenERP uses the normal cashier mode by default."),
67         'iface_cashdrawer' : fields.boolean('Cashdrawer', help="Automatically open the cashdrawer"),
68         'iface_payment_terminal' : fields.boolean('Payment Terminal', help="Enables Payment Terminal integration"),
69         'iface_electronic_scale' : fields.boolean('Electronic Scale', help="Enables Electronic Scale integration"),
70         'iface_vkeyboard' : fields.boolean('Virtual KeyBoard', help="Enables an integrated Virtual Keyboard"),
71         'iface_print_via_proxy' : fields.boolean('Print via Proxy', help="Bypass browser printing and prints via the hardware proxy"),
72         'iface_scan_via_proxy' : fields.boolean('Scan via Proxy', help="Enable barcode scanning with a remotely connected barcode scanner"),
73         'iface_invoicing': fields.boolean('Invoicing',help='Enables invoice generation from the Point of Sale'),
74         'iface_big_scrollbars': fields.boolean('Large Scrollbars',help='For imprecise industrial touchscreens'),
75         'iface_fullscreen':     fields.boolean('Fullscreen', help='Display the Point of Sale in full screen mode'),
76         'receipt_header': fields.text('Receipt Header',help="A short text that will be inserted as a header in the printed receipt"),
77         'receipt_footer': fields.text('Receipt Footer',help="A short text that will be inserted as a footer in the printed receipt"),
78         'proxy_ip':       fields.char('IP Address', help='The hostname or ip address of the hardware proxy, Will be autodetected if left empty', size=45),
79
80         'state' : fields.selection(POS_CONFIG_STATE, 'Status', required=True, readonly=True, copy=False),
81         'sequence_id' : fields.many2one('ir.sequence', 'Order IDs Sequence', readonly=True,
82             help="This sequence is automatically created by OpenERP but you can change it "\
83                 "to customize the reference numbers of your orders.", copy=False),
84         'session_ids': fields.one2many('pos.session', 'config_id', 'Sessions'),
85         'group_by' : fields.boolean('Group Journal Items', help="Check this if you want to group the Journal Items by Product while closing a Session"),
86         'pricelist_id': fields.many2one('product.pricelist','Pricelist', required=True),
87         'company_id': fields.many2one('res.company', 'Company', required=True),
88         'barcode_product':  fields.char('Product Barcodes', size=64, help='The pattern that identifies product barcodes'),
89         'barcode_cashier':  fields.char('Cashier Barcodes', size=64, help='The pattern that identifies cashier login barcodes'),
90         'barcode_customer': fields.char('Customer Barcodes',size=64, help='The pattern that identifies customer\'s client card barcodes'),
91         'barcode_price':    fields.char('Price Barcodes',   size=64, help='The pattern that identifies a product with a barcode encoded price'),
92         'barcode_weight':   fields.char('Weight Barcodes',  size=64, help='The pattern that identifies a product with a barcode encoded weight'),
93         'barcode_discount': fields.char('Discount Barcodes',  size=64, help='The pattern that identifies a product with a barcode encoded discount'),
94     }
95
96     def _check_cash_control(self, cr, uid, ids, context=None):
97         return all(
98             (sum(int(journal.cash_control) for journal in record.journal_ids) <= 1)
99             for record in self.browse(cr, uid, ids, context=context)
100         )
101
102     _constraints = [
103         (_check_cash_control, "You cannot have two cash controls in one Point Of Sale !", ['journal_ids']),
104     ]
105
106     def name_get(self, cr, uid, ids, context=None):
107         result = []
108         states = {
109             'opening_control': _('Opening Control'),
110             'opened': _('In Progress'),
111             'closing_control': _('Closing Control'),
112             'closed': _('Closed & Posted'),
113         }
114         for record in self.browse(cr, uid, ids, context=context):
115             if (not record.session_ids) or (record.session_ids[0].state=='closed'):
116                 result.append((record.id, record.name+' ('+_('not used')+')'))
117                 continue
118             session = record.session_ids[0]
119             result.append((record.id, record.name + ' ('+session.user_id.name+')')) #, '+states[session.state]+')'))
120         return result
121
122     def _default_sale_journal(self, cr, uid, context=None):
123         company_id = self.pool.get('res.users').browse(cr, uid, uid, context=context).company_id.id
124         res = self.pool.get('account.journal').search(cr, uid, [('type', '=', 'sale'), ('company_id', '=', company_id)], limit=1, context=context)
125         return res and res[0] or False
126
127     def _default_pricelist(self, cr, uid, context=None):
128         res = self.pool.get('product.pricelist').search(cr, uid, [('type', '=', 'sale')], limit=1, context=context)
129         return res and res[0] or False
130
131     def _get_default_location(self, cr, uid, context=None):
132         wh_obj = self.pool.get('stock.warehouse')
133         user = self.pool.get('res.users').browse(cr, uid, uid, context)
134         res = wh_obj.search(cr, uid, [('company_id', '=', user.company_id.id)], limit=1, context=context)
135         if res and res[0]:
136             return wh_obj.browse(cr, uid, res[0], context=context).lot_stock_id.id
137         return False
138
139     def _get_default_company(self, cr, uid, context=None):
140         company_id = self.pool.get('res.users')._get_company(cr, uid, context=context)
141         return company_id
142
143     _defaults = {
144         'state' : POS_CONFIG_STATE[0][0],
145         'journal_id': _default_sale_journal,
146         'group_by' : True,
147         'pricelist_id': _default_pricelist,
148         'iface_invoicing': True,
149         'stock_location_id': _get_default_location,
150         'company_id': _get_default_company,
151         'barcode_product': '*', 
152         'barcode_cashier': '041*', 
153         'barcode_customer':'042*', 
154         'barcode_weight':  '21xxxxxNNDDD', 
155         'barcode_discount':'22xxxxxxxxNN', 
156         'barcode_price':   '23xxxxxNNNDD', 
157     }
158
159     def onchange_picking_type_id(self, cr, uid, ids, picking_type_id, context=None):
160         p_type_obj = self.pool.get("stock.picking.type")
161         p_type = p_type_obj.browse(cr, uid, picking_type_id, context=context)
162         if p_type.default_location_src_id and p_type.default_location_src_id.usage == 'internal' and p_type.default_location_dest_id and p_type.default_location_dest_id.usage == 'customer':
163             return {'value': {'stock_location_id': p_type.default_location_src_id.id}}
164         return False
165
166     def set_active(self, cr, uid, ids, context=None):
167         return self.write(cr, uid, ids, {'state' : 'active'}, context=context)
168
169     def set_inactive(self, cr, uid, ids, context=None):
170         return self.write(cr, uid, ids, {'state' : 'inactive'}, context=context)
171
172     def set_deprecate(self, cr, uid, ids, context=None):
173         return self.write(cr, uid, ids, {'state' : 'deprecated'}, context=context)
174
175     def create(self, cr, uid, values, context=None):
176         proxy = self.pool.get('ir.sequence')
177         sequence_values = dict(
178             name='PoS %s' % values['name'],
179             padding=5,
180             prefix="%s/"  % values['name'],
181         )
182         sequence_id = proxy.create(cr, uid, sequence_values, context=context)
183         values['sequence_id'] = sequence_id
184         return super(pos_config, self).create(cr, uid, values, context=context)
185
186     def unlink(self, cr, uid, ids, context=None):
187         for obj in self.browse(cr, uid, ids, context=context):
188             if obj.sequence_id:
189                 obj.sequence_id.unlink()
190         return super(pos_config, self).unlink(cr, uid, ids, context=context)
191
192 class pos_session(osv.osv):
193     _name = 'pos.session'
194     _order = 'id desc'
195
196     POS_SESSION_STATE = [
197         ('opening_control', 'Opening Control'),  # Signal open
198         ('opened', 'In Progress'),                    # Signal closing
199         ('closing_control', 'Closing Control'),  # Signal close
200         ('closed', 'Closed & Posted'),
201     ]
202
203     def _compute_cash_all(self, cr, uid, ids, fieldnames, args, context=None):
204         result = dict()
205
206         for record in self.browse(cr, uid, ids, context=context):
207             result[record.id] = {
208                 'cash_journal_id' : False,
209                 'cash_register_id' : False,
210                 'cash_control' : False,
211             }
212             for st in record.statement_ids:
213                 if st.journal_id.cash_control == True:
214                     result[record.id]['cash_control'] = True
215                     result[record.id]['cash_journal_id'] = st.journal_id.id
216                     result[record.id]['cash_register_id'] = st.id
217
218         return result
219
220     _columns = {
221         'config_id' : fields.many2one('pos.config', 'Point of Sale',
222                                       help="The physical point of sale you will use.",
223                                       required=True,
224                                       select=1,
225                                       domain="[('state', '=', 'active')]",
226                                      ),
227
228         'name' : fields.char('Session ID', required=True, readonly=True),
229         'user_id' : fields.many2one('res.users', 'Responsible',
230                                     required=True,
231                                     select=1,
232                                     readonly=True,
233                                     states={'opening_control' : [('readonly', False)]}
234                                    ),
235         'currency_id' : fields.related('config_id', 'currency_id', type="many2one", relation='res.currency', string="Currnecy"),
236         'start_at' : fields.datetime('Opening Date', readonly=True), 
237         'stop_at' : fields.datetime('Closing Date', readonly=True),
238
239         'state' : fields.selection(POS_SESSION_STATE, 'Status',
240                 required=True, readonly=True,
241                 select=1, copy=False),
242         
243         'sequence_number': fields.integer('Order Sequence Number'),
244
245         'cash_control' : fields.function(_compute_cash_all,
246                                          multi='cash',
247                                          type='boolean', string='Has Cash Control'),
248         'cash_journal_id' : fields.function(_compute_cash_all,
249                                             multi='cash',
250                                             type='many2one', relation='account.journal',
251                                             string='Cash Journal', store=True),
252         'cash_register_id' : fields.function(_compute_cash_all,
253                                              multi='cash',
254                                              type='many2one', relation='account.bank.statement',
255                                              string='Cash Register', store=True),
256
257         'opening_details_ids' : fields.related('cash_register_id', 'opening_details_ids', 
258                 type='one2many', relation='account.cashbox.line',
259                 string='Opening Cash Control'),
260         'details_ids' : fields.related('cash_register_id', 'details_ids', 
261                 type='one2many', relation='account.cashbox.line',
262                 string='Cash Control'),
263
264         'cash_register_balance_end_real' : fields.related('cash_register_id', 'balance_end_real',
265                 type='float',
266                 digits_compute=dp.get_precision('Account'),
267                 string="Ending Balance",
268                 help="Total of closing cash control lines.",
269                 readonly=True),
270         'cash_register_balance_start' : fields.related('cash_register_id', 'balance_start',
271                 type='float',
272                 digits_compute=dp.get_precision('Account'),
273                 string="Starting Balance",
274                 help="Total of opening cash control lines.",
275                 readonly=True),
276         'cash_register_total_entry_encoding' : fields.related('cash_register_id', 'total_entry_encoding',
277                 string='Total Cash Transaction',
278                 readonly=True,
279                 help="Total of all paid sale orders"),
280         'cash_register_balance_end' : fields.related('cash_register_id', 'balance_end',
281                 type='float',
282                 digits_compute=dp.get_precision('Account'),
283                 string="Theoretical Closing Balance",
284                 help="Sum of opening balance and transactions.",
285                 readonly=True),
286         'cash_register_difference' : fields.related('cash_register_id', 'difference',
287                 type='float',
288                 string='Difference',
289                 help="Difference between the theoretical closing balance and the real closing balance.",
290                 readonly=True),
291
292         'journal_ids' : fields.related('config_id', 'journal_ids',
293                                        type='many2many',
294                                        readonly=True,
295                                        relation='account.journal',
296                                        string='Available Payment Methods'),
297         'order_ids' : fields.one2many('pos.order', 'session_id', 'Orders'),
298
299         'statement_ids' : fields.one2many('account.bank.statement', 'pos_session_id', 'Bank Statement', readonly=True),
300     }
301
302     _defaults = {
303         'name' : '/',
304         'user_id' : lambda obj, cr, uid, context: uid,
305         'state' : 'opening_control',
306         'sequence_number': 1,
307     }
308
309     _sql_constraints = [
310         ('uniq_name', 'unique(name)', "The name of this POS Session must be unique !"),
311     ]
312
313     def _check_unicity(self, cr, uid, ids, context=None):
314         for session in self.browse(cr, uid, ids, context=None):
315             # open if there is no session in 'opening_control', 'opened', 'closing_control' for one user
316             domain = [
317                 ('state', 'not in', ('closed','closing_control')),
318                 ('user_id', '=', session.user_id.id)
319             ]
320             count = self.search_count(cr, uid, domain, context=context)
321             if count>1:
322                 return False
323         return True
324
325     def _check_pos_config(self, cr, uid, ids, context=None):
326         for session in self.browse(cr, uid, ids, context=None):
327             domain = [
328                 ('state', '!=', 'closed'),
329                 ('config_id', '=', session.config_id.id)
330             ]
331             count = self.search_count(cr, uid, domain, context=context)
332             if count>1:
333                 return False
334         return True
335
336     _constraints = [
337         (_check_unicity, "You cannot create two active sessions with the same responsible!", ['user_id', 'state']),
338         (_check_pos_config, "You cannot create two active sessions related to the same point of sale!", ['config_id']),
339     ]
340
341     def create(self, cr, uid, values, context=None):
342         context = dict(context or {})
343         config_id = values.get('config_id', False) or context.get('default_config_id', False)
344         if not config_id:
345             raise osv.except_osv( _('Error!'),
346                 _("You should assign a Point of Sale to your session."))
347
348         # journal_id is not required on the pos_config because it does not
349         # exists at the installation. If nothing is configured at the
350         # installation we do the minimal configuration. Impossible to do in
351         # the .xml files as the CoA is not yet installed.
352         jobj = self.pool.get('pos.config')
353         pos_config = jobj.browse(cr, uid, config_id, context=context)
354         context.update({'company_id': pos_config.company_id.id})
355         if not pos_config.journal_id:
356             jid = jobj.default_get(cr, uid, ['journal_id'], context=context)['journal_id']
357             if jid:
358                 jobj.write(cr, uid, [pos_config.id], {'journal_id': jid}, context=context)
359             else:
360                 raise osv.except_osv( _('error!'),
361                     _("Unable to open the session. You have to assign a sale journal to your point of sale."))
362
363         # define some cash journal if no payment method exists
364         if not pos_config.journal_ids:
365             journal_proxy = self.pool.get('account.journal')
366             cashids = journal_proxy.search(cr, uid, [('journal_user', '=', True), ('type','=','cash')], context=context)
367             if not cashids:
368                 cashids = journal_proxy.search(cr, uid, [('type', '=', 'cash')], context=context)
369                 if not cashids:
370                     cashids = journal_proxy.search(cr, uid, [('journal_user','=',True)], context=context)
371
372             jobj.write(cr, uid, [pos_config.id], {'journal_ids': [(6,0, cashids)]})
373
374
375         pos_config = jobj.browse(cr, uid, config_id, context=context)
376         bank_statement_ids = []
377         for journal in pos_config.journal_ids:
378             bank_values = {
379                 'journal_id' : journal.id,
380                 'user_id' : uid,
381                 'company_id' : pos_config.company_id.id
382             }
383             statement_id = self.pool.get('account.bank.statement').create(cr, uid, bank_values, context=context)
384             bank_statement_ids.append(statement_id)
385
386         values.update({
387             'name' : pos_config.sequence_id._next(),
388             'statement_ids' : [(6, 0, bank_statement_ids)],
389             'config_id': config_id
390         })
391
392         return super(pos_session, self).create(cr, uid, values, context=context)
393
394     def unlink(self, cr, uid, ids, context=None):
395         for obj in self.browse(cr, uid, ids, context=context):
396             for statement in obj.statement_ids:
397                 statement.unlink(context=context)
398         return super(pos_session, self).unlink(cr, uid, ids, context=context)
399
400
401     def open_cb(self, cr, uid, ids, context=None):
402         """
403         call the Point Of Sale interface and set the pos.session to 'opened' (in progress)
404         """
405         if context is None:
406             context = dict()
407
408         if isinstance(ids, (int, long)):
409             ids = [ids]
410
411         this_record = self.browse(cr, uid, ids[0], context=context)
412         this_record.signal_workflow('open')
413
414         context.update(active_id=this_record.id)
415
416         return {
417             'type' : 'ir.actions.act_url',
418             'url'  : '/pos/web/',
419             'target': 'self',
420         }
421
422     def wkf_action_open(self, cr, uid, ids, context=None):
423         # second browse because we need to refetch the data from the DB for cash_register_id
424         for record in self.browse(cr, uid, ids, context=context):
425             values = {}
426             if not record.start_at:
427                 values['start_at'] = time.strftime('%Y-%m-%d %H:%M:%S')
428             values['state'] = 'opened'
429             record.write(values)
430             for st in record.statement_ids:
431                 st.button_open()
432
433         return self.open_frontend_cb(cr, uid, ids, context=context)
434
435     def wkf_action_opening_control(self, cr, uid, ids, context=None):
436         return self.write(cr, uid, ids, {'state' : 'opening_control'}, context=context)
437
438     def wkf_action_closing_control(self, cr, uid, ids, context=None):
439         for session in self.browse(cr, uid, ids, context=context):
440             for statement in session.statement_ids:
441                 if (statement != session.cash_register_id) and (statement.balance_end != statement.balance_end_real):
442                     self.pool.get('account.bank.statement').write(cr, uid, [statement.id], {'balance_end_real': statement.balance_end})
443         return self.write(cr, uid, ids, {'state' : 'closing_control', 'stop_at' : time.strftime('%Y-%m-%d %H:%M:%S')}, context=context)
444
445     def wkf_action_close(self, cr, uid, ids, context=None):
446         # Close CashBox
447         bsl = self.pool.get('account.bank.statement.line')
448         for record in self.browse(cr, uid, ids, context=context):
449             for st in record.statement_ids:
450                 if abs(st.difference) > st.journal_id.amount_authorized_diff:
451                     # The pos manager can close statements with maximums.
452                     if not self.pool.get('ir.model.access').check_groups(cr, uid, "point_of_sale.group_pos_manager"):
453                         raise osv.except_osv( _('Error!'),
454                             _("Your ending balance is too different from the theoretical cash closing (%.2f), the maximum allowed is: %.2f. You can contact your manager to force it.") % (st.difference, st.journal_id.amount_authorized_diff))
455                 if (st.journal_id.type not in ['bank', 'cash']):
456                     raise osv.except_osv(_('Error!'), 
457                         _("The type of the journal for your payment method should be bank or cash "))
458                 if st.difference and st.journal_id.cash_control == True:
459                     if st.difference > 0.0:
460                         name= _('Point of Sale Profit')
461                     else:
462                         name= _('Point of Sale Loss')
463                     bsl.create(cr, uid, {
464                         'statement_id': st.id,
465                         'amount': st.difference,
466                         'ref': record.name,
467                         'name': name,
468                     }, context=context)
469
470                 if st.journal_id.type == 'bank':
471                     st.write({'balance_end_real' : st.balance_end})
472                 getattr(st, 'button_confirm_%s' % st.journal_id.type)(context=context)
473         self._confirm_orders(cr, uid, ids, context=context)
474         self.write(cr, uid, ids, {'state' : 'closed'}, context=context)
475
476         obj = self.pool.get('ir.model.data').get_object_reference(cr, uid, 'point_of_sale', 'menu_point_root')[1]
477         return {
478             'type' : 'ir.actions.client',
479             'name' : 'Point of Sale Menu',
480             'tag' : 'reload',
481             'params' : {'menu_id': obj},
482         }
483
484     def _confirm_orders(self, cr, uid, ids, context=None):
485         account_move_obj = self.pool.get('account.move')
486         pos_order_obj = self.pool.get('pos.order')
487         for session in self.browse(cr, uid, ids, context=context):
488             local_context = dict(context or {}, force_company=session.config_id.journal_id.company_id.id)
489             order_ids = [order.id for order in session.order_ids if order.state == 'paid']
490
491             move_id = account_move_obj.create(cr, uid, {'ref' : session.name, 'journal_id' : session.config_id.journal_id.id, }, context=local_context)
492
493             pos_order_obj._create_account_move_line(cr, uid, order_ids, session, move_id, context=local_context)
494
495             for order in session.order_ids:
496                 if order.state not in ('paid', 'invoiced', 'done'):
497                     raise osv.except_osv(
498                         _('Error!'),
499                         _("You cannot confirm all orders of this session, because they have not the 'paid' status"))
500                 else:
501                     pos_order_obj.signal_workflow(cr, uid, [order.id], 'done')
502
503         return True
504
505     def open_frontend_cb(self, cr, uid, ids, context=None):
506         if not context:
507             context = {}
508         if not ids:
509             return {}
510         for session in self.browse(cr, uid, ids, context=context):
511             if session.user_id.id != uid:
512                 raise osv.except_osv(
513                         _('Error!'),
514                         _("You cannot use the session of another users. This session is owned by %s. Please first close this one to use this point of sale." % session.user_id.name))
515         context.update({'active_id': ids[0]})
516         return {
517             'type' : 'ir.actions.act_url',
518             'target': 'self',
519             'url':   '/pos/web/',
520         }
521
522 class pos_order(osv.osv):
523     _name = "pos.order"
524     _description = "Point of Sale"
525     _order = "id desc"
526
527     def _order_fields(self, cr, uid, ui_order, context=None):
528         return {
529             'name':         ui_order['name'],
530             'user_id':      ui_order['user_id'] or False,
531             'session_id':   ui_order['pos_session_id'],
532             'lines':        ui_order['lines'],
533             'pos_reference':ui_order['name'],
534             'partner_id':   ui_order['partner_id'] or False,
535         }
536
537     def _payment_fields(self, cr, uid, ui_paymentline, context=None):
538         return {
539             'amount':       ui_paymentline['amount'] or 0.0,
540             'payment_date': ui_paymentline['name'],
541             'statement_id': ui_paymentline['statement_id'],
542             'payment_name': ui_paymentline.get('note',False),
543             'journal':      ui_paymentline['journal_id'],
544         }
545
546     def create_from_ui(self, cr, uid, orders, context=None):
547         # Keep only new orders
548         submitted_references = [o['data']['name'] for o in orders]
549         existing_order_ids = self.search(cr, uid, [('pos_reference', 'in', submitted_references)], context=context)
550         existing_orders = self.read(cr, uid, existing_order_ids, ['pos_reference'], context=context)
551         existing_references = set([o['pos_reference'] for o in existing_orders])
552         orders_to_save = [o for o in orders if o['data']['name'] not in existing_references]
553
554         order_ids = []
555         for tmp_order in orders_to_save:
556             to_invoice = tmp_order['to_invoice']
557             order = tmp_order['data']
558             order_id = self.create(cr, uid, self._order_fields(cr, uid, order, context=context),context)
559
560             for payments in order['statement_ids']:
561                 self.add_payment(cr, uid, order_id, self._payment_fields(cr, uid, payments[2], context=context), context=context)
562
563             session = self.pool.get('pos.session').browse(cr, uid, order['pos_session_id'], context=context)
564             if session.sequence_number <= order['sequence_number']:
565                 session.write({'sequence_number': order['sequence_number'] + 1})
566                 session.refresh()
567
568             if order['amount_return']:
569                 cash_journal = session.cash_journal_id
570                 if not cash_journal:
571                     cash_journal_ids = filter(lambda st: st.journal_id.type=='cash', session.statement_ids)
572                     if not len(cash_journal_ids):
573                         raise osv.except_osv( _('error!'),
574                             _("No cash statement found for this session. Unable to record returned cash."))
575                     cash_journal = cash_journal_ids[0].journal_id
576                 self.add_payment(cr, uid, order_id, {
577                     'amount': -order['amount_return'],
578                     'payment_date': time.strftime('%Y-%m-%d %H:%M:%S'),
579                     'payment_name': _('return'),
580                     'journal': cash_journal.id,
581                 }, context=context)
582             order_ids.append(order_id)
583
584             try:
585                 self.signal_workflow(cr, uid, [order_id], 'paid')
586             except Exception as e:
587                 _logger.error('Could not fully process the POS Order: %s', tools.ustr(e))
588
589             if to_invoice:
590                 self.action_invoice(cr, uid, [order_id], context)
591                 order_obj = self.browse(cr, uid, order_id, context)
592                 self.pool['account.invoice'].signal_workflow(cr, uid, [order_obj.invoice_id.id], 'invoice_open')
593
594         return order_ids
595
596     def write(self, cr, uid, ids, vals, context=None):
597         res = super(pos_order, self).write(cr, uid, ids, vals, context=context)
598         #If you change the partner of the PoS order, change also the partner of the associated bank statement lines
599         partner_obj = self.pool.get('res.partner')
600         bsl_obj = self.pool.get("account.bank.statement.line")
601         if 'partner_id' in vals:
602             for posorder in self.browse(cr, uid, ids, context=context):
603                 if posorder.invoice_id:
604                     raise osv.except_osv( _('Error!'), _("You cannot change the partner of a POS order for which an invoice has already been issued."))
605                 if vals['partner_id']:
606                     p_id = partner_obj.browse(cr, uid, vals['partner_id'], context=context)
607                     part_id = partner_obj._find_accounting_partner(p_id).id
608                 else:
609                     part_id = False
610                 bsl_ids = [x.id for x in posorder.statement_ids]
611                 bsl_obj.write(cr, uid, bsl_ids, {'partner_id': part_id}, context=context)
612         return res
613
614     def unlink(self, cr, uid, ids, context=None):
615         for rec in self.browse(cr, uid, ids, context=context):
616             if rec.state not in ('draft','cancel'):
617                 raise osv.except_osv(_('Unable to Delete!'), _('In order to delete a sale, it must be new or cancelled.'))
618         return super(pos_order, self).unlink(cr, uid, ids, context=context)
619
620     def onchange_partner_id(self, cr, uid, ids, part=False, context=None):
621         if not part:
622             return {'value': {}}
623         pricelist = self.pool.get('res.partner').browse(cr, uid, part, context=context).property_product_pricelist.id
624         return {'value': {'pricelist_id': pricelist}}
625
626     def _amount_all(self, cr, uid, ids, name, args, context=None):
627         cur_obj = self.pool.get('res.currency')
628         res = {}
629         for order in self.browse(cr, uid, ids, context=context):
630             res[order.id] = {
631                 'amount_paid': 0.0,
632                 'amount_return':0.0,
633                 'amount_tax':0.0,
634             }
635             val1 = val2 = 0.0
636             cur = order.pricelist_id.currency_id
637             for payment in order.statement_ids:
638                 res[order.id]['amount_paid'] +=  payment.amount
639                 res[order.id]['amount_return'] += (payment.amount < 0 and payment.amount or 0)
640             for line in order.lines:
641                 val1 += line.price_subtotal_incl
642                 val2 += line.price_subtotal
643             res[order.id]['amount_tax'] = cur_obj.round(cr, uid, cur, val1-val2)
644             res[order.id]['amount_total'] = cur_obj.round(cr, uid, cur, val1)
645         return res
646
647     _columns = {
648         'name': fields.char('Order Ref', required=True, readonly=True, copy=False),
649         'company_id':fields.many2one('res.company', 'Company', required=True, readonly=True),
650         'date_order': fields.datetime('Order Date', readonly=True, select=True),
651         'user_id': fields.many2one('res.users', 'Salesman', help="Person who uses the the cash register. It can be a reliever, a student or an interim employee."),
652         'amount_tax': fields.function(_amount_all, string='Taxes', digits_compute=dp.get_precision('Account'), multi='all'),
653         'amount_total': fields.function(_amount_all, string='Total', multi='all'),
654         'amount_paid': fields.function(_amount_all, string='Paid', states={'draft': [('readonly', False)]}, readonly=True, digits_compute=dp.get_precision('Account'), multi='all'),
655         'amount_return': fields.function(_amount_all, 'Returned', digits_compute=dp.get_precision('Account'), multi='all'),
656         'lines': fields.one2many('pos.order.line', 'order_id', 'Order Lines', states={'draft': [('readonly', False)]}, readonly=True, copy=True),
657         'statement_ids': fields.one2many('account.bank.statement.line', 'pos_statement_id', 'Payments', states={'draft': [('readonly', False)]}, readonly=True),
658         'pricelist_id': fields.many2one('product.pricelist', 'Pricelist', required=True, states={'draft': [('readonly', False)]}, readonly=True),
659         'partner_id': fields.many2one('res.partner', 'Customer', change_default=True, select=1, states={'draft': [('readonly', False)], 'paid': [('readonly', False)]}),
660         'sequence_number': fields.integer('Sequence Number', help='A session-unique sequence number for the order'),
661
662         'session_id' : fields.many2one('pos.session', 'Session', 
663                                         #required=True,
664                                         select=1,
665                                         domain="[('state', '=', 'opened')]",
666                                         states={'draft' : [('readonly', False)]},
667                                         readonly=True),
668
669         'state': fields.selection([('draft', 'New'),
670                                    ('cancel', 'Cancelled'),
671                                    ('paid', 'Paid'),
672                                    ('done', 'Posted'),
673                                    ('invoiced', 'Invoiced')],
674                                   'Status', readonly=True, copy=False),
675
676         'invoice_id': fields.many2one('account.invoice', 'Invoice', copy=False),
677         'account_move': fields.many2one('account.move', 'Journal Entry', readonly=True, copy=False),
678         'picking_id': fields.many2one('stock.picking', 'Picking', readonly=True, copy=False),
679         'picking_type_id': fields.related('session_id', 'config_id', 'picking_type_id', string="Picking Type", type='many2one', relation='stock.picking.type'),
680         'location_id': fields.related('session_id', 'config_id', 'stock_location_id', string="Location", type='many2one', store=True, relation='stock.location'),
681         'note': fields.text('Internal Notes'),
682         'nb_print': fields.integer('Number of Print', readonly=True, copy=False),
683         'pos_reference': fields.char('Receipt Ref', readonly=True, copy=False),
684         'sale_journal': fields.related('session_id', 'config_id', 'journal_id', relation='account.journal', type='many2one', string='Sale Journal', store=True, readonly=True),
685     }
686
687     def _default_session(self, cr, uid, context=None):
688         so = self.pool.get('pos.session')
689         session_ids = so.search(cr, uid, [('state','=', 'opened'), ('user_id','=',uid)], context=context)
690         return session_ids and session_ids[0] or False
691
692     def _default_pricelist(self, cr, uid, context=None):
693         session_ids = self._default_session(cr, uid, context) 
694         if session_ids:
695             session_record = self.pool.get('pos.session').browse(cr, uid, session_ids, context=context)
696             return session_record.config_id.pricelist_id and session_record.config_id.pricelist_id.id or False
697         return False
698
699     def _get_out_picking_type(self, cr, uid, context=None):
700         return self.pool.get('ir.model.data').xmlid_to_res_id(
701                     cr, uid, 'point_of_sale.picking_type_posout', context=context)
702
703     _defaults = {
704         'user_id': lambda self, cr, uid, context: uid,
705         'state': 'draft',
706         'name': '/', 
707         'date_order': lambda *a: time.strftime('%Y-%m-%d %H:%M:%S'),
708         'nb_print': 0,
709         'sequence_number': 1,
710         'session_id': _default_session,
711         'company_id': lambda self,cr,uid,c: self.pool.get('res.users').browse(cr, uid, uid, c).company_id.id,
712         'pricelist_id': _default_pricelist,
713     }
714
715     def create(self, cr, uid, values, context=None):
716         values['name'] = self.pool.get('ir.sequence').get(cr, uid, 'pos.order')
717         return super(pos_order, self).create(cr, uid, values, context=context)
718
719     def test_paid(self, cr, uid, ids, context=None):
720         """A Point of Sale is paid when the sum
721         @return: True
722         """
723         for order in self.browse(cr, uid, ids, context=context):
724             if order.lines and not order.amount_total:
725                 return True
726             if (not order.lines) or (not order.statement_ids) or \
727                 (abs(order.amount_total-order.amount_paid) > 0.00001):
728                 return False
729         return True
730
731     def create_picking(self, cr, uid, ids, context=None):
732         """Create a picking for each order and validate it."""
733         picking_obj = self.pool.get('stock.picking')
734         partner_obj = self.pool.get('res.partner')
735         move_obj = self.pool.get('stock.move')
736
737         for order in self.browse(cr, uid, ids, context=context):
738             addr = order.partner_id and partner_obj.address_get(cr, uid, [order.partner_id.id], ['delivery']) or {}
739             picking_type = order.picking_type_id
740             picking_id = False
741             if picking_type:
742                 picking_id = picking_obj.create(cr, uid, {
743                     'origin': order.name,
744                     'partner_id': addr.get('delivery',False),
745                     'picking_type_id': picking_type.id,
746                     'company_id': order.company_id.id,
747                     'move_type': 'direct',
748                     'note': order.note or "",
749                     'invoice_state': 'none',
750                 }, context=context)
751                 self.write(cr, uid, [order.id], {'picking_id': picking_id}, context=context)
752             location_id = order.location_id.id
753             if order.partner_id:
754                 destination_id = order.partner_id.property_stock_customer.id
755             elif picking_type:
756                 if not picking_type.default_location_dest_id:
757                     raise osv.except_osv(_('Error!'), _('Missing source or destination location for picking type %s. Please configure those fields and try again.' % (picking_type.name,)))
758                 destination_id = picking_type.default_location_dest_id.id
759             else:
760                 destination_id = partner_obj.default_get(cr, uid, ['property_stock_customer'], context=context)['property_stock_customer']
761
762             move_list = []
763             for line in order.lines:
764                 if line.product_id and line.product_id.type == 'service':
765                     continue
766
767                 move_list.append(move_obj.create(cr, uid, {
768                     'name': line.name,
769                     'product_uom': line.product_id.uom_id.id,
770                     'product_uos': line.product_id.uom_id.id,
771                     'picking_id': picking_id,
772                     'picking_type_id': picking_type.id, 
773                     'product_id': line.product_id.id,
774                     'product_uos_qty': abs(line.qty),
775                     'product_uom_qty': abs(line.qty),
776                     'state': 'draft',
777                     'location_id': location_id if line.qty >= 0 else destination_id,
778                     'location_dest_id': destination_id if line.qty >= 0 else location_id,
779                 }, context=context))
780                 
781             if picking_id:
782                 picking_obj.action_confirm(cr, uid, [picking_id], context=context)
783                 picking_obj.force_assign(cr, uid, [picking_id], context=context)
784                 picking_obj.action_done(cr, uid, [picking_id], context=context)
785             elif move_list:
786                 move_obj.action_confirm(cr, uid, move_list, context=context)
787                 move_obj.force_assign(cr, uid, move_list, context=context)
788                 move_obj.action_done(cr, uid, move_list, context=context)
789         return True
790
791     def cancel_order(self, cr, uid, ids, context=None):
792         """ Changes order state to cancel
793         @return: True
794         """
795         stock_picking_obj = self.pool.get('stock.picking')
796         for order in self.browse(cr, uid, ids, context=context):
797             stock_picking_obj.action_cancel(cr, uid, [order.picking_id.id])
798             if stock_picking_obj.browse(cr, uid, order.picking_id.id, context=context).state <> 'cancel':
799                 raise osv.except_osv(_('Error!'), _('Unable to cancel the picking.'))
800         self.write(cr, uid, ids, {'state': 'cancel'}, context=context)
801         return True
802
803     def add_payment(self, cr, uid, order_id, data, context=None):
804         """Create a new payment for the order"""
805         context = dict(context or {})
806         statement_line_obj = self.pool.get('account.bank.statement.line')
807         property_obj = self.pool.get('ir.property')
808         order = self.browse(cr, uid, order_id, context=context)
809         args = {
810             'amount': data['amount'],
811             'date': data.get('payment_date', time.strftime('%Y-%m-%d')),
812             'name': order.name + ': ' + (data.get('payment_name', '') or ''),
813             'partner_id': order.partner_id and order.partner_id.id or None,
814         }
815
816         context.pop('pos_session_id', False)
817
818         journal_id = data.get('journal', False)
819         statement_id = data.get('statement_id', False)
820         assert journal_id or statement_id, "No statement_id or journal_id passed to the method!"
821
822         for statement in order.session_id.statement_ids:
823             if statement.id == statement_id:
824                 journal_id = statement.journal_id.id
825                 break
826             elif statement.journal_id.id == journal_id:
827                 statement_id = statement.id
828                 break
829
830         if not statement_id:
831             raise osv.except_osv(_('Error!'), _('You have to open at least one cashbox.'))
832
833         args.update({
834             'statement_id' : statement_id,
835             'pos_statement_id' : order_id,
836             'journal_id' : journal_id,
837             'ref' : order.session_id.name,
838         })
839
840         statement_line_obj.create(cr, uid, args, context=context)
841
842         return statement_id
843
844     def refund(self, cr, uid, ids, context=None):
845         """Create a copy of order  for refund order"""
846         clone_list = []
847         line_obj = self.pool.get('pos.order.line')
848         
849         for order in self.browse(cr, uid, ids, context=context):
850             current_session_ids = self.pool.get('pos.session').search(cr, uid, [
851                 ('state', '!=', 'closed'),
852                 ('user_id', '=', uid)], context=context)
853             if not current_session_ids:
854                 raise osv.except_osv(_('Error!'), _('To return product(s), you need to open a session that will be used to register the refund.'))
855
856             clone_id = self.copy(cr, uid, order.id, {
857                 'name': order.name + ' REFUND', # not used, name forced by create
858                 'session_id': current_session_ids[0],
859                 'date_order': time.strftime('%Y-%m-%d %H:%M:%S'),
860             }, context=context)
861             clone_list.append(clone_id)
862
863         for clone in self.browse(cr, uid, clone_list, context=context):
864             for order_line in clone.lines:
865                 line_obj.write(cr, uid, [order_line.id], {
866                     'qty': -order_line.qty
867                 }, context=context)
868
869         abs = {
870             'name': _('Return Products'),
871             'view_type': 'form',
872             'view_mode': 'form',
873             'res_model': 'pos.order',
874             'res_id':clone_list[0],
875             'view_id': False,
876             'context':context,
877             'type': 'ir.actions.act_window',
878             'nodestroy': True,
879             'target': 'current',
880         }
881         return abs
882
883     def action_invoice_state(self, cr, uid, ids, context=None):
884         return self.write(cr, uid, ids, {'state':'invoiced'}, context=context)
885
886     def action_invoice(self, cr, uid, ids, context=None):
887         inv_ref = self.pool.get('account.invoice')
888         inv_line_ref = self.pool.get('account.invoice.line')
889         product_obj = self.pool.get('product.product')
890         inv_ids = []
891
892         for order in self.pool.get('pos.order').browse(cr, uid, ids, context=context):
893             if order.invoice_id:
894                 inv_ids.append(order.invoice_id.id)
895                 continue
896
897             if not order.partner_id:
898                 raise osv.except_osv(_('Error!'), _('Please provide a partner for the sale.'))
899
900             acc = order.partner_id.property_account_receivable.id
901             inv = {
902                 'name': order.name,
903                 'origin': order.name,
904                 'account_id': acc,
905                 'journal_id': order.sale_journal.id or None,
906                 'type': 'out_invoice',
907                 'reference': order.name,
908                 'partner_id': order.partner_id.id,
909                 'comment': order.note or '',
910                 'currency_id': order.pricelist_id.currency_id.id, # considering partner's sale pricelist's currency
911             }
912             inv.update(inv_ref.onchange_partner_id(cr, uid, [], 'out_invoice', order.partner_id.id)['value'])
913             if not inv.get('account_id', None):
914                 inv['account_id'] = acc
915             inv_id = inv_ref.create(cr, uid, inv, context=context)
916
917             self.write(cr, uid, [order.id], {'invoice_id': inv_id, 'state': 'invoiced'}, context=context)
918             inv_ids.append(inv_id)
919             for line in order.lines:
920                 inv_line = {
921                     'invoice_id': inv_id,
922                     'product_id': line.product_id.id,
923                     'quantity': line.qty,
924                 }
925                 inv_name = product_obj.name_get(cr, uid, [line.product_id.id], context=context)[0][1]
926                 inv_line.update(inv_line_ref.product_id_change(cr, uid, [],
927                                                                line.product_id.id,
928                                                                line.product_id.uom_id.id,
929                                                                line.qty, partner_id = order.partner_id.id,
930                                                                fposition_id=order.partner_id.property_account_position.id)['value'])
931                 inv_line['price_unit'] = line.price_unit
932                 inv_line['discount'] = line.discount
933                 inv_line['name'] = inv_name
934                 inv_line['invoice_line_tax_id'] = [(6, 0, [x.id for x in line.product_id.taxes_id] )]
935                 inv_line_ref.create(cr, uid, inv_line, context=context)
936             inv_ref.button_reset_taxes(cr, uid, [inv_id], context=context)
937             self.signal_workflow(cr, uid, [order.id], 'invoice')
938             inv_ref.signal_workflow(cr, uid, [inv_id], 'validate')
939
940         if not inv_ids: return {}
941
942         mod_obj = self.pool.get('ir.model.data')
943         res = mod_obj.get_object_reference(cr, uid, 'account', 'invoice_form')
944         res_id = res and res[1] or False
945         return {
946             'name': _('Customer Invoice'),
947             'view_type': 'form',
948             'view_mode': 'form',
949             'view_id': [res_id],
950             'res_model': 'account.invoice',
951             'context': "{'type':'out_invoice'}",
952             'type': 'ir.actions.act_window',
953             'nodestroy': True,
954             'target': 'current',
955             'res_id': inv_ids and inv_ids[0] or False,
956         }
957
958     def create_account_move(self, cr, uid, ids, context=None):
959         return self._create_account_move_line(cr, uid, ids, None, None, context=context)
960
961     def _create_account_move_line(self, cr, uid, ids, session=None, move_id=None, context=None):
962         # Tricky, via the workflow, we only have one id in the ids variable
963         """Create a account move line of order grouped by products or not."""
964         account_move_obj = self.pool.get('account.move')
965         account_period_obj = self.pool.get('account.period')
966         account_tax_obj = self.pool.get('account.tax')
967         property_obj = self.pool.get('ir.property')
968         cur_obj = self.pool.get('res.currency')
969
970         #session_ids = set(order.session_id for order in self.browse(cr, uid, ids, context=context))
971
972         if session and not all(session.id == order.session_id.id for order in self.browse(cr, uid, ids, context=context)):
973             raise osv.except_osv(_('Error!'), _('Selected orders do not have the same session!'))
974
975         grouped_data = {}
976         have_to_group_by = session and session.config_id.group_by or False
977
978         def compute_tax(amount, tax, line):
979             if amount > 0:
980                 tax_code_id = tax['base_code_id']
981                 tax_amount = line.price_subtotal * tax['base_sign']
982             else:
983                 tax_code_id = tax['ref_base_code_id']
984                 tax_amount = line.price_subtotal * tax['ref_base_sign']
985
986             return (tax_code_id, tax_amount,)
987
988         for order in self.browse(cr, uid, ids, context=context):
989             if order.account_move:
990                 continue
991             if order.state != 'paid':
992                 continue
993
994             current_company = order.sale_journal.company_id
995
996             group_tax = {}
997             account_def = property_obj.get(cr, uid, 'property_account_receivable', 'res.partner', context=context)
998
999             order_account = order.partner_id and \
1000                             order.partner_id.property_account_receivable and \
1001                             order.partner_id.property_account_receivable.id or \
1002                             account_def and account_def.id or current_company.account_receivable.id
1003
1004             if move_id is None:
1005                 # Create an entry for the sale
1006                 move_id = account_move_obj.create(cr, uid, {
1007                     'ref' : order.name,
1008                     'journal_id': order.sale_journal.id,
1009                 }, context=context)
1010
1011             def insert_data(data_type, values):
1012                 # if have_to_group_by:
1013
1014                 sale_journal_id = order.sale_journal.id
1015                 period = account_period_obj.find(cr, uid, context=dict(context or {}, company_id=current_company.id))[0]
1016
1017                 # 'quantity': line.qty,
1018                 # 'product_id': line.product_id.id,
1019                 values.update({
1020                     'date': order.date_order[:10],
1021                     'ref': order.name,
1022                     'journal_id' : sale_journal_id,
1023                     'period_id' : period,
1024                     'move_id' : move_id,
1025                     'company_id': current_company.id,
1026                 })
1027
1028                 if data_type == 'product':
1029                     key = ('product', values['partner_id'], values['product_id'], values['debit'] > 0)
1030                 elif data_type == 'tax':
1031                     key = ('tax', values['partner_id'], values['tax_code_id'], values['debit'] > 0)
1032                 elif data_type == 'counter_part':
1033                     key = ('counter_part', values['partner_id'], values['account_id'], values['debit'] > 0)
1034                 else:
1035                     return
1036
1037                 grouped_data.setdefault(key, [])
1038
1039                 # if not have_to_group_by or (not grouped_data[key]):
1040                 #     grouped_data[key].append(values)
1041                 # else:
1042                 #     pass
1043
1044                 if have_to_group_by:
1045                     if not grouped_data[key]:
1046                         grouped_data[key].append(values)
1047                     else:
1048                         current_value = grouped_data[key][0]
1049                         current_value['quantity'] = current_value.get('quantity', 0.0) +  values.get('quantity', 0.0)
1050                         current_value['credit'] = current_value.get('credit', 0.0) + values.get('credit', 0.0)
1051                         current_value['debit'] = current_value.get('debit', 0.0) + values.get('debit', 0.0)
1052                         current_value['tax_amount'] = current_value.get('tax_amount', 0.0) + values.get('tax_amount', 0.0)
1053                 else:
1054                     grouped_data[key].append(values)
1055
1056             #because of the weird way the pos order is written, we need to make sure there is at least one line, 
1057             #because just after the 'for' loop there are references to 'line' and 'income_account' variables (that 
1058             #are set inside the for loop)
1059             #TOFIX: a deep refactoring of this method (and class!) is needed in order to get rid of this stupid hack
1060             assert order.lines, _('The POS order must have lines when calling this method')
1061             # Create an move for each order line
1062
1063             cur = order.pricelist_id.currency_id
1064             for line in order.lines:
1065                 tax_amount = 0
1066                 taxes = []
1067                 for t in line.product_id.taxes_id:
1068                     if t.company_id.id == current_company.id:
1069                         taxes.append(t)
1070                 computed_taxes = account_tax_obj.compute_all(cr, uid, taxes, line.price_unit * (100.0-line.discount) / 100.0, line.qty)['taxes']
1071
1072                 for tax in computed_taxes:
1073                     tax_amount += cur_obj.round(cr, uid, cur, tax['amount'])
1074                     group_key = (tax['tax_code_id'], tax['base_code_id'], tax['account_collected_id'], tax['id'])
1075
1076                     group_tax.setdefault(group_key, 0)
1077                     group_tax[group_key] += cur_obj.round(cr, uid, cur, tax['amount'])
1078
1079                 amount = line.price_subtotal
1080
1081                 # Search for the income account
1082                 if  line.product_id.property_account_income.id:
1083                     income_account = line.product_id.property_account_income.id
1084                 elif line.product_id.categ_id.property_account_income_categ.id:
1085                     income_account = line.product_id.categ_id.property_account_income_categ.id
1086                 else:
1087                     raise osv.except_osv(_('Error!'), _('Please define income '\
1088                         'account for this product: "%s" (id:%d).') \
1089                         % (line.product_id.name, line.product_id.id, ))
1090
1091                 # Empty the tax list as long as there is no tax code:
1092                 tax_code_id = False
1093                 tax_amount = 0
1094                 while computed_taxes:
1095                     tax = computed_taxes.pop(0)
1096                     tax_code_id, tax_amount = compute_tax(amount, tax, line)
1097
1098                     # If there is one we stop
1099                     if tax_code_id:
1100                         break
1101
1102                 # Create a move for the line
1103                 insert_data('product', {
1104                     'name': line.product_id.name,
1105                     'quantity': line.qty,
1106                     'product_id': line.product_id.id,
1107                     'account_id': income_account,
1108                     'credit': ((amount>0) and amount) or 0.0,
1109                     'debit': ((amount<0) and -amount) or 0.0,
1110                     'tax_code_id': tax_code_id,
1111                     'tax_amount': tax_amount,
1112                     'partner_id': order.partner_id and self.pool.get("res.partner")._find_accounting_partner(order.partner_id).id or False
1113                 })
1114
1115                 # For each remaining tax with a code, whe create a move line
1116                 for tax in computed_taxes:
1117                     tax_code_id, tax_amount = compute_tax(amount, tax, line)
1118                     if not tax_code_id:
1119                         continue
1120
1121                     insert_data('tax', {
1122                         'name': _('Tax'),
1123                         'product_id':line.product_id.id,
1124                         'quantity': line.qty,
1125                         'account_id': income_account,
1126                         'credit': 0.0,
1127                         'debit': 0.0,
1128                         'tax_code_id': tax_code_id,
1129                         'tax_amount': tax_amount,
1130                         'partner_id': order.partner_id and self.pool.get("res.partner")._find_accounting_partner(order.partner_id).id or False
1131                     })
1132
1133             # Create a move for each tax group
1134             (tax_code_pos, base_code_pos, account_pos, tax_id)= (0, 1, 2, 3)
1135
1136             for key, tax_amount in group_tax.items():
1137                 tax = self.pool.get('account.tax').browse(cr, uid, key[tax_id], context=context)
1138                 insert_data('tax', {
1139                     'name': _('Tax') + ' ' + tax.name,
1140                     'quantity': line.qty,
1141                     'product_id': line.product_id.id,
1142                     'account_id': key[account_pos] or income_account,
1143                     'credit': ((tax_amount>0) and tax_amount) or 0.0,
1144                     'debit': ((tax_amount<0) and -tax_amount) or 0.0,
1145                     'tax_code_id': key[tax_code_pos],
1146                     'tax_amount': tax_amount,
1147                     'partner_id': order.partner_id and self.pool.get("res.partner")._find_accounting_partner(order.partner_id).id or False
1148                 })
1149
1150             # counterpart
1151             insert_data('counter_part', {
1152                 'name': _("Trade Receivables"), #order.name,
1153                 'account_id': order_account,
1154                 'credit': ((order.amount_total < 0) and -order.amount_total) or 0.0,
1155                 'debit': ((order.amount_total > 0) and order.amount_total) or 0.0,
1156                 'partner_id': order.partner_id and self.pool.get("res.partner")._find_accounting_partner(order.partner_id).id or False
1157             })
1158
1159             order.write({'state':'done', 'account_move': move_id})
1160
1161         all_lines = []
1162         for group_key, group_data in grouped_data.iteritems():
1163             for value in group_data:
1164                 all_lines.append((0, 0, value),)
1165         if move_id: #In case no order was changed
1166             self.pool.get("account.move").write(cr, uid, [move_id], {'line_id':all_lines}, context=context)
1167
1168         return True
1169
1170     def action_payment(self, cr, uid, ids, context=None):
1171         return self.write(cr, uid, ids, {'state': 'payment'}, context=context)
1172
1173     def action_paid(self, cr, uid, ids, context=None):
1174         self.write(cr, uid, ids, {'state': 'paid'}, context=context)
1175         self.create_picking(cr, uid, ids, context=context)
1176         return True
1177
1178     def action_cancel(self, cr, uid, ids, context=None):
1179         self.write(cr, uid, ids, {'state': 'cancel'}, context=context)
1180         return True
1181
1182     def action_done(self, cr, uid, ids, context=None):
1183         self.create_account_move(cr, uid, ids, context=context)
1184         return True
1185
1186 class account_bank_statement(osv.osv):
1187     _inherit = 'account.bank.statement'
1188     _columns= {
1189         'user_id': fields.many2one('res.users', 'User', readonly=True),
1190     }
1191     _defaults = {
1192         'user_id': lambda self,cr,uid,c={}: uid
1193     }
1194
1195 class account_bank_statement_line(osv.osv):
1196     _inherit = 'account.bank.statement.line'
1197     _columns= {
1198         'pos_statement_id': fields.many2one('pos.order', ondelete='cascade'),
1199     }
1200
1201
1202 class pos_order_line(osv.osv):
1203     _name = "pos.order.line"
1204     _description = "Lines of Point of Sale"
1205     _rec_name = "product_id"
1206
1207     def _amount_line_all(self, cr, uid, ids, field_names, arg, context=None):
1208         res = dict([(i, {}) for i in ids])
1209         account_tax_obj = self.pool.get('account.tax')
1210         cur_obj = self.pool.get('res.currency')
1211         for line in self.browse(cr, uid, ids, context=context):
1212             taxes_ids = [ tax for tax in line.product_id.taxes_id if tax.company_id.id == line.order_id.company_id.id ]
1213             price = line.price_unit * (1 - (line.discount or 0.0) / 100.0)
1214             taxes = account_tax_obj.compute_all(cr, uid, taxes_ids, price, line.qty, product=line.product_id, partner=line.order_id.partner_id or False)
1215
1216             cur = line.order_id.pricelist_id.currency_id
1217             res[line.id]['price_subtotal'] = cur_obj.round(cr, uid, cur, taxes['total'])
1218             res[line.id]['price_subtotal_incl'] = cur_obj.round(cr, uid, cur, taxes['total_included'])
1219         return res
1220
1221     def onchange_product_id(self, cr, uid, ids, pricelist, product_id, qty=0, partner_id=False, context=None):
1222        context = context or {}
1223        if not product_id:
1224             return {}
1225        if not pricelist:
1226            raise osv.except_osv(_('No Pricelist!'),
1227                _('You have to select a pricelist in the sale form !\n' \
1228                'Please set one before choosing a product.'))
1229
1230        price = self.pool.get('product.pricelist').price_get(cr, uid, [pricelist],
1231                product_id, qty or 1.0, partner_id)[pricelist]
1232
1233        result = self.onchange_qty(cr, uid, ids, product_id, 0.0, qty, price, context=context)
1234        result['value']['price_unit'] = price
1235        return result
1236
1237     def onchange_qty(self, cr, uid, ids, product, discount, qty, price_unit, context=None):
1238         result = {}
1239         if not product:
1240             return result
1241         account_tax_obj = self.pool.get('account.tax')
1242         cur_obj = self.pool.get('res.currency')
1243
1244         prod = self.pool.get('product.product').browse(cr, uid, product, context=context)
1245
1246         price = price_unit * (1 - (discount or 0.0) / 100.0)
1247         taxes = account_tax_obj.compute_all(cr, uid, prod.taxes_id, price, qty, product=prod, partner=False)
1248
1249         result['price_subtotal'] = taxes['total']
1250         result['price_subtotal_incl'] = taxes['total_included']
1251         return {'value': result}
1252
1253     _columns = {
1254         'company_id': fields.many2one('res.company', 'Company', required=True),
1255         'name': fields.char('Line No', required=True, copy=False),
1256         'notice': fields.char('Discount Notice'),
1257         'product_id': fields.many2one('product.product', 'Product', domain=[('sale_ok', '=', True)], required=True, change_default=True),
1258         'price_unit': fields.float(string='Unit Price', digits_compute=dp.get_precision('Account')),
1259         'qty': fields.float('Quantity', digits_compute=dp.get_precision('Product UoS')),
1260         'price_subtotal': fields.function(_amount_line_all, multi='pos_order_line_amount', string='Subtotal w/o Tax', store=True),
1261         'price_subtotal_incl': fields.function(_amount_line_all, multi='pos_order_line_amount', string='Subtotal', store=True),
1262         'discount': fields.float('Discount (%)', digits_compute=dp.get_precision('Account')),
1263         'order_id': fields.many2one('pos.order', 'Order Ref', ondelete='cascade'),
1264         'create_date': fields.datetime('Creation Date', readonly=True),
1265     }
1266
1267     _defaults = {
1268         'name': lambda obj, cr, uid, context: obj.pool.get('ir.sequence').get(cr, uid, 'pos.order.line'),
1269         'qty': lambda *a: 1,
1270         'discount': lambda *a: 0.0,
1271         'company_id': lambda self,cr,uid,c: self.pool.get('res.users').browse(cr, uid, uid, c).company_id.id,
1272     }
1273
1274 class ean_wizard(osv.osv_memory):
1275     _name = 'pos.ean_wizard'
1276     _columns = {
1277         'ean13_pattern': fields.char('Reference', size=13, required=True, translate=True),
1278     }
1279     def sanitize_ean13(self, cr, uid, ids, context):
1280         for r in self.browse(cr,uid,ids):
1281             ean13 = openerp.addons.product.product.sanitize_ean13(r.ean13_pattern)
1282             m = context.get('active_model')
1283             m_id =  context.get('active_id')
1284             self.pool[m].write(cr,uid,[m_id],{'ean13':ean13})
1285         return { 'type' : 'ir.actions.act_window_close' }
1286
1287 class pos_category(osv.osv):
1288     _name = "pos.category"
1289     _description = "Public Category"
1290     _order = "sequence, name"
1291
1292     _constraints = [
1293         (osv.osv._check_recursion, 'Error ! You cannot create recursive categories.', ['parent_id'])
1294     ]
1295
1296     def name_get(self, cr, uid, ids, context=None):
1297         if not len(ids):
1298             return []
1299         reads = self.read(cr, uid, ids, ['name','parent_id'], context=context)
1300         res = []
1301         for record in reads:
1302             name = record['name']
1303             if record['parent_id']:
1304                 name = record['parent_id'][1]+' / '+name
1305             res.append((record['id'], name))
1306         return res
1307
1308     def _name_get_fnc(self, cr, uid, ids, prop, unknow_none, context=None):
1309         res = self.name_get(cr, uid, ids, context=context)
1310         return dict(res)
1311
1312     def _get_image(self, cr, uid, ids, name, args, context=None):
1313         result = dict.fromkeys(ids, False)
1314         for obj in self.browse(cr, uid, ids, context=context):
1315             result[obj.id] = tools.image_get_resized_images(obj.image)
1316         return result
1317     
1318     def _set_image(self, cr, uid, id, name, value, args, context=None):
1319         return self.write(cr, uid, [id], {'image': tools.image_resize_image_big(value)}, context=context)
1320
1321     _columns = {
1322         'name': fields.char('Name', required=True, translate=True),
1323         'complete_name': fields.function(_name_get_fnc, type="char", string='Name'),
1324         'parent_id': fields.many2one('pos.category','Parent Category', select=True),
1325         'child_id': fields.one2many('pos.category', 'parent_id', string='Children Categories'),
1326         'sequence': fields.integer('Sequence', help="Gives the sequence order when displaying a list of product categories."),
1327         
1328         # NOTE: there is no 'default image', because by default we don't show thumbnails for categories. However if we have a thumbnail
1329         # for at least one category, then we display a default image on the other, so that the buttons have consistent styling.
1330         # In this case, the default image is set by the js code.
1331         # NOTE2: image: all image fields are base64 encoded and PIL-supported
1332         'image': fields.binary("Image",
1333             help="This field holds the image used as image for the cateogry, limited to 1024x1024px."),
1334         'image_medium': fields.function(_get_image, fnct_inv=_set_image,
1335             string="Medium-sized image", type="binary", multi="_get_image",
1336             store={
1337                 'pos.category': (lambda self, cr, uid, ids, c={}: ids, ['image'], 10),
1338             },
1339             help="Medium-sized image of the category. It is automatically "\
1340                  "resized as a 128x128px image, with aspect ratio preserved. "\
1341                  "Use this field in form views or some kanban views."),
1342         'image_small': fields.function(_get_image, fnct_inv=_set_image,
1343             string="Smal-sized image", type="binary", multi="_get_image",
1344             store={
1345                 'pos.category': (lambda self, cr, uid, ids, c={}: ids, ['image'], 10),
1346             },
1347             help="Small-sized image of the category. It is automatically "\
1348                  "resized as a 64x64px image, with aspect ratio preserved. "\
1349                  "Use this field anywhere a small image is required."),
1350     }
1351
1352 class product_template(osv.osv):
1353     _inherit = 'product.template'
1354
1355     _columns = {
1356         'income_pdt': fields.boolean('Point of Sale Cash In', help="Check if, this is a product you can use to put cash into a statement for the point of sale backend."),
1357         'expense_pdt': fields.boolean('Point of Sale Cash Out', help="Check if, this is a product you can use to take cash from a statement for the point of sale backend, example: money lost, transfer to bank, etc."),
1358         'available_in_pos': fields.boolean('Available in the Point of Sale', help='Check if you want this product to appear in the Point of Sale'), 
1359         'to_weight' : fields.boolean('To Weigh', help="Check if the product should be weighted (mainly used with self check-out interface)."),
1360         'pos_categ_id': fields.many2one('pos.category','Point of Sale Category', help="Those categories are used to group similar products for point of sale."),
1361     }
1362
1363     _defaults = {
1364         'to_weight' : False,
1365         'available_in_pos': True,
1366     }
1367
1368     def edit_ean(self, cr, uid, ids, context):
1369         return {
1370             'name': _("Assign a Custom EAN"),
1371             'type': 'ir.actions.act_window',
1372             'view_type': 'form',
1373             'view_mode': 'form',
1374             'res_model': 'pos.ean_wizard',
1375             'target' : 'new',
1376             'view_id': False,
1377             'context':context,
1378         }
1379
1380 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: