- Sep 30, 2016
-
-
Simon Lejeune authored
and move it under the setup package. Since the rename of the openerp directory into odoo, having a script named "odoo.py" conflicts with a package named "odoo".
-
Simon Lejeune authored
This way we do not have to pass the version as argument. This was error prone. If the timestamp has to be included in the version, just patch it during before running package.py. This was already done in our nightly servers anyway.
-
Simon Lejeune authored
Correctly pass it to the nsis script the same way it was done for the version and python version. this was a source of error at each release.
-
Simon Lejeune authored
-
Simon Lejeune authored
-
Simon Lejeune authored
They were there since long time but to allow some obscure test to run. As they don't bring anything let's just drop them.
-
Simon Lejeune authored
-
Simon Lejeune authored
Fix the various place when the rename of the git root directory broke the packaging script. Also, we can now name the library "odoo".
-
Simon Lejeune authored
-
- Sep 29, 2016
-
-
Quentin De Paoli authored
Use case fixed: create a draft supplier payment, tick it in list view and launch the action 'print check'. Then, on the pop up window cancel the operation => the state was badly set to 'sent'.
-
Quentin De Paoli authored
[FIX] account: fix bad domain on payment form view, preventing to validate a manual supplier payment
-
tdi-odoo authored
-
Martin Trigaux authored
-
Martin Trigaux authored
Using the same journal for both the session closing and the invoices generated from the PoS may be problematic as they share the same sequence. In such case, gaps may appears in the invoice numbers (as the sequence is on the account.move, closing a session increases the sequence by one). cf opw-685660 Fixes 13242
-
Jeremy Kersten authored
-
Jeremy Kersten authored
-
Jeremy Kersten authored
-
Jeremy Kersten authored
-
Jeremy Kersten authored
-
Jeremy Kersten authored
-
Jeremy Kersten authored
Url saved need to be relative. Before this commit, demo was relative, but once updated, urls was absolute.
-
Thibault Delavallée authored
* Correct some language * Add extra steps to redirect to the implementation planner after having finished the tour
-
- Sep 28, 2016
-
-
Jeremy Kersten authored
-
Jeremy Kersten authored
Don't refresh page between each validation.
-
Jeremy Kersten authored
Apps store uses comma separated convention to sort by author the apps. Closes #13574
-
Martin Geubelle authored
Hide fields if not in debug mode.
-
Raphael Collet authored
This enables extensions of `ir.model` and `ir.model.fields` with computed fields without messing up too much with reflection itself.
-
Raphael Collet authored
-
Raphael Collet authored
-
Aaron Bohy authored
If those events are catched by the web_client, it means that no other widget did handle them, so simply call their on_fail callback.
-
Martin Geubelle authored
The `model` has been added to the name_get.
-
Géry Debongnie authored
A non stored, computed field 'reference' is added to ir.model.data, this allows the form view to display a nice link to open the record in form view.
-
Martin Geubelle authored
The combinaison of `web_icon` and `web_icon_data` is used to determine if the menu has: * no icon * an image icon: [module, path] * a built icon: [icon_class, icon_color, background_color]
-
Adrien Dieudonne authored
Possibility to inherit _check_group to have groups in attribute In studio, we need to avoid to delete groups node
-
Martin Geubelle authored
The commit e59a7fe3 has moved the ACE editor from website to web_editor. As some code on ir_ui_view was used for this widget, the code has also been moved to web_editor.
-
Martin Geubelle authored
The iframe is set in a template inside a div. The widget is returned so it can be extended.
-
Géry Debongnie authored
Ace editor is not very smart, it does a rpc for each inherited view, it tries to load workers before deciding not to use them, and it does way too much work in general. This commits tries to make sure that only the necessary rpcs are done (lazily). fix some issues with ace editor: lazy loading fix various issues with ace editor
-
Martin Geubelle authored
-
Martin Geubelle authored
This comportement was added in the DebugManager to trigger an event. As this event could be useful in other situations (e.g. studio), we trigger the event directly in the ActionManager. By default, the WebClient does not use this event but an handler is added to be overwritten. This handler is overwritten in some widgets (DebugManager, Studio, etc.) that requires the Systray items instances so we add them in ´widgets´ in the Systray Menu. As the module dashboard uses multiple ActionManager, the event bubbling should be avoided in this case.
-
Aaron Bohy authored
A refactoring of the js views is in progress. Those new views are used in web studio, and this change is part of it. This is necessary to allow web studio to correctly fetch data from the server when rendering a preview. Note: this is necessary for special widgets (status bar, selection, radio widgets)
-