Skip to Content
Menu
This question has been flagged

Hello all,

In the sale.order method onchange_partner_id, I would want to attrib a different dedicated_salesman according to the place where the sale order was created (frontend shop or backend).

How to detect if the sale order was created in the frontend public shop or in the backend in this code???

Thanks to help


class sale_order(osv.osv):
    _inherit = "sale.order"
    def onchange_partner_id(self, cr, uid, ids, part, context=None):
        #_logger.error("onchange_partner_id BEGIN")
        if not part:
            return {'value': {'partner_invoice_id': False, 'partner_shipping_id': False,  'payment_term': False, 'fiscal_position': False}}
        part = self.pool.get('res.partner').browse(cr, uid, part, context=context)
        
        addr = self.pool.get('res.partner').address_get(cr, uid, [part.id], ['delivery', 'invoice', 'contact'])
        pricelist = part.property_product_pricelist and part.property_product_pricelist.id or False
        invoice_part = self.pool.get('res.partner').browse(cr, uid, addr['invoice'], context=context)
        payment_term = invoice_part.property_payment_term and invoice_part.property_payment_term.id or False
        dedicated_salesman = part.user_id and part.user_id.id or uid
        val = {
            'partner_invoice_id': addr['invoice'],
            'partner_shipping_id': addr['delivery'],
            'payment_term': payment_term,
            'user_id': dedicated_salesman,
        }




Avatar
Discard
Related Posts Replies Views Activity
3
Dec 22
6056
1
Oct 15
4109
0
Mar 15
2404
2
Mar 15
4454
0
Apr 19
1896