769eafb483
Flectra is Forked from Odoo v11 commit : (6135e82d73
)
16 lines
461 B
Python
16 lines
461 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
from odoo import models
|
|
from odoo.http import request
|
|
|
|
|
|
class IrHttp(models.AbstractModel):
|
|
_inherit = 'ir.http'
|
|
|
|
@classmethod
|
|
def _dispatch(cls):
|
|
affiliate_id = request.httprequest.args.get('affiliate_id')
|
|
if affiliate_id:
|
|
request.session['affiliate_id'] = int(affiliate_id)
|
|
return super(IrHttp, cls)._dispatch()
|