can i use sql query in my automated (user interface) action with odoo?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Účetnictví
- Sklad
- PoS
- Project
- MRP
This question has been flagged
2
Odpovědi
5416
Zobrazení
Yes, if you select "execute python code", you can execute SQL in automated action as shown in an example:
query = """
select * from your_table where id = """+str(self.id)+"""
"""
self.env.cr.execute(query)
data = self.env.cr.fetchone()
Enjoying the discussion? Don't just read, join in!
Create an account today to enjoy exclusive features and engage with our awesome community!
Přihlásit seRelated Posts | Odpovědi | Zobrazení | Aktivita | |
---|---|---|---|---|
How to solved this SQL error ??
Vyřešeno
|
|
1
zář 21
|
2492 | |
|
0
říj 21
|
1691 | ||
|
2
bře 18
|
9262 | ||
ERROR SQL Connection (bad user)
Vyřešeno
|
|
3
pro 23
|
18324 | |
|
0
kvě 24
|
649 |