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