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