Přejít na obsah
Menu
You need to be registered to interact with the community.
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
Zrušit
Related Posts Odpovědi Zobrazení Aktivita
3
pro 22
7119
1
říj 15
4731
0
bře 15
3242
2
bře 15
5542
0
dub 19
2394