- Dec 15, 2014
-
-
Christophe Matthieu authored
[FIX] website_instantclick: this lib create some bug because the odoo assets are loaded in the body and some event are binded more of one time. Change the js lib because the xml can't be change in 8.0. TODO: move assets into the head and fix js files and remove this commit in master
-
- Dec 14, 2014
-
-
Jeremy Kersten authored
Revert "[IMP] calendar: Set default value for start* and stop* date/datetime. Else field.function start and stop are not setted by default while they are required." This reverts commit b1adf3a9. Not so simple, 'search' don't find recurrent events with this change
-
- Dec 12, 2014
-
-
Denis Ledoux authored
This is related to rev. db98434e rev. abe5c803 forgot some partial reconciliations when the date domain was other than BETWEEN (for instance, <= stop date or >= start date, alone, not between) Besides, the rev. abe5c803 did not care about account move being posted or not. rev. db98434e took several times the same partially reconciled moves lines
-
Jeremy Kersten authored
[IMP] calendar: Set default value for start* and stop* date/datetime. Else field.function start and stop are not setted by default while they are required.
-
Simon Lejeune authored
session.get_file appends the json to the body of the generated iframe and then tries to json.parse it by reading contentNode on the body. Exceptions from `report_download` method may contain `<` and `>`, so when json.parse tries to json.parse the contentNode, it reads only a part of the original json string. htmlescaping the json string solves the issue by preventing the content of the json string to be interpreted as html.
-
Simon Lejeune authored
-
Denis Ledoux authored
Another fix should probably be build for purchase price, but it isn't that easy, we need to know the partner to which the product has been purchased, as taxes are partner/country dependent. Besides, included taxes in purchase prices happen less often.
-
Christophe Simonis authored
-
Christophe Simonis authored
-
Martin Trigaux authored
Fixes #4196
-
Denis Ledoux authored
Just a little bit.
-
Denis Ledoux authored
-
Aaron Bohy authored
closes #4205
-
Paulius Sladkevičius authored
Tree view gives no information Fixes #4195
-
Josse Colpaert authored
[IMP] Changing product qty on product form should work with serial numbers like in 7.0, but we should explain it Closes #3984
-
- Dec 11, 2014
-
-
Arthur Maniet authored
[IMP/FIX] account: bank statement reconciliation widget: adopt a more logical approach to reconciliation balancing, as explained in https://github.com/odoo/odoo/issues/4017#issuecomment-66599534 Fixes #4017
-
Martin Trigaux authored
In the new api an empty recordset converted to string is the name its class while previously it was converted to an empty string. The valid v7 condition sould have probably been move.picking_id and move.picking_id.name or False but in v8, simply move.picking_id.name is enough and avoids getting these accounting entries strangly named when there is no picking.
-
Denis Ledoux authored
If a wizard is launched from an embedded view list, only the record of the line from which the wizard was launched is reloaded after closing the wizard. In this specific case, as new lines are added to the picking, we need to fully reload the stock picking
-
Frédéric van der Essen authored
[FIX] point_of_sale: the search in product or partners could crash if there were a number followed by a colon
-
Martin Trigaux authored
-
Sebastien Versaille authored
Shipping and invoice addresses header are now bold and sticked to the related address.
-
Denis Ledoux authored
on_change_user was used to assign the first team in which the user is a member to the lead When the user does not use the multi sales team, it therefore set a default sales team, but invisible to the user. Stages displayed in the kanban view are the lead sales team stages. In a non sales team env, only stages with no stages are displayed for new leads If you added a new stage, in the kanban view, the stage is not assigned to a team
-
Denis Ledoux authored
In some cases when the move was partially reconciled, the amount of the move wasn't added to the total This is related to rev. abe5c803
-
hiekmann authored
closes #4166
-
Josse Colpaert authored
Fixes #4149
-
- Dec 10, 2014
-
-
Denis Ledoux authored
The above revision, which was already a patch for rev. a8f94a59, did not work properly for modals, like the use template many2one field of the mail.compose.message wizard. We therefore append the ui-menu selection nearer to the input field. $el.parent().parent() looks odd, but the goal is to append this selection ui just after the parent of the field, but as jquery ui autocomplete only accepts appendTo (and not after()), we append it to the parent of the field parent. This fix has been verified for * many2one fields in classic form view (with or without sheets) * many2one fields in editable list view (embedded in form view or not- * many2one fields in wizard modals * many2one fields of the bank statement reconciliation widget
-
Martin Trigaux authored
The account_get method has the signature def account_get(self,... company_id=None, context=None) so should use positional argument context=context. Added missing company_id parameter. Fixes #4084
-
Denis Ledoux authored
-
Denis Ledoux authored
-
Guewen Baconnier authored
Follows 31a01ea7, propagation of some fields from sales orders to invoices (when created on deliveries) have been added but it missed the section_id field (Sales Team). Fixes #4155
-
Guewen Baconnier authored
Also adds 2 financial reports: Balance sheet, Profit and Loss Fixes #3992
-
Denis Ledoux authored
Some views are not appended to the element oe_view_manager_body, such as client actions views. For these cases, we append the element to the view manager element Besides, we set the appendTo option of jquery ui autocomplete after a first initialization, because of a Jquery ui bug: http://bugs.jqueryui.com/ticket/8858
-
Ravi Gohil authored
When composing an email based on an email template, some parts of the template (the result of name_get on fields) were not translated. This was due to missing language in context when rendering the template. Fixes #3708, opw 617309
-
Martin Trigaux authored
When a warehouse user transfer an incoming shipment, the linked purchase order is updated as well but the user may not have access to it. Trigger the workflow as admin instead. opw 619775
-
Sebastien Versaille authored
The warehouse location is the fallback value Fixes #4056
-
Sebastien Versaille authored
Complete commit 3d88a60c Display payment terms or fiscal position note instead of simple the name. Fixes #3635
-
Olivier Dony authored
The `default_order` attribute of a <kanban> view was applied for a non-grouped kanban view, but was simply ignored when the kanban view was grouped, a common situation. When a groupby is active, the main order is the column being grouped, but the `default_order` is still useful as a secondary sort ordering, within the kanban columns. This patch complements the original patch of rev. 5c0804ea from PR #520.
-
Arthur Maniet authored
[FIX] account: bank statement reconciliation widget: do not propose partial reconciliation if there are created lines
-
Arthur Maniet authored
-
Martin Trigaux authored
Add restriction on product_id field to prevent the suppression of the product if already present in an invoice. This is to avoid the suppression of a used product variant when modifying the list of attributes.# Due to the constrain, the variant will be disabled instead of deleted. Fixes #4129 Add warning message on the product form to warn users about the potential impact of modifying variants.
-