This file contains 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
2020-03-24 09:07:11,227 20746 DEBUG ems_development odoo.sql_db: create serialized cursor to {'database': 'ems_development', 'sslmode': 'prefer'} | |
2020-03-24 09:07:11,228 20746 DEBUG ems_development odoo.sql_db: ConnectionPool(used=2/count=4/max=64) Borrow existing connection to 'sslmode=prefer dbname=ems_development' at index 1 | |
2020-03-24 09:07:11,230 20746 DEBUG ems_development odoo.sql_db: query: SELECT base_registry_signaling.last_value, | |
base_cache_signaling.last_value | |
FROM base_registry_signaling, base_cache_signaling | |
2020-03-24 09:07:11,231 20746 DEBUG ems_development odoo.sql_db: SUM from:0:00:00/1 [2764] | |
2020-03-24 09:07:11,231 20746 DEBUG ems_development odoo.sql_db: SUM into:0:00:00/1 [2764] | |
2020-03-24 09:07:11,231 20746 DEBUG ems_development odoo.sql_db: ConnectionPool(used=2/count=4/max=64) Give back connection to 'sslmode=prefer dbname=ems_development' | |
2020-03-24 09:07:11,232 20746 DEBUG ems_development odoo.sql_db: ConnectionPool |
This file contains 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
[options] | |
# | |
# WARNING: | |
# If you use the Odoo Database utility to change the master password be aware | |
# that the formatting of this file WILL be LOST! A copy of this file named | |
# /etc/odoo/openerp-server.conf.template has been made in case this happens | |
# Note that the copy does not have any first boot changes | |
#----------------------------------------------------------------------------- | |
# Odoo Server Config File - TurnKey Linux |
This file contains 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
root@ubuntu-s-----------:~/SaaS/saas_demo# docker-compose run dodoo init -n apps -m saas_demo --no-demo --no-cache | |
Starting saas_demo_wdb_1 ... done | |
Starting saas_demo_db_1 ... done | |
==> Sourcing /entrypoint.d/05-set-appenv-ci.sh | |
==> Sourcing /entrypoint.d/10-set-appenv.sh | |
==> Adding /opt/odoo/vendor/OCA/queue to addons path | |
==> Adding /opt/odoo/vendor/it-projects-llc/access-addons to addons path |
This file contains 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
Hi, I created a new custom widget extended from AbstractField, using custom template. I want to save custom value in this field, | |
I am using _setValue() but it is not saving. | |
would you please guide me how to save that value. | |
here is the image | |
https://tinyurl.com/y32yzdml |
This file contains 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"?> | |
<templates id="template" xml:space="preserve"> | |
<!-- Products Search Bar autocomplete item --> | |
<t t-name="website_sale.productsSearchBar.autocomplete.custom" t-inherit="website_sale.productsSearchBar.autocomplete" t-inherit-mode="extension" owl="1"> | |
<xpath expr="//b[hasclass('text-nowrap')]" t-operation="before"> | |
<b class="text-nowrap"> | |
custom code | |
</b> | |
</xpath> |
This file contains 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
document.querySelector("body > header > nav > ul.o_menu_systray > li.o_user_menu.show > div > a:nth-child(1)").remove() |
This file contains 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
//start of APIs for brand------------------- | |
//GET ALL BRANDS | |
app.get("/store/brands", cors(storeCorsOptions), async (req, res) => { | |
const brandService = req.scope.resolve("brandService"); | |
brandService.getBrands().then((brands) => { | |
return res.json(brands); | |
}); | |
}); |