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