This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: '3.1' | |
| services: | |
| web: | |
| image: odoo:16.0 | |
| depends_on: | |
| - db | |
| ports: | |
| - "8069:8069" | |
| volumes: | |
| - odoo-web-data:/var/lib/odoo |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def fix_account_bank_statement_line_link_moves(src_cr, dst_cr): | |
| ## SET CURRENCY_ID | |
| # "UPDATE account_bank_statement_line AS l | |
| SET_CURRENCY_QUERY = """ | |
| UPDATE account_bank_statement_line AS l | |
| SET currency_id = | |
| (CASE | |
| WHEN l.currency_id IS NULL THEN COALESCE(j.currency_id, c.currency_id) | |
| ELSE l.currency_id |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8"?> | |
| <odoo> | |
| <template id="product_details_inherit" inherit_id="website_sale.product"> | |
| <xpath expr="." position="inside"> | |
| <!-- Google AdSense script --> | |
| <!-- <script async="async" src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-6346256437579351"--> | |
| <!-- crossorigin="anonymous"></script>--> | |
| <script async="async" src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js" crossorigin="anonymous"></script> | |
| <!-- responsive_ad --> |
OlderNewer