简体   繁体   中英

How to create salesman in Odoo10

I am new to Odoo and i am using Odoo v10. The client asked me to create a Salesperson / Salesman so the system should look like suppliers->Inventory->salesman->customers

I want the salesman to take products from inventory and but them in his account , and he is the one how can sell them to customers and clients, and i can create many of accounts for the salesman .

Any Idea please ? can i find any plugin to help me ,Thanks in advance .

Ho through the documentation below, same concept for 10 too

https://www.odoo.com/documentation/user/9.0/crm/salesteam/manage/create_salesperson.html

In record rules of your security file:

    <record id="any_id_own_salesperson" model="ir.rule">
        <field name="name">Sales Persons</field>
        <field name="model_id" ref="model_inventory_modelname" />
        <field name="global" eval="False" />
        <field name="domain_force">['|',('user_id','=',user.id),('user_id','=',False)]
        </field>
        <field name="groups"
            eval="[(4, ref('sales_team.group_sale_salesman'))]" />
    </record>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM