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
| # 1. tienes que actualizar el 8.0 de tu local porque este es el que utilizaras luego cuando actualices tu branch | |
| git checkout 8.0 | |
| git pull vauxoo 8.0 | |
| # 2. regresas a tu branch y aplicas el rebase | |
| git checkout tu_branch | |
| git rebase vauxoo/8.0 | |
| # NOTA 1: el paso de la linea 3 y 7 solo te servira si tienes los remotos bien configurados. | |
| # Esto lo ves cuando corres el siguiente comando |
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
| 2016-04-22 21:13:25,930 2129 ERROR openerp_test openerp.tools.yaml_import: False | |
| Traceback (most recent call last): | |
| File "/.repo_requirements/odoo/openerp/tools/yaml_import.py", line 901, in process | |
| self._process_node(node) | |
| File "/.repo_requirements/odoo/openerp/tools/yaml_import.py", line 914, in _process_node | |
| self.process_python(node) | |
| File "/.repo_requirements/odoo/openerp/tools/yaml_import.py", line 588, in process_python | |
| unsafe_eval(code_obj, {'ref': self.get_id}, code_context) | |
| File "/root/build/Vauxoo/yoytec/yoytec_sale_workflow/demo/sale_order.yml", line 7, in <module> | |
| sale.action_button_confirm() |
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
| - | |
| Check if the products used in the demo have quants associated. | |
| - | |
| !python {model: stock.picking, id: False}: | | |
| # Get all products information about quants | |
| product_obj = self.env['product.product'] | |
| quant_obj = self.env['stock.quant'] | |
| products = product_obj.search([]) | |
| products_w_quants = quant_obj.search([]).mapped('product_id') | |
| products_wo_quants = products - products_w_quants |
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_id | name | |
|---|---|---|
| product.product_product_4 | iPad Retina Display 16 GB White 2.4 GHz | |
| product.product_product_7 | Apple In-Ear Headphones | |
| product.product_product_8 | iMac | |
| product.product_product_9 | Apple Wireless Keyboard | |
| product.product_product_11 | iPod 16 GB |
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
| 2015-09-23 15:36:44,725 6195 INFO forecasting_demo werkzeug: 127.0.0.1 - - [23/Sep/2015 15:36:44] "POST /web/dataset/search_read HTTP/1.1" 200 - | |
| 2015-09-23 15:36:45,423 6195 ERROR forecasting_demo openerp.addons.base.ir.ir_ui_view: Field `in_group_7` does not exist | |
| Error context: | |
| View `res.users.form` | |
| [view_id: 153, xml_id: base.view_users_form, model: res.users, parent_id: n/a] | |
| > /home/kathy/vx/git/odoo/odoo/openerp/addons/base/ir/ir_ui_view.py(360)raise_view_error() | |
| -> raise AttributeError(message) | |
| (Pdb) | |
| (Pdb) c |