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