How to filter the customers in a multi company system where i can see only the customers that is related to the current company...now it is showing all customers inside pos session
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Accounting
- Inventory
- PoS
- Project
- MRP
This question has been flagged
In js folder of pos module you can find the model.js (line no. near to 171) where you find the below code:
model: 'res.partner',
fields: ['name','street','city','state_id','country_id','vat','phone','zip','mobile','email','ean13','write_date'],
domain: [['customer','=',true]],
loaded: function(self,partners){
self.partners = partners;
self.db.add_partners(partners);
},
you can add your domain like:
domain: [['customer','=',true], ['company_id','=', USERCOMPANYID]],
You have to extend the js file of pos.
Here you can find how to inherit the js in pos
http://odoo-development.readthedocs.io/en/latest/dev/pos/add_field.html
Hope this will help you.
Enjoying the discussion? Don't just read, join in!
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign upRelated Posts | Replies | Views | Activity | |
---|---|---|---|---|
|
3
Apr 25
|
1261 | ||
|
1
Aug 24
|
2042 | ||
|
3
May 24
|
11238 | ||
POS Session wont close
Solved
|
|
1
Sep 23
|
3576 | |
|
0
Aug 23
|
1730 |