[FIX] point_of_sale : pass the partner refernce in delivery order
[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 time
23 from datetime import datetime
24 from dateutil.relativedelta import relativedelta
25
26 import netsvc
27 from osv import fields, osv
28 from tools.translate import _
29 from decimal import Decimal
30 import decimal_precision as dp
31
32 class pos_config_journal(osv.osv):
33     """ Point of Sale journal configuration"""
34     _name = 'pos.config.journal'
35     _description = "Journal Configuration"
36
37     _columns = {
38         'name': fields.char('Description', size=64),
39         'code': fields.char('Code', size=64),
40         'journal_id': fields.many2one('account.journal', "Journal")
41     }
42
43 pos_config_journal()
44
45
46 class pos_company_discount(osv.osv):
47     """ Company Discount and Cashboxes """
48     _inherit = 'res.company'
49
50     _columns = {
51         'company_discount': fields.float('Max Discount(%)', digits_compute=dp.get_precision('Point Of Sale')),
52         'max_diff': fields.float('Max Difference for Cashboxes', digits_compute=dp.get_precision('Point Of Sale Discount')),
53     }
54
55 pos_company_discount()
56
57 class pos_order(osv.osv):
58     """ Point of sale gives business owners a convenient way of checking out customers
59         and of recording sales """
60
61     _name = "pos.order"
62     _description = "Point of Sale"
63     _order = "date_order, create_date desc"
64
65     def unlink(self, cr, uid, ids, context=None):
66         for rec in self.browse(cr, uid, ids, context=context):
67             for rec_statement in rec.statement_ids:
68                 if (rec_statement.statement_id and rec_statement.statement_id.state == 'confirm') or rec.state == 'done':
69                     raise osv.except_osv(_('Invalid action !'), _('Cannot delete a point of sale which is closed or contains confirmed cashboxes!'))
70         return super(pos_order, self).unlink(cr, uid, ids, context=context)
71
72     def onchange_partner_pricelist(self, cr, uid, ids, part=False, context=None):
73
74         """ Changed price list on_change of partner_id"""
75         if not part:
76             return {'value': {}}
77         pricelist = self.pool.get('res.partner').browse(cr, uid, part, context=context).property_product_pricelist.id
78         return {'value': {'pricelist_id': pricelist}}
79
80     def _amount_total(self, cr, uid, ids, field_name, arg, context=None):
81         """ Calculates amount_tax of order line
82         @param field_names: Names of fields.
83         @return: Dictionary of values """
84         cr.execute("""
85             SELECT
86                 p.id,
87                 COALESCE(SUM(
88                     l.price_unit*l.qty*(1-(l.discount/100.0)))::decimal(16,2), 0
89                     ) AS amount
90             FROM pos_order p
91             LEFT OUTER JOIN pos_order_line l ON (p.id = l.order_id)
92             WHERE p.id IN %s GROUP BY p.id """,(tuple(ids),))
93         res = dict(cr.fetchall())
94         for rec in self.browse(cr, uid, ids, context=context):
95             if rec.partner_id \
96                and rec.partner_id.property_account_position \
97                and rec.partner_id.property_account_position.tax_ids:
98                 res[rec.id] = res[rec.id] - rec.amount_tax
99             else :
100                 res[rec.id] = res[rec.id] + rec.amount_tax
101         return res
102
103     def _get_date_payment2(self, cr, uid, ids, context=None, *a):
104         # Todo need to check this function
105         """ Find payment Date
106         @param field_names: Names of fields.
107         @return: Dictionary of values """
108         res = {}
109         val = None
110         for order in self.browse(cr, uid, ids, context=context):
111             cr.execute("SELECT date_payment FROM pos_order WHERE id = %s", (order.id,))
112             date_p = cr.fetchone()
113             date_p = date_p and date_p[0] or None
114             if date_p:
115                 res[order.id] = date_p
116                 return res
117             cr.execute(" SELECT MAX(l.date) "
118                         " FROM account_move_line l, account_move m, account_invoice i, account_move_reconcile r, pos_order o "
119                         " WHERE i.move_id = m.id AND l.move_id = m.id AND l.reconcile_id = r.id AND o.id = %s AND o.invoice_id = i.id",
120                         (order.id,))
121             val = cr.fetchone()
122             val = val and val[0] or None
123             if val:
124                 res[order.id] = val
125         return res
126
127     def _get_date_payment(self, cr, uid, ids, context, *a):
128         """ Find  Validation Date
129         @return: Dictionary of values """
130         res = {}
131         val = None
132         for order in self.browse(cr, uid, ids):
133             cr.execute("SELECT date_validation FROM pos_order WHERE id = %s", (order.id,))
134             date_p = cr.fetchone()
135             date_p = date_p and date_p[0] or None
136             if date_p:
137                 res[order.id] = date_p
138                 return res
139             discount_allowed = order.company_id.company_discount
140             for line in order.lines:
141                 if line.discount > discount_allowed:
142                     return {order.id: None }
143             if order.amount_paid == order.amount_total and not date_p:
144                 cr.execute("SELECT MAX(date) FROM account_bank_statement_line WHERE pos_statement_id = %s", (order.id,))
145                 val = cr.fetchone()
146                 val = val and val[0] or None
147             if order.invoice_id and order.invoice_id.move_id and not date_p and not val:
148                 for o in order.invoice_id.move_id.line_id:
149                     if o.balance == 0:
150                         if val < o.date_created:
151                             val = o.date_created
152             if val:
153                 res[order.id] = val
154         return res
155
156     def _amount_all(self, cr, uid, ids, name, args, context=None):
157         tax_obj = self.pool.get('account.tax')
158         cur_obj = self.pool.get('res.currency')
159         res = {}
160         for order in self.browse(cr, uid, ids, context=context):
161             res[order.id] = {
162                 'amount_paid': 0.0,
163                 'amount_return':0.0,
164                 'amount_tax':0.0,
165             }
166             val = val1 = 0.0
167             cur = order.pricelist_id.currency_id
168             for payment in order.statement_ids:
169                 res[order.id]['amount_paid'] +=  payment.amount
170                 res[order.id]['amount_return'] += (payment.amount < 0 and payment.amount or 0)
171             for line in order.lines:
172                 val1 += line.price_subtotal_incl
173                 if order.price_type != 'tax_excluded':
174                     res[order.id]['amount_tax'] = reduce(lambda x, y: x+round(y['amount'], 2),
175                         tax_obj.compute_inv(cr, uid, line.product_id.taxes_id,
176                             line.price_unit * \
177                             (1-(line.discount or 0.0)/100.0), line.qty),
178                             res[order.id]['amount_tax'])
179                 elif line.qty != 0.0:
180                     for c in tax_obj.compute_all(cr, uid, line.product_id.taxes_id, \
181                                                  line.price_unit * (1-(line.discount or 0.0)/100.0), \
182                                                  line.qty,  line.product_id, line.order_id.partner_id)['taxes']:
183                         val += c.get('amount', 0.0)
184             res[order.id]['amount_tax'] = cur_obj.round(cr, uid, cur, val)
185             res[order.id]['amount_total'] = res[order.id]['amount_tax'] + cur_obj.round(cr, uid, cur, val1)
186         return res
187
188     def _sale_journal_get(self, cr, uid, context=None):
189         """ To get  sale journal for this order
190         @return: journal  """
191         journal_obj = self.pool.get('account.journal')
192         res = journal_obj.search(cr, uid, [('type', '=', 'sale')], limit=1)
193         return res and res[0] or False
194
195     def _shop_get(self, cr, uid, context=None):
196         """ To get  Shop  for this order
197         @return: Shop id  """
198         res = self.pool.get('sale.shop').search(cr, uid, [])
199         return res and res[0] or False
200
201     def copy(self, cr, uid, id, default=None, context=None):
202         if not default:
203             default = {}
204         default.update({
205             'state': 'draft',
206             'partner_id': False,
207             'invoice_id': False,
208             'account_move': False,
209             'picking_id': False,
210             'statement_ids': [],
211             'nb_print': 0,
212             'pickings': []
213         })
214         return super(pos_order, self).copy(cr, uid, id, default, context=context)
215
216     def _get_v( self, cr, uid, ids, *args):
217         """ Changed the Validation state of order
218         @return: State  """
219         res_obj = self.pool.get('res.users')
220         company_disc = self.browse(cr, uid, ids)
221         list_jrnl = []
222         r = {}
223         if not company_disc:
224             comp = res_obj.browse(cr, uid, uid).company_id.company_discount or 0.0
225         else:
226             comp = company_disc[0] and company_disc[0].company_id and company_disc[0].company_id.company_discount or 0.0
227         cr.execute("SELECT discount FROM pos_order_line WHERE order_id = %s AND discount <= %s", (ids[0], comp))
228         res = cr.fetchone()
229         cr.execute("SELECT discount FROM pos_order_line WHERE order_id = %s AND discount > %s", (ids[0], comp))
230         res2 = cr.fetchone()
231         cr.execute("SELECT journal_id FROM account_bank_statement_line WHERE pos_statement_id = %s ", (ids[0], ))
232         res3 = cr.fetchall()
233         for r in res3:
234             cr.execute("SELECT id FROM account_journal WHERE name = '%s' AND special_journal = 't'", (r[0], ))
235             res3 = cr.fetchone()
236             is_special = res3 and res3[0] or None
237             if is_special:
238                 list_jrnl.append(is_special)
239         for order in self.browse(cr, uid, ids):
240             if order.state in ('paid', 'done', 'invoiced') and res and not res2 and not len(list_jrnl):
241                 r[order.id] = 'accepted'
242         return r
243
244     _columns = {
245         'name': fields.char('Order Description', size=64, required=True,
246             states={'draft': [('readonly', False)]}, readonly=True),
247         'company_id':fields.many2one('res.company', 'Company', required=True, readonly=True),
248         'num_sale': fields.char('Internal Note', size=64),
249         'shop_id': fields.many2one('sale.shop', 'Shop', required=True,
250             states={'draft': [('readonly', False)]}, readonly=True),
251         'date_order': fields.datetime('Date Ordered', readonly=True, select=True),
252         'date_validation': fields.function(_get_date_payment,
253                                            method=True,
254                                            string='Validation Date',
255                                            type='date', select=True, store=True),
256         'date_payment': fields.function(_get_date_payment2, method=True,
257                                         string='Payment Date',
258                                         type='date', select=True, store=True),
259         'date_validity': fields.date('Validity Date', required=True),
260         'user_id': fields.many2one('res.users', 'Connected Salesman', help="Person who uses the the cash register. It could be a reliever, a student or an interim employee."),
261         'user_salesman_id': fields.many2one('res.users', 'Cashier', required=True, help="User who is logged into the system."),
262         'sale_manager': fields.many2one('res.users', 'Salesman Manager'),
263         'amount_tax': fields.function(_amount_all, method=True, string='Taxes', digits_compute=dp.get_precision('Point Of Sale'), multi='all'),
264         'amount_total': fields.function(_amount_all, method=True, string='Total', multi='all'),
265         'amount_paid': fields.function(_amount_all, string='Paid', states={'draft': [('readonly', False)]}, readonly=True, method=True, digits_compute=dp.get_precision('Point Of Sale'), multi='all'),
266         'amount_return': fields.function(_amount_all, 'Returned', method=True, digits_compute=dp.get_precision('Point Of Sale'), multi='all'),
267         'lines': fields.one2many('pos.order.line', 'order_id', 'Order Lines', states={'draft': [('readonly', False)]}, readonly=True),
268         'price_type': fields.selection([
269                                 ('tax_excluded','Tax excluded')],
270                                  'Price method', required=True),
271         'statement_ids': fields.one2many('account.bank.statement.line', 'pos_statement_id', 'Payments', states={'draft': [('readonly', False)]}, readonly=True),
272         'pricelist_id': fields.many2one('product.pricelist', 'Pricelist', required=True, states={'draft': [('readonly', False)]}, readonly=True),
273         'partner_id': fields.many2one('res.partner', 'Customer', change_default=True, select=1, states={'draft': [('readonly', False)], 'paid': [('readonly', False)]}),
274         'state': fields.selection([('draft', 'Quotation'),
275                                    ('payment', 'Payment'),
276                                    ('advance','Advance'),
277                                    ('paid', 'Paid'),
278                                    ('done', 'Done'),
279                                    ('invoiced', 'Invoiced'),
280                                    ('cancel', 'Cancel')],
281                                   'State', readonly=True),
282         'invoice_id': fields.many2one('account.invoice', 'Invoice'),
283         'account_move': fields.many2one('account.move', 'Account Entry', readonly=True),
284         'pickings': fields.one2many('stock.picking', 'pos_order', 'Picking', readonly=True),
285         'picking_id': fields.many2one('stock.picking', 'Last Output Picking', readonly=True),
286         'first_name': fields.char('First Name', size=64),
287         'note': fields.text('Internal Notes'),
288         'nb_print': fields.integer('Number of Print', readonly=True),
289         'sale_journal': fields.many2one('account.journal', 'Journal', required=True, states={'draft': [('readonly', False)]}, readonly=True),
290         'invoice_wanted': fields.boolean('Create Invoice'),
291         'note_2': fields.char('Customer Note', size=64),
292         'type_rec': fields.char('Type of Receipt', size=64),
293         'remboursed': fields.boolean('Remboursed'),
294         'contract_number': fields.char('Contract Number', size=512, select=1),
295         'journal_entry': fields.boolean('Journal Entry'),
296     }
297
298     def _select_pricelist(self, cr, uid, context=None):
299         """ To get default pricelist for the order
300         @param name: Names of fields.
301         @return: pricelist ID
302         """
303         res = self.pool.get('sale.shop').search(cr, uid, [], context=context)
304         if res:
305             shop = self.pool.get('sale.shop').browse(cr, uid, res[0], context=context)
306             return shop.pricelist_id and shop.pricelist_id.id or False
307         return False
308
309     def _journal_default(self, cr, uid, context=None):
310         """ To get default pricelist for the order
311         @param name: Names of fields.
312         @return: journal ID
313         """
314         journal_list = self.pool.get('account.journal').search(cr, uid, [('type', '=', 'cash')])
315         return journal_list and journal_list[0] or False
316
317     _defaults = {
318         'user_salesman_id':lambda self, cr, uid, context: uid,
319         'user_id': lambda self, cr, uid, context: uid,
320         'sale_manager': lambda self, cr, uid, context: uid,
321         'state': 'draft',
322         'price_type': 'tax_excluded',
323         'name': lambda obj, cr, uid, context: obj.pool.get('ir.sequence').get(cr, uid, 'pos.order'),
324         'date_order': lambda *a: time.strftime('%Y-%m-%d %H:%M:%S'),
325         'date_validity': lambda *a: (datetime.today() + relativedelta(months=+6)).strftime('%Y-%m-%d'),
326         'nb_print': 0,
327         'company_id': lambda self,cr,uid,c: self.pool.get('res.users').browse(cr, uid, uid, c).company_id.id,
328         'sale_journal': _sale_journal_get,
329         'invoice_wanted': False,
330         'shop_id': _shop_get,
331         'pricelist_id': _select_pricelist,
332     }
333
334
335     def test_order_lines(self, cr, uid, order, context=None):
336         """ Test order line is created or not for the order
337         @param name: Names of fields.
338         @return: True
339         """
340         if not order.lines:
341             raise osv.except_osv(_('Error'), _('No order lines defined for this sale.'))
342
343         wf_service = netsvc.LocalService("workflow")
344         wf_service.trg_validate(uid, 'pos.order', order.id, 'paid', cr)
345         return True
346
347     def dummy_button(self, cr, uid, order, context=None):
348         return True
349
350     def test_paid(self, cr, uid, ids, context=None):
351         """ Test all amount is paid for this order
352         @return: True
353         """
354         for order in self.browse(cr, uid, ids, context=context):
355             if order.lines and not order.amount_total:
356                 return True
357             if (not order.lines) or (not order.statement_ids) or \
358                 Decimal(str(order.amount_total)) != Decimal(str(order.amount_paid)):
359                 return False
360         return True
361
362     def _get_qty_differences(self, orders, old_picking):
363         """check if the customer changed the product quantity """
364         order_dict = {}
365         for order in orders:
366             for line in order.lines:
367                 order_dict[line.product_id.id] = line
368
369         # check the quantity differences:
370         diff_dict = {}
371         for line in old_picking.move_lines:
372             order_line = order_dict.get(line.product_id.id)
373             if not order_line:
374                 deleted = True
375                 qty_to_delete_from_original_picking = line.product_qty
376                 diff_dict[line.product_id.id] = (deleted, qty_to_delete_from_original_picking)
377             elif line.product_qty != order_line.qty:
378                 deleted = False
379                 qty_to_delete_from_original_picking = line.product_qty - order_line.qty
380                 diff_dict[line.product_id.id] = (deleted, qty_to_delete_from_original_picking)
381
382         return diff_dict
383
384     def _split_picking(self, cr, uid, ids, context, old_picking, diff_dict):
385         """if the customer changes the product quantity, split the picking in two"""
386         # create a copy of the original picking and adjust the product qty:
387         picking_model = self.pool.get('stock.picking')
388         defaults = {
389             'note': "Partial picking from customer", # add a note to tell why we create a new picking
390             'name': self.pool.get('ir.sequence').get(cr, uid, 'stock.picking.out'), # increment the sequence
391         }
392
393         new_picking_id = picking_model.copy(cr, uid, old_picking.id, defaults) # state = 'draft'
394         new_picking = picking_model.browse(cr, uid, new_picking_id, context=context)
395
396         for line in new_picking.move_lines:
397             p_id = line.product_id.id
398             if p_id in diff_dict:
399                 diff = diff_dict[p_id]
400                 deleted = diff[0]
401                 qty_to_del = diff[1]
402                 if deleted: # product has been deleted (customer didn't took it):
403                     # delete this product from old picking:
404                     for old_line in old_picking.move_lines:
405                         if old_line.product_id.id == p_id:
406                             old_line.write({'state': 'draft'}, context=context) # cannot delete if not draft
407                             old_line.unlink(context=context)
408                 elif qty_to_del > 0: # product qty has been modified (customer took less than the ordered quantity):
409                     # subtract qty from old picking:
410                     for old_line in old_picking.move_lines:
411                         if old_line.product_id.id == p_id:
412                             old_line.write({'product_qty': old_line.product_qty - qty_to_del}, context=context)
413                     # add qty to new picking:
414                     line.write({'product_qty': qty_to_del}, context=context)
415                 else: # product hasn't changed (customer took it without any change):
416                     # delete this product from new picking:
417                     line.unlink(context=context)
418             else:
419                 # delete it in the new picking:
420                 line.unlink(context=context)
421
422     def create_picking(self, cr, uid, ids, context=None):
423         """Create a picking for each order and validate it."""
424         picking_obj = self.pool.get('stock.picking')
425         property_obj = self.pool.get("ir.property")
426         move_obj = self.pool.get('stock.move')
427         pick_name = self.pool.get('ir.sequence').get(cr, uid, 'stock.picking.out')
428         orders = self.browse(cr, uid, ids, context=context)
429         for order in orders:
430             addr = self.pool.get('res.partner').address_get(cr, uid, [order.partner_id.id], ['delivery'])
431             if not order.picking_id:
432                 new = True
433                 picking_id = picking_obj.create(cr, uid, {
434                     'name': pick_name,
435                     'origin': order.name,
436                     'address_id': addr.get('delivery',False),
437                     'type': 'out',
438                     'state': 'draft',
439                     'move_type': 'direct',
440                     'note': 'POS notes ' + (order.note or ""),
441                     'invoice_state': 'none',
442                     'auto_picking': True,
443                     'pos_order': order.id,
444                 }, context=context)
445                 self.write(cr, uid, [order.id], {'picking_id': picking_id}, context=context)
446             else:
447                 picking_id = order.picking_id.id
448                 picking_obj.write(cr, uid, [picking_id], {'auto_picking': True}, context=context)
449                 picking = picking_obj.browse(cr, uid, [picking_id], context=context)[0]
450                 new = False
451
452                 # split the picking (if product quantity has changed):
453                 diff_dict = self._get_qty_differences(orders, picking)
454                 if diff_dict:
455                     self._split_picking(cr, uid, ids, context, picking, diff_dict)
456
457             if new:
458                 for line in order.lines:
459                     if line.product_id and line.product_id.type == 'service':
460                         continue
461                     prop_ids = property_obj.search(cr, uid, [('name', '=', 'property_stock_customer')], context=context)
462                     val = property_obj.browse(cr, uid, prop_ids[0], context=context).value_reference
463                     cr.execute("SELECT s.id FROM stock_location s, stock_warehouse w WHERE w.lot_stock_id = s.id AND w.id = %s", (order.shop_id.warehouse_id.id, ))
464                     res = cr.fetchone()
465                     location_id = res and res[0] or None
466                     stock_dest_id = val.id
467                     if line.qty < 0:
468                         location_id, stock_dest_id = stock_dest_id, location_id
469                     move_obj.create(cr, uid, {
470                             'name': '(POS %d)' % (order.id, ),
471                             'product_uom': line.product_id.uom_id.id,
472                             'product_uos': line.product_id.uom_id.id,
473                             'picking_id': picking_id,
474                             'product_id': line.product_id.id,
475                             'product_uos_qty': abs(line.qty),
476                             'product_qty': abs(line.qty),
477                             'tracking_id': False,
478                             'pos_line_id': line.id,
479                             'state': 'waiting',
480                             'location_id': location_id,
481                             'location_dest_id': stock_dest_id,
482                             'prodlot_id': line.prodlot_id and line.prodlot_id.id or False
483                         }, context=context)
484
485             wf_service = netsvc.LocalService("workflow")
486             wf_service.trg_validate(uid, 'stock.picking', picking_id, 'button_confirm', cr)
487             picking_obj.force_assign(cr, uid, [picking_id], context)
488         return True
489
490     def set_to_draft(self, cr, uid, ids, *args):
491         """ Changes order state to draft
492         @return: True
493         """
494         if not len(ids):
495             return False
496         self.write(cr, uid, ids, {'state': 'draft'})
497         wf_service = netsvc.LocalService("workflow")
498         for i in ids:
499             wf_service.trg_create(uid, 'pos.order', i, cr)
500         return True
501
502     def button_invalidate(self, cr, uid, ids, *args):
503         """ Check the access for the sale order
504         @return: True
505         """
506         res_obj = self.pool.get('res.company')
507         try:
508             part_company = res_obj.browse(cr, uid, uid) and res_obj.browse(cr, uid, uid).parent_id and res_obj.browse(cr, uid, uid).parent_id.id or None
509         except Exception:
510             raise osv.except_osv(_('Error'), _('You don\'t have enough access to validate this sale!'))
511         if part_company:
512             raise osv.except_osv(_('Error'), _('You don\'t have enough access to validate this sale!'))
513         return True
514
515     def cancel_order(self, cr, uid, ids, context=None):
516         """ Changes order state to cancel
517         @return: True
518         """
519         self.write(cr, uid, ids, {'state': 'cancel'}, context=context)
520         self.cancel_picking(cr, uid, ids, context=context)
521         return True
522
523     def add_payment(self, cr, uid, order_id, data, context=None):
524         """Create a new payment for the order"""
525         statement_obj = self.pool.get('account.bank.statement')
526         statement_line_obj = self.pool.get('account.bank.statement.line')
527         prod_obj = self.pool.get('product.product')
528         property_obj = self.pool.get('ir.property')
529         curr_c = self.pool.get('res.users').browse(cr, uid, uid, context=context).company_id
530         curr_company = curr_c.id
531         order = self.browse(cr, uid, order_id, context=context)
532         if not order.num_sale and data['num_sale']:
533             self.write(cr, uid, order_id, {'num_sale': data['num_sale']}, context=context)
534         ids_new = []
535         args = {
536             'amount': data['amount'],
537         }
538         if 'payment_date' in data.keys():
539             args['date'] = data['payment_date']
540         if 'payment_name' in data.keys():
541             args['name'] = data['payment_name'] + ' ' + order.name
542         account_def = property_obj.get(cr, uid, 'property_account_receivable', 'res.partner', context=context)
543         args['account_id'] = order.partner_id and order.partner_id.property_account_receivable \
544                              and order.partner_id.property_account_receivable.id or account_def.id or curr_c.account_receivable.id
545         if data.get('is_acc', False):
546             args['is_acc'] = data['is_acc']
547             args['account_id'] = prod_obj.browse(cr, uid, data['product_id'], context=context).property_account_income \
548                                  and prod_obj.browse(cr, uid, data['product_id'], context=context).property_account_income.id
549             if not args['account_id']:
550                 raise osv.except_osv(_('Error'), _('Please provide an account for the product: %s')% \
551                                      (prod_obj.browse(cr, uid, data['product_id'], context=context).name))
552         args['partner_id'] = order.partner_id and order.partner_id.id or None
553         args['ref'] = order.contract_number or None
554
555         statement_id = statement_obj.search(cr,uid, [
556                                                      ('journal_id', '=', data['journal']),
557                                                      ('company_id', '=', curr_company),
558                                                      ('user_id', '=', uid),
559                                                      ('state', '=', 'open')], context=context)
560         if len(statement_id) == 0:
561             raise osv.except_osv(_('Error !'), _('You have to open at least one cashbox'))
562         if statement_id:
563             statement_id = statement_id[0]
564         args['statement_id'] = statement_id
565         args['pos_statement_id'] = order_id
566         args['journal_id'] = data['journal']
567         args['type'] = 'customer'
568         args['ref'] = order.name
569         statement_line_obj.create(cr, uid, args, context=context)
570         ids_new.append(statement_id)
571
572         wf_service = netsvc.LocalService("workflow")
573         wf_service.trg_validate(uid, 'pos.order', order_id, 'paid', cr)
574         wf_service.trg_write(uid, 'pos.order', order_id, cr)
575
576         return statement_id
577
578     def add_product(self, cr, uid, order_id, product_id, qty, context=None):
579
580         """Create a new order line the order"""
581
582         line_obj = self.pool.get('pos.order.line')
583         values = self.read(cr, uid, order_id, ['partner_id', 'pricelist_id'])
584
585         pricelist = values['pricelist_id'] and values['pricelist_id'][0]
586         product = values['partner_id'] and values['partner_id'][0]
587
588         price = line_obj.price_by_product(cr, uid, [],
589                 pricelist, product_id, qty, product)
590
591         order_line_id = line_obj.create(cr, uid, {
592             'order_id': order_id,
593             'product_id': product_id,
594             'qty': qty,
595             'price_unit': price,
596         }, context=context)
597         return order_line_id, price
598
599     def refund(self, cr, uid, ids, context=None):
600
601         """Create a copy of order  for refund order"""
602
603         clone_list = []
604         line_obj = self.pool.get('pos.order.line')
605
606         for order in self.browse(cr, uid, ids, context=context):
607             clone_id = self.copy(cr, uid, order.id, {
608                 'name': order.name + ' REFUND',
609                 'date_order': time.strftime('%Y-%m-%d'),
610                 'state': 'draft',
611                 'note': 'REFUND\n'+ (order.note or ''),
612                 'invoice_id': False,
613                 'nb_print': 0,
614                 'statement_ids': False,
615                 }, context=context)
616             clone_list.append(clone_id)
617
618
619         for clone in self.browse(cr, uid, clone_list, context=context):
620             for order_line in clone.lines:
621                 line_obj.write(cr, uid, [order_line.id], {
622                     'qty': -order_line.qty
623                     }, context=context)
624         return clone_list
625
626     def action_invoice(self, cr, uid, ids, context=None):
627
628         """Create a invoice of order  """
629
630         inv_ref = self.pool.get('account.invoice')
631         inv_line_ref = self.pool.get('account.invoice.line')
632         product_obj = self.pool.get('product.product')
633         inv_ids = []
634
635         for order in self.pool.get('pos.order').browse(cr, uid, ids, context=context):
636             if order.invoice_id:
637                 inv_ids.append(order.invoice_id.id)
638                 continue
639
640             if not order.partner_id:
641                 raise osv.except_osv(_('Error'), _('Please provide a partner for the sale.'))
642
643             acc = order.partner_id.property_account_receivable.id
644             inv = {
645                 'name': 'Invoice from POS: '+order.name,
646                 'origin': order.name,
647                 'account_id': acc,
648                 'journal_id': order.sale_journal.id or None,
649                 'type': 'out_invoice',
650                 'reference': order.name,
651                 'partner_id': order.partner_id.id,
652                 'comment': order.note or '',
653                 'currency_id': order.pricelist_id.currency_id.id, # considering partner's sale pricelist's currency
654             }
655             inv.update(inv_ref.onchange_partner_id(cr, uid, [], 'out_invoice', order.partner_id.id)['value'])
656             if not inv.get('account_id', None):
657                 inv['account_id'] = acc
658             inv_id = inv_ref.create(cr, uid, inv, context=context)
659
660             self.write(cr, uid, [order.id], {'invoice_id': inv_id, 'state': 'invoiced'}, context=context)
661             inv_ids.append(inv_id)
662             for line in order.lines:
663                 inv_line = {
664                     'invoice_id': inv_id,
665                     'product_id': line.product_id.id,
666                     'quantity': line.qty,
667                 }
668                 inv_name = product_obj.name_get(cr, uid, [line.product_id.id], context=context)[0][1]
669
670                 inv_line.update(inv_line_ref.product_id_change(cr, uid, [],
671                                                                line.product_id.id,
672                                                                line.product_id.uom_id.id,
673                                                                line.qty, partner_id = order.partner_id.id,
674                                                                fposition_id=order.partner_id.property_account_position.id)['value'])
675                 inv_line['price_unit'] = line.price_unit
676                 inv_line['discount'] = line.discount
677                 inv_line['name'] = inv_name
678                 inv_line['invoice_line_tax_id'] = ('invoice_line_tax_id' in inv_line)\
679                     and [(6, 0, inv_line['invoice_line_tax_id'])] or []
680                 inv_line_ref.create(cr, uid, inv_line, context=context)
681
682         for i in inv_ids:
683             wf_service = netsvc.LocalService("workflow")
684             wf_service.trg_validate(uid, 'account.invoice', i, 'invoice_open', cr)
685         return inv_ids
686
687     def create_account_move(self, cr, uid, ids, context=None):
688         """Create a account move line of order  """
689         account_move_obj = self.pool.get('account.move')
690         account_move_line_obj = self.pool.get('account.move.line')
691         account_period_obj = self.pool.get('account.period')
692         account_tax_obj = self.pool.get('account.tax')
693         res_obj=self.pool.get('res.users')
694         property_obj=self.pool.get('ir.property')
695         period = account_period_obj.find(cr, uid, context=context)[0]
696
697         for order in self.browse(cr, uid, ids, context=context):
698             curr_c = res_obj.browse(cr, uid, uid).company_id
699             comp_id = res_obj.browse(cr, order.user_id.id, order.user_id.id).company_id
700             comp_id = comp_id and comp_id.id or False
701             to_reconcile = []
702             group_tax = {}
703             account_def = property_obj.get(cr, uid, 'property_account_receivable', 'res.partner', context=context).id
704
705             order_account = order.partner_id and order.partner_id.property_account_receivable and order.partner_id.property_account_receivable.id or account_def or curr_c.account_receivable.id
706
707             # Create an entry for the sale
708             move_id = account_move_obj.create(cr, uid, {
709                 'journal_id': order.sale_journal.id,
710                 'period_id': period,
711                 }, context=context)
712
713             # Create an move for each order line
714             for line in order.lines:
715                 tax_amount = 0
716                 taxes = [t for t in line.product_id.taxes_id]
717                 if order.price_type == 'tax_excluded':
718                     computed_taxes = account_tax_obj.compute_all(
719                         cr, uid, taxes, line.price_unit, line.qty)['taxes']
720                 else:
721                     computed_taxes = account_tax_obj.compute_inv(
722                         cr, uid, taxes, line.price_unit, line.qty)
723
724                 for tax in computed_taxes:
725                     tax_amount += round(tax['amount'], 2)
726                     group_key = (tax['tax_code_id'],
727                                 tax['base_code_id'],
728                                 tax['account_collected_id'])
729
730                     if group_key in group_tax:
731                         group_tax[group_key] += round(tax['amount'], 2)
732                     else:
733                         group_tax[group_key] = round(tax['amount'], 2)
734                 if order.price_type != 'tax_excluded':
735                     amount = line.price_subtotal - tax_amount
736                 else:
737                     amount = line.price_subtotal
738
739                 # Search for the income account
740                 if  line.product_id.property_account_income.id:
741                     income_account = line.\
742                                     product_id.property_account_income.id
743                 elif line.product_id.categ_id.\
744                         property_account_income_categ.id:
745                     income_account = line.product_id.categ_id.\
746                                     property_account_income_categ.id
747                 else:
748                     raise osv.except_osv(_('Error !'), _('There is no income '\
749                         'account defined for this product: "%s" (id:%d)') \
750                         % (line.product_id.name, line.product_id.id, ))
751
752                 # Empty the tax list as long as there is no tax code:
753                 tax_code_id = False
754                 tax_amount = 0
755                 while computed_taxes:
756                     tax = computed_taxes.pop(0)
757                     if amount > 0:
758                         tax_code_id = tax['base_code_id']
759                         tax_amount = line.price_subtotal * tax['base_sign']
760                     else:
761                         tax_code_id = tax['ref_base_code_id']
762                         tax_amount = line.price_subtotal * tax['ref_base_sign']
763                     # If there is one we stop
764                     if tax_code_id:
765                         break
766
767                 # Create a move for the line
768                 account_move_line_obj.create(cr, uid, {
769                     'name': "aa"+order.name,
770                     'date': order.date_order[:10],
771                     'ref': order.contract_number or order.name,
772                     'quantity': line.qty,
773                     'product_id': line.product_id.id,
774                     'move_id': move_id,
775                     'account_id': income_account,
776                     'company_id': comp_id,
777                     'credit': ((amount>0) and amount) or 0.0,
778                     'debit': ((amount<0) and -amount) or 0.0,
779                     'journal_id': order.sale_journal.id,
780                     'period_id': period,
781                     'tax_code_id': tax_code_id,
782                     'tax_amount': tax_amount,
783                     'partner_id': order.partner_id and order.partner_id.id or False
784                 }, context=context)
785
786                 # For each remaining tax with a code, whe create a move line
787                 for tax in computed_taxes:
788                     if amount > 0:
789                         tax_code_id = tax['base_code_id']
790                         tax_amount = line.price_subtotal * tax['base_sign']
791                     else:
792                         tax_code_id = tax['ref_base_code_id']
793                         tax_amount = line.price_subtotal * tax['ref_base_sign']
794                     if not tax_code_id:
795                         continue
796
797                     account_move_line_obj.create(cr, uid, {
798                         'name': "bb" + order.name,
799                         'date': order.date_order[:10],
800                         'ref': order.contract_number or order.name,
801                         'product_id':line.product_id.id,
802                         'quantity': line.qty,
803                         'move_id': move_id,
804                         'account_id': income_account,
805                         'company_id': comp_id,
806                         'credit': 0.0,
807                         'debit': 0.0,
808                         'journal_id': order.sale_journal.id,
809                         'period_id': period,
810                         'tax_code_id': tax_code_id,
811                         'tax_amount': tax_amount,
812                     }, context=context)
813
814
815             # Create a move for each tax group
816             (tax_code_pos, base_code_pos, account_pos)= (0, 1, 2)
817             for key, amount in group_tax.items():
818                 account_move_line_obj.create(cr, uid, {
819                     'name': "cc" + order.name,
820                     'date': order.date_order[:10],
821                     'ref': order.contract_number or order.name,
822                     'move_id': move_id,
823                     'company_id': comp_id,
824                     'quantity': line.qty,
825                     'product_id': line.product_id.id,
826                     'account_id': key[account_pos],
827                     'credit': ((amount>0) and amount) or 0.0,
828                     'debit': ((amount<0) and -amount) or 0.0,
829                     'journal_id': order.sale_journal.id,
830                     'period_id': period,
831                     'tax_code_id': key[tax_code_pos],
832                     'tax_amount': amount,
833                 }, context=context)
834
835             # counterpart
836             to_reconcile.append(account_move_line_obj.create(cr, uid, {
837                 'name': "dd" + order.name,
838                 'date': order.date_order[:10],
839                 'ref': order.contract_number or order.name,
840                 'move_id': move_id,
841                 'company_id': comp_id,
842                 'account_id': order_account,
843                 'credit': ((order.amount_total < 0) and -order.amount_total)\
844                     or 0.0,
845                 'debit': ((order.amount_total > 0) and order.amount_total)\
846                     or 0.0,
847                 'journal_id': order.sale_journal.id,
848                 'period_id': period,
849                 'partner_id': order.partner_id and order.partner_id.id or False
850             }, context=context))
851
852
853             # search the account receivable for the payments:
854             account_receivable = order.sale_journal.default_credit_account_id.id
855             if not account_receivable:
856                 raise  osv.except_osv(_('Error !'),
857                     _('There is no receivable account defined for this journal:'\
858                     ' "%s" (id:%d)') % (order.sale_journal.name, order.sale_journal.id, ))
859             for payment in order.statement_ids:
860                 # Create one entry for the payment
861                 if payment.is_acc:
862                     continue
863                 account_move_obj.create(cr, uid, {
864                     'journal_id': payment.statement_id.journal_id.id,
865                     'period_id': period,
866                 }, context=context)
867
868             for stat_l in order.statement_ids:
869                 if stat_l.is_acc and len(stat_l.move_ids):
870                     for st in stat_l.move_ids:
871                         for s in st.line_id:
872                             if s.credit:
873                                 account_move_line_obj.copy(cr, uid, s.id, {
874                                                         'debit': s.credit,
875                                                         'statement_id': False,
876                                                         'credit': s.debit
877                                                     })
878                                 account_move_line_obj.copy(cr, uid, s.id, {
879                                                         'statement_id': False,
880                                                         'account_id': order_account
881                                                      })
882
883             self.write(cr, uid, order.id, {'state':'done'}, context=context)
884         return True
885
886     def cancel_picking(self, cr, uid, ids, context=None):
887         stock_picking_obj = self.pool.get('stock.picking')
888         for order in self.browse(cr, uid, ids, context=context):
889             for picking in order.pickings:
890                 stock_picking_obj.unlink(cr, uid, [picking.id], context=context)
891         return True
892
893
894     def action_payment(self, cr, uid, ids, context=None):
895         vals = {'state': 'payment'}
896         sequence_obj = self.pool.get('ir.sequence')
897         for pos in self.browse(cr, uid, ids, context=context):
898             create_contract_nb = False
899             for line in pos.lines:
900                 if line.product_id.product_type == 'MD':
901                     create_contract_nb = True
902                     break
903             if create_contract_nb:
904                 seq = sequence_obj.get(cr, uid, 'pos.user_%s' % pos.user_salesman_id.login)
905                 vals['contract_number'] = '%s-%s' % (pos.user_salesman_id.login, seq)
906         self.write(cr, uid, ids, vals, context=context)
907
908     def action_paid(self, cr, uid, ids, context=None):
909         if context is None:
910             context = {}
911         if context.get('flag', False):
912             self.create_picking(cr, uid, ids, context=None)
913             self.write(cr, uid, ids, {'state': 'paid'}, context=context)
914         else:
915             context['flag'] = True
916         return True
917
918     def action_cancel(self, cr, uid, ids, context=None):
919         self.write(cr, uid, ids, {'state': 'cancel'}, context=context)
920         return True
921
922     def action_done(self, cr, uid, ids, context=None):
923         for order in self.browse(cr, uid, ids, context=context):
924             if not order.journal_entry:
925                 self.create_account_move(cr, uid, ids, context=None)
926         return True
927
928     def compute_state(self, cr, uid, id):
929         cr.execute("SELECT act.id, act.name FROM wkf_activity act "
930                    "INNER JOIN wkf_workitem item ON act.id = item.act_id "
931                    "INNER JOIN wkf_instance inst ON item.inst_id = inst.id "
932                    "INNER JOIN wkf ON inst.wkf_id = wkf.id "
933                    "WHERE wkf.osv = 'pos.order' AND inst.res_id = %s "
934                    "ORDER BY act.name", (id, ))
935         return [name for id, name in cr.fetchall()]
936
937 pos_order()
938
939 class account_bank_statement(osv.osv):
940     _inherit = 'account.bank.statement'
941     _columns= {
942         'user_id': fields.many2one('res.users', ondelete='cascade', string='User', readonly=True),
943     }
944     _defaults = {
945         'user_id': lambda self,cr,uid,c: self.pool.get('res.users').browse(cr, uid, uid, c).id
946     }
947 account_bank_statement()
948
949 class account_bank_statement_line(osv.osv):
950     _inherit = 'account.bank.statement.line'
951     def _get_statement_journal(self, cr, uid, ids, context, *a):
952         res = {}
953         for line in self.browse(cr, uid, ids):
954             res[line.id] = line.statement_id and line.statement_id.journal_id and line.statement_id.journal_id.name or None
955         return res
956     _columns= {
957         'journal_id': fields.function(_get_statement_journal, method=True,store=True, string='Journal', type='char', size=64),
958         'am_out': fields.boolean("To count"),
959         'is_acc': fields.boolean("Is accompte"),
960         'pos_statement_id': fields.many2one('pos.order', ondelete='cascade'),
961     }
962 account_bank_statement_line()
963
964 class pos_order_line(osv.osv):
965     _name = "pos.order.line"
966     _description = "Lines of Point of Sale"
967
968     def _get_amount(self, cr, uid, ids, field_name, arg, context=None):
969         res = {}
970         for line in self.browse(cr, uid, ids, context=context):
971             price = self.price_by_product(cr, uid, ids, line.order_id.pricelist_id.id, line.product_id.id, line.qty, line.order_id.partner_id.id)
972             res[line.id] = price
973         return res
974
975     def _amount_line_ttc(self, cr, uid, ids, field_name, arg, context=None):
976         res = dict.fromkeys(ids, 0.0)
977         account_tax_obj = self.pool.get('account.tax')
978         self.price_by_product_multi(cr, uid, ids)
979         for line in self.browse(cr, uid, ids, context=context):
980             tax_amount = 0.0
981             taxes = [t for t in line.product_id.taxes_id]
982             if line.qty == 0.0:
983                 continue
984             computed_taxes = account_tax_obj.compute_all(cr, uid, taxes, line.price_unit, line.qty)['taxes']
985             for tax in computed_taxes:
986                 tax_amount += tax['amount']
987             if line.discount != 0.0:
988                 res[line.id] = line.price_unit * line.qty * (1 - (line.discount or 0.0) / 100.0)
989             else:
990                 res[line.id] = line.price_unit*line.qty
991             res[line.id] = res[line.id] + tax_amount
992         return res
993
994     def _amount_line(self, cr, uid, ids, field_name, arg, context=None):
995         res = {}
996         self.price_by_product_multi(cr, uid, ids)
997         for line in self.browse(cr, uid, ids, context=context):
998             if line.discount!=0.0:
999                 res[line.id] = line.price_unit * line.qty * (1 - (line.discount or 0.0) / 100.0)
1000             else:
1001                 res[line.id] = line.price_unit * line.qty
1002         return res
1003
1004     def _amount_line_all(self, cr, uid, ids, field_names, arg, context=None):
1005         res = dict([(i, {}) for i in ids])
1006         account_tax_obj = self.pool.get('account.tax')
1007
1008         self.price_by_product_multi(cr, uid, ids)
1009         for line in self.browse(cr, uid, ids, context=context):
1010             for f in field_names:
1011                 if f == 'price_subtotal':
1012                     if line.discount != 0.0:
1013                         res[line.id][f] = line.price_unit * line.qty * (1 - (line.discount or 0.0) / 100.0)
1014                     else:
1015                         res[line.id][f] = line.price_unit * line.qty
1016                 elif f == 'price_subtotal_incl':
1017                     taxes = [t for t in line.product_id.taxes_id]
1018                     if line.qty == 0.0:
1019                         res[line.id][f] = 0.0
1020                         continue
1021                     price = line.price_unit * (1 - (line.discount or 0.0) / 100.0)
1022                     computed_taxes = account_tax_obj.compute_all(cr, uid, taxes, price, line.qty)
1023                     cur = line.order_id.pricelist_id.currency_id
1024                     res[line.id][f] = self.pool.get('res.currency').round(cr, uid, cur, computed_taxes['total'])
1025         return res
1026
1027     def price_by_product_multi(self, cr, uid, ids, context=None):
1028         if context is None:
1029             context = {}
1030         res = {}.fromkeys(ids, 0.0)
1031         lines = self.browse(cr, uid, ids, context=context)
1032
1033         pricelist_ids = [line.order_id.pricelist_id.id for line in lines]
1034         products_by_qty_by_partner = [(line.product_id.id, line.qty, line.order_id.partner_id.id) for line in lines]
1035
1036         price_get_multi_res = self.pool.get('product.pricelist').price_get_multi(cr, uid, pricelist_ids, products_by_qty_by_partner, context=context)
1037
1038         for line in lines:
1039             pricelist = line.order_id.pricelist_id.id
1040             product_id = line.product_id
1041
1042             if not product_id:
1043                 res[line.id] = 0.0
1044                 continue
1045             if not pricelist:
1046                 raise osv.except_osv(_('No Pricelist !'),
1047                     _('You have to select a pricelist in the sale form !\n' \
1048                     'Please set one before choosing a product.'))
1049
1050             #old_price = self.pool.get('product.pricelist').price_get(cr, uid, [pricelist], product_id.id, qty or 1.0, partner_id, {'uom': uom_id})[pricelist]
1051             #print "prod_id: %s, pricelist: %s, price: %s" % (product_id.id, pricelist, price)
1052             price = price_get_multi_res[line.product_id.id][pricelist]
1053             #print "prod_id: %s, pricelist: %s, price2: %s" % (product_id.id, pricelist, price2)
1054
1055             #if old_price != price:
1056             #    raise Exception('old_price != price')
1057
1058             unit_price = price or product_id.list_price
1059             res[line.id] = unit_price
1060             if unit_price is False:
1061                 raise osv.except_osv(_('No valid pricelist line found !'),
1062                     _("Couldn't find a pricelist line matching this product" \
1063                     " and quantity.\nYou have to change either the product," \
1064                     " the quantity or the pricelist."))
1065         return res
1066
1067     def price_by_product(self, cr, uid, ids, pricelist, product_id, qty=0, partner_id=False):
1068         if not product_id:
1069             return 0.0
1070         if not pricelist:
1071             raise osv.except_osv(_('No Pricelist !'),
1072                 _('You have to select a pricelist in the sale form !\n' \
1073                 'Please set one before choosing a product.'))
1074         p_obj = self.pool.get('product.product').browse(cr, uid, [product_id])[0]
1075         uom_id = p_obj.uom_po_id.id
1076         price = self.pool.get('product.pricelist').price_get(cr, uid,
1077             [pricelist], product_id, qty or 1.0, partner_id, {'uom': uom_id})[pricelist]
1078         unit_price=price or p_obj.list_price
1079         if unit_price is False:
1080             raise osv.except_osv(_('No valid pricelist line found !'),
1081                 _("Couldn't find a pricelist line matching this product" \
1082                 " and quantity.\nYou have to change either the product," \
1083                 " the quantity or the pricelist."))
1084         return unit_price
1085
1086     def onchange_product_id(self, cr, uid, ids, pricelist, product_id, qty=0, partner_id=False):
1087         price = self.price_by_product(cr, uid, ids, pricelist, product_id, qty, partner_id)
1088         self.write(cr, uid, ids, {'price_unit':price})
1089         pos_stot = (price * qty)
1090         return {'value': {'price_unit': price, 'price_subtotal_incl': pos_stot}}
1091
1092     def onchange_subtotal(self, cr, uid, ids, discount, price, pricelist, qty,partner_id, product_id, *a):
1093         prod_obj = self.pool.get('product.product')
1094         price_f = self.price_by_product(cr, uid, ids, pricelist, product_id, qty, partner_id)
1095         prod_id = ''
1096         if product_id:
1097             prod_id = prod_obj.browse(cr, uid, product_id).disc_controle
1098         disc = 0.0
1099         if (disc != 0.0 or prod_id) and price_f > 0:
1100             disc = 100 - (price/price_f*100)
1101             return {'value': {'discount': disc, 'price_unit': price_f}}
1102         return {}
1103
1104     def onchange_ded(self, cr, uid, ids, val_ded, price_u, *a):
1105         res_obj = self.pool.get('res.users')
1106         comp = res_obj.browse(cr, uid, uid).company_id.company_discount or 0.0
1107         val = 0.0
1108         if val_ded and price_u:
1109             val=100.0 * val_ded / price_u
1110         if val > comp:
1111             return {'value': {'discount': val, 'notice': '' }}
1112         return {'value': {'discount': val}}
1113
1114     def onchange_discount(self, cr, uid, ids, discount, price, *a):
1115         pos_order = self.pool.get('pos.order.line')
1116         res_obj = self.pool.get('res.users')
1117         company_disc = pos_order.browse(cr,uid,ids)
1118         if discount:
1119             if not company_disc:
1120                 comp=res_obj.browse(cr,uid,uid).company_id.company_discount or 0.0
1121             else:
1122                 comp= company_disc[0] and company_disc[0].order_id.company_id and  company_disc[0].order_id.company_id.company_discount  or 0.0
1123
1124             if discount > comp :
1125                 return {'value': {'notice': '', 'price_ded': price * discount * 0.01 or 0.0  }}
1126             else:
1127                 return {'value': {'notice': 'Minimum Discount', 'price_ded': price * discount * 0.01 or 0.0  }}
1128         else :
1129             return {'value': {'notice': 'No Discount', 'price_ded': price * discount * 0.01 or 0.0}}
1130
1131     def onchange_qty(self, cr, uid, ids, discount, qty, price, context=None):
1132         subtotal = qty * price
1133         if discount:
1134             subtotal = subtotal - (subtotal * discount / 100)
1135         return {'value': {'price_subtotal_incl': subtotal}}
1136
1137     _columns = {
1138         'name': fields.char('Line Description', size=512),
1139         'company_id': fields.many2one('res.company', 'Company', required=True),
1140         'notice': fields.char('Discount Notice', size=128, required=True),
1141         'serial_number': fields.char('Serial Number', size=128),
1142         'product_id': fields.many2one('product.product', 'Product', domain=[('sale_ok', '=', True)], required=True, change_default=True),
1143         'price_unit': fields.function(_get_amount, method=True, string='Unit Price', store=True),
1144         'price_ded': fields.float('Discount(Amount)', digits_compute=dp.get_precision('Point Of Sale')),
1145         'qty': fields.float('Quantity'),
1146         'qty_rfd': fields.float('Refunded Quantity'),
1147         'price_subtotal': fields.function(_amount_line_all, method=True, multi='pos_order_line_amount', string='Subtotal w/o Tax'),
1148         'price_subtotal_incl': fields.function(_amount_line_all, method=True, multi='pos_order_line_amount', string='Subtotal'),
1149         'discount': fields.float('Discount (%)', digits=(16, 2)),
1150         'order_id': fields.many2one('pos.order', 'Order Ref', ondelete='cascade'),
1151         'create_date': fields.datetime('Creation Date', readonly=True),
1152         'prodlot_id': fields.many2one('stock.production.lot', 'Production Lot', help="You can specify Production lot for stock move created when you validate the pos order"),
1153     }
1154
1155     _defaults = {
1156         'name': lambda obj, cr, uid, context: obj.pool.get('ir.sequence').get(cr, uid, 'pos.order.line'),
1157         'qty': lambda *a: 1,
1158         'discount': lambda *a: 0.0,
1159         'price_ded': lambda *a: 0.0,
1160         'notice': lambda *a: 'No Discount',
1161         'company_id': lambda self,cr,uid,c: self.pool.get('res.users').browse(cr, uid, uid, c).company_id.id,
1162         }
1163
1164     def create(self, cr, user, vals, context=None):
1165         if vals.get('product_id'):
1166             return super(pos_order_line, self).create(cr, user, vals, context=context)
1167         return False
1168
1169     def write(self, cr, user, ids, values, context=None):
1170         if 'product_id' in values and not values['product_id']:
1171             return False
1172         return super(pos_order_line, self).write(cr, user, ids, values, context=context)
1173
1174     def _scan_product(self, cr, uid, ean, qty, order):
1175         # search pricelist_id
1176         product_obj = self.pool.get('product.product')
1177         pricelist_id = self.pool.get('pos.order').read(cr, uid, [order], ['pricelist_id'] )
1178         if not pricelist_id:
1179             return False
1180
1181         new_line = True
1182
1183         product_id = product_obj.search(cr, uid, [('ean13','=', ean)])
1184         if not product_id:
1185            return False
1186
1187         # search price product
1188         product = product_obj.read(cr, uid, product_id)
1189         product_name = product[0]['name']
1190         price = self.price_by_product(cr, uid, 0, pricelist_id[0]['pricelist_id'][0], product_id[0], 1)
1191
1192         order_line_ids = self.search(cr, uid, [('name', '=', product_name), ('order_id', '=' ,order)])
1193         if order_line_ids:
1194             new_line = False
1195             order_line_id = order_line_ids[0]
1196             qty += self.read(cr, uid, order_line_ids[0], ['qty'])['qty']
1197
1198         if new_line:
1199             vals = {'product_id': product_id[0],
1200                     'price_unit': price,
1201                     'qty': qty,
1202                     'name': product_name,
1203                     'order_id': order,
1204             }
1205             line_id = self.create(cr, uid, vals)
1206             if not line_id:
1207                 raise osv.except_osv(_('Error'), _('Create line failed !'))
1208         else:
1209             vals = {
1210                 'qty': qty,
1211                 'price_unit': price
1212             }
1213             line_id = self.write(cr, uid, order_line_id, vals)
1214             if not line_id:
1215                 raise osv.except_osv(_('Error'), _('Modify line failed !'))
1216             line_id = order_line_id
1217
1218         price_line = float(qty) * float(price)
1219         return {
1220             'name': product_name,
1221             'product_id': product_id[0],
1222             'price': price,
1223             'price_line': price_line ,
1224             'qty': qty
1225         }
1226
1227 pos_order_line()
1228
1229 class product_product(osv.osv):
1230     _inherit = 'product.product'
1231     _columns = {
1232         'income_pdt': fields.boolean('Product for Input'),
1233         'expense_pdt': fields.boolean('Product for expenses'),
1234         'am_out': fields.boolean('Control for Output Operations'),
1235         'disc_controle': fields.boolean('Discount Control'),
1236     }
1237     _defaults = {
1238         'disc_controle': True,
1239     }
1240 product_product()
1241
1242 class stock_picking(osv.osv):
1243     _inherit = 'stock.picking'
1244     _columns = {
1245         'pos_order': fields.many2one('pos.order', 'Pos order'),
1246     }
1247
1248 stock_picking()
1249
1250 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: