Skip to content

Instantly share code, notes, and snippets.

@foxcarlos
Last active October 1, 2020 12:16
Show Gist options
  • Save foxcarlos/82bda69f0a1b658c8d35b5c0feb75e2e to your computer and use it in GitHub Desktop.
Save foxcarlos/82bda69f0a1b658c8d35b5c0feb75e2e to your computer and use it in GitHub Desktop.
Notas Varias
# QWEB ODOO
https://www.realsystems.com.mx/en_US/blog/desarrollo-openerp-odoo-9/post/condicionantes-en-vistas-qweb-357
https://www.cybrosys.com/blog/advanced-qweb-operations-in-odoo
https://github.com/odoo/odoo/blob/9.0/addons/website_sale/views/templates.xml#L1072-L1080
https://www.odoo.com/es_ES/forum/ayuda-1/question/how-to-send-json-object-in-the-body-of-a-post-request-in-controller-141116
NOTAS:USO DE VIM
http://www.sromero.org/wiki/linux/aplicaciones/manual_vim
# Api Rest para hacer pruebas
https://reqres.in/
# Convierte la respuesta de un get en variables para diferentes lenguajes
# Existe un pligin para Visual estudio Code con el mismo nombre
https://quicktype.io/
# para instalar el manager del volumen
sudo apt install pavucontrol-qt
sudo apt install pasystray
# Google Drive
https://unbrutocondebian.blogspot.com/2018/09/google-drive-en-entornos-mate-o-xfce.html
XDG_CURRENT_DESKTOP=GNOME gnome-control-center
def record_search_employee_manager(manager):
mssql = ConectarMSSQL()
sql_string = 'SELECT *from CTSMA.dbo.Odoo_employee where name = %s'
records = mssql.query(sql_string, manager)
return records or []
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment