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