- May 21, 2015
-
-
Goffin Simon authored
The POS must adapt the float format according to the language of the user. Inspired from 1da5d89b opw:639567
-
- May 20, 2015
-
-
Denis Ledoux authored
This reverts commit eeedd2d9. This revision introduces an issue more serious than the ones it fixes. This is no longer possible to receive an email aimed a sale.order thread with catchall. To reproduce the issue: - Create a new sale order - Send a message in the thread to the customer - Reply to the mail received in the customer mailbox - Traceback, AttributeError: digits opw-640370
-
Denis Ledoux authored
This issue is related to 4f03a622. The above revision aimed to not fetch uselessly fields values The thing is, `partner_id` of `get_next_potential_limit_alarm` method expects a partner id, while partner['id'] is actually a user id. The `partner_id` of the user must be taken, not the user id itself.
-
Nicolas Lempereur authored
Commit 0fd51c2e changed the unit rounding from units from 1 to 0.001, it was done mainly because it's the default unit and in the interface we see quantities with 3 decimals after the floating point, so people might expect to be able to set floating point quantities. This change caused an issue when splitting a bill in the pos restaurant, instead of a click being a piece of the product, it was 0.001 part of a product. This fix overrides the rounding of units in this case. closes #6780 opw-639865
-
Denis Ledoux authored
-
Denis Ledoux authored
-
Thomas Groutars authored
Transfers were slowed because of the continuous computation of pickings remaining quantities. This revision delay the computation at the end of the transfer, so the computation is performed only once, and it therefore leads to a huge performance improvment. opw-634416
-
Denis Ledoux authored
This rev. is related to 439cdb68. The module datetime was already available in the reports, and it was the entire datetime module that was imported, not just the class. This rev. is not recompatible with 439cdb68, but there is no other choice, since other existing reports might already expected the datetime module and not the class opw-640299
-
Denis Ledoux authored
When the upload of an attachment failed, e.g. for access rights reasons, the traceback wasn't written or returned anywhere, preventing the easy debugging. opw-640242
-
Denis Ledoux authored
To be able to see record attachments, you need to have read access to the record. To be able to add or delete attachment, you need to have write access to the record. The button add/delete were displayed as soon as you had the read access, but if you had not the write access, both buttons failed. This revision do not display the add/delete buttons of Attachment dropdown menu if you do not have the right to add / delete attachments to the record (you do not have write access to the record) opw-640242
-
Nicolas Martinelli authored
opw-640208
-
- May 19, 2015
-
-
Christophe Simonis authored
Ensure we always have an valid cursor when determining `digits()`. fixes #6605, fixes #6650
-
Goffin Simon authored
A user that has the rights in Accounting & Finance equal to Invoicing & Payments must have the right to validate a supplier invoice. opw:634601
-
Nicolas Martinelli authored
It prevents to cancel a SO for which moves are already done. opw-634415
-
Denis Ledoux authored
As regular employees are not allowed to alter cron activities. opw-639419
-
Denis Ledoux authored
-
Denis Ledoux authored
-
Nicolas Martinelli authored
If route is set on dropshipping and the PO invoice is generated from picking, the unit price used in the supplier invoice must be the cost price. In this particular configuration, this was not the case because the unit price was replaced by the sale price. opw-634898
-
Goffin Simon authored
When rounding globally, the function compute_all in charge to compute the taxes for each line uses a very high currency rounding to avoid rounding per line. The round must be done on the sum of each total amount line with taxes. To validate a payment with the pos, the function is_paid verified that this sum is the same that the amount just paid. Inspired from "sale.order.line", the precision of 'price_unit' and 'price_subtotal' in "pos.order.line" must be taken from 'Product Price' to avoid rounding per line. ps: we could not use the function get_all_prices to round globally because it used on every line. Fixes #6681 Closes #6682 opw:639686
-
Nicolas Lempereur authored
Set the record update time when the date is changed via another view than calendar view. So when an synchronization is done, the update is taken into account when updating calendar from the odoo to google. closes #6752 opw-634674
-
Goffin Simon authored
When a record is created with a field property of type integer or float equal to 0, there is no record created in ir_property for this field. Then for a search of a record with this type of field equal to 0, it must match all the records that have no corresponding property in the table "ir.property" for this field. ps: in 7.0, the function search_multi doesn't exist and the bug linked to cost price doesn't happen because it's a float field. opw:639746
-
Coin Newell authored
-
Coin Newell authored
As recommended by OWASP https://www.owasp.org/index.php/Session_Management_Cheat_Sheet#Renew_the_Session_ID_After_Any_Privilege_Level_Change Closes #6760
-
- May 18, 2015
-
-
Olivier Dony authored
* Complements commits a6969133 and 21d4b3fd by adding the missing `data-lang` attribute also in the report layout (in saas-6 a single QWeb template is used for language links in both reports and website layouts). * Fix the "Edit Master" link to work also for outdated templates where the data-lang attribute is dynamically set to 'default', and thus cannot be used as URL prefix -> use /website/lang controller to switch lang instead.
-
Denis Ledoux authored
Manufacturing Orders can be created from procurements, as SUPERUSER_ID, since the procurements can be processed through the WH scheduler, which is always ran as SUPERUSER_ID In such a case, the record rules are ignored, and a BOM normally not accessible to a user thanks to the multi-company record rule could be chosen as the BOM of the MO. This revision forces to find a BOM from a specific company in such a case. opw-640120
-
Christophe Simonis authored
-
Christophe Simonis authored
-
Jeremy Kersten authored
Thanks @sle-odoo
-
Jeremy Kersten authored
Since user is redirected automatically in his preferred language, the button edit_master redirect always to the current lang and so not the master.
-
Goffin Simon authored
When there is no user logged in the website, the product id must be written in the DOM. opw: 634535
-
Nicolas Martinelli authored
Remove the state modifiers for field note in stock.picking in order to have a behavior which is consistent with sales orders or invoices. opw-639956
-
Nicolas Martinelli authored
opw-634681
-
Nicolas Martinelli authored
The proposed value for the new quantity on hand is calculated for the chosen warehouse. opw-639641
-
Denis Ledoux authored
In reports calling the internal headers layout, e.g. the general ledger, the print time was displayed in UTC, while it should be in user tz. closes #3341 opw-612043
-
Denis Ledoux authored
When receiving goods with average price set as costing method, for a move from another company than the SUPERUSER_id company, the average price updated was the one from the SUPERUSER company instead of the one of the move. opw-634167
-
- May 15, 2015
-
-
Nicolas Lempereur authored
If the chatter is displayed, display the send message part. Before it was only displayed if we can edit the record, but we are still able to post in other case (i.e. if we are in the followers). closes #6721 opw-631039
-
Nicolas Lempereur authored
Depending on the area (in this case a html field), the editor can escape the url which wasn't taken into account by this widget. closes #6726 opw-639852
-
Goffin Simon authored
The domain set for the field 'project_time_mode_id' must use the xml_id to be used with every languages. opw:639603
-
Nicolas Martinelli authored
opw-639617
-
Denis Ledoux authored
Use a set to prevent adding several time the same calendar.alarm (reminder) in the same event opw-639918
-