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