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