- Dec 12, 2014
-
-
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
-
Denis Ledoux 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
-
Kit Sunde authored
closes #4169 closes #4170
-
Denis Ledoux authored
-
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
-
Raphael Collet authored
Non-setup fields could cause problems in two places: - when traversing the chain of fields in related fields; - when adding recomputation triggers on inverse fields Both issues are fixed by this patch.
-
Kit Sunde authored
closes #4163
-
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
-
Jairo Llopis authored
The double % was not understood by some browsers (e.g. Firefox). No need for escaping in this block. Fixes #4142
-
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.
-
- Dec 09, 2014
-
-
Christophe Simonis authored
-
Denis Ledoux authored
-
Olivier Dony authored
Pricelist computations need to consider 2 different Units of Measure: - The default product UoM (product.uom_id), used as reference for the various quantities and amounts specified in each pricelist rules. - The `context UoM` is the UoM in which the result is requested, that is the list price UoM. For example the 'price_min_margin' amount is meant for the unit price of 1 x default UoM. When the context UoM is not the default product UoM, it can be any UoM of the same UoM Category, and the various quantities and amounts specified on the rule need to be adapted accordingly: - min_quantity (expressed in terms of the default UoM) - price_surcharge (specified for 1 x default UoM) - price_min_margin (specified for 1 x default UoM) - price_max_margin (specified for 1 x default UoM) The UoM corrections were not done consistently and resulted in wrong prices when computing the price using a non-default UoM. The cases were a conversion was needed or not were not properly identified within the _price_rule_get_multi(). After this commit, the various code branches in _price_rule_get_multi always ensures that: - price requested for: `qty` of `qty_uom_id` - `qty_in_product_uom` is the requested `qty` converted to default UoM - current (intermediary) price: `price` for `price_uom_id` Therefore `price` and `price_uom_id` are always in sync, and `price_uom_id` can always be compared with `qty_uom_id' in order to know whether a conversion is still needed. This patch also corrects and extends the regression tests introduced at revision 79ebe106.
-
Denis Ledoux authored
Do not try to delete an excluded recurrent event added in Google, but not yet syncrhonised in Odoo (immediately deleted for instance)
-
Denis Ledoux authored
When an attendee is added exceptionnally in an instance of a recurrent event, do not try to sync the basic recurrent event in his calendar
-
Denis Ledoux authored
With 'Fixed Price' enabled, a button giving the possibility to list all sale orders appears. When browsing the list, there the possibility to create a new sale order. The contract pricelist should be used by default when coming from this specific button.
-
Christophe Simonis authored
[IMP] models.py: increase logging level for columns that can't be casted automatically when upgrading a module.
-
Denis Ledoux authored
When sending a message with the "Compose new message" button on the right of the user menu, in the top bar, if you tried to save the message as template, you had a traceback because model field of email.template is mandatory, but was set to True because there is no model in such a case. As there is no any relevant model in such a place, and that the field is mandatory, mail.message is pretty convenient as the default value.
-
Denis Ledoux authored
If the many2one selection height was too big (bigger than the browser page), it wasn't possible to see all options, because the body is set as overflow: hidden; Moreover, if you opened a many2one selection and then scrolled the page, the selection moved with the scrolling, while it should be sticked to its input field
-