- May 26, 2016
-
-
Martin Trigaux authored
-
Christophe Simonis authored
[FIX] *: replace uses of `except_osv` with `UserError` that have been forgotten during previous forward-ports
-
Martin Trigaux authored
Give the same as access rights to the employee as for the public user. This patch is needed to allow a user to access the partner form. Same for portal. The list of grades in not a confidential information. Fixes #7719
-
Damien Bouvy authored
When the admin creates a SO, he has access to all taxes (since ir.rules do not apply to him); therefore in some cases, the SO could be created with SO lines that have taxes from other companies. This usually does not make sense. From this revision on, only taxes that are in the same company as the SO are applied to the lines. If no company is set, then no filtering is done.
-
65HQqp5QTq8QwA3f authored
Closes #9521
-
Martin Trigaux authored
Could get a definition with a model only
-
Martin Trigaux authored
UserError was defined in version 9, not 8
-
Christophe Matthieu authored
-
Christophe Matthieu authored
-
Christophe Matthieu authored
-
- May 25, 2016
-
-
Jeremy Kersten authored
-
Denis Ledoux authored
When merging leads with a company set different than the current user company, it failed because the notification email (the message written in the thread summarizing the merge) couldn't read the company name (the `name_get` call on the company) because of the multi-company record rule. `name_get` can be safely called as `sudo`, as it does nothing else than returning the name of the record. This is already done for the many2one links in the web client anyway (You can see leads from a company different than yours, you can see the company name to which the leads belongs to, but you can't click on the company many2one link) opw-677986
-
Denis Ledoux authored
When sending a notification email to an event attendee for an all day event, the timezone must be ignored as the `start` and `stop` datetime are stored as the day date + '00:00:00'. If the timezone is applied, for users being in a negative timezone (such as an American timezone), the day displayed would be the day just before. opw-677019
-
Goffin Simon authored
When a user wrote a wrong value in char_domain field it should raise a warning message instead of a traceback. Backport of b3a88b6e opw:676783
-
Joren Van Onder authored
c8732bea did not take into account that we don't have specific callbacks for weight or price type barcodes. Those where handled by the product callback. opw-678556
-
Christophe Matthieu authored
-
Goffin Simon authored
For a type 'in_refund', the supplier account invoice form must be taken. opw:678498
-
Martin Trigaux authored
Prevent selecting wrong field or models or computed fields Fixes #8545
-
Denis Ledoux authored
Since revision 7eab8e26 the `_onchange_partner_id` of `account.invoice` failed if the SUPERUSER created an invoice for another company than his own, and if the partner had not a specific receivable or payable account (meaning the default accounts are used, the accounts coming from the properties of this company without any partner specified) because ``` prop.search([ ('name', '=', 'property_account_receivable_id'), ('company_id', '=', company_id) ])` ``` can return multiple records, if several partners have their own receivable accounts set, and, since the above revision, `get_by_record` specify `ensure_one`, meaning you cannot pass multiple records to this method. This domain was built a the time (2009, rev. 80861660) to handle the multi-company property, which can now be handle with a simple `force_company` passed in the context. It was not the case at the time. This revision could be applied in former releases, but this is not a necessity. This is a necessity in saas-10, because of the above revision. opw-678536
-
Jeremy Kersten authored
-
Jeremy Kersten authored
-
Goffin Simon authored
When computing the real price of a product, a currency of reference is needed, first the currency of the product's company is privileged and if no company is set on the product then the currency of the user's company is taken. opw:678159
-
Adrien Dieudonne authored
A read more was added to every node having a mail-quote tag. However all quotes and their child nodes are tagged, leading to numerous unnecessary read more / read less. Now, all consecutive mail-quote are joined in one 'read more/read less'.
-
Yannick Tivisse authored
-
Yannick Tivisse authored
1/ Display a button for the project_user to come back in backend and edit the issue if they want
-
Martin Trigaux authored
Do not allow to select field that will be used read_group but not stored in db Fixes #8545
-
Nicolas Martinelli authored
When a user has the access rights "Configuration" or "Access Rights" regarding the "Administration" module category, the click on the "Settings" menu leads to an access error. This is because the dashboard fetches data about the number of installed modules ("installed_apps"), which requires access to "ir.module.module". Since it is not easily possible to hide a parts of the dashboard (the static templates do not recognize the "groups" attribute), we simply hide the dashboard for these users. opw-678531
-
Quentin De Paoli authored
[FIX] account: don't write the foreign currency on writeoff when several secondary currencies are involved
-
Richard deMeester authored
Quants are created, and stock moves are updated, with the purchase value converted at current rates. However, the product average was calculated before that value was retrieved. This ensures the correct value is retrieved for the average cost calculation and will match the actual quants. Fixes #12163 Closes #12164 opw-678511
-
Goffin Simon authored
It is not possible to edit the start_date, end_date, start_datetime, end_datetime and duration for a recurrent event due to the raesons explained in https://github.com/odoo/odoo/issues/10278 or see opw:665700 opw:677139
-
Joren Van Onder authored
The get_recursive_parent function seemingly depended on the ordering of the rule_categories recordset which happens to work fine in most cases because all data first defines the parent before defining the children rule categories. But if you happen to do it the other way around it won't work and it will infinitely call itself because: if rule_categories[0].parent_id: rule_categories = rule_categories[0].parent_id | rule_categories won't change the value of rule_categories[0]. opw-673222 (loosely related)
-
- May 24, 2016
-
-
qsm-odoo authored
When going over the colorpicker when no bg-* class was selected yet, the bg-undefined class was added on the snippet. Also, when clicking on the reset button, the bg-* class was removed but the selected button in the colorpicker was not unselected.
-
tdu-odoo authored
To be able to counter part the expense of the employee with the account set on his personal contact form, we need to configure the 421 account as payable. more infos on http://www.compta-facile.com/comptabilisation-des-notes-de-frais/ The fix allows us to get that correct entry: https://drive.google.com/a/openerp.com/file/d/0B5t9_ESHwijQemhyUjFFRzdTeVE/view?usp=sharing
-
Nicolas Martinelli authored
The fiscal year start date should be taken into account when calculating the depreciation amount in case of prorata temporis. opw-678072
-
Martin Trigaux authored
On the font-end view of project.issue, only the messages of type `note` were display. This excluded the messages recieved via email which makes hard to understand a conversation (e.g. a customer does not sees his own answers). Instead, only filter out the notifications (change of states, responsible...) opw-677426
-
Simon Lejeune authored
Using groups when declaring an extension of an asset bundle leads to a different generated asset bundle according to the user's group. This is not something we want because a dynamic asset bundle's content means that it could (and it does) trigger unwanted cache invalidation. website_event, website_blog, website_forum and website_sale add functions to `website.contentMenu`. These functions are bound to server side qweb nodes protected by groups. We can always add the functions; if a user tries to use the routes he should receive a traceback because of lack of access rules website_blog adds a `website_blog.editor` module, but is guarded by the presence of a node in the DOM. We use the same logic to guard the module added by website_sale with the `.js_sale` node. website_gengo is working as expected.
-
Nicolas Lempereur authored
Currently on mobile, the livechat window would take all the viewport of a small screen mobile browser. This combined with the "auto open" feature can be desorienting: users could have only seen the "hello, how may I help you ?" window and not know what to do or what is happening. So this commit remove the "auto open" feature if user is on a too small device (the user would thus have to click on "Have a Question"). closes #12148 opw-678012
-
Cédric Snauwaert authored
[FIX] account: fix error in aged partner balance, variable at_least_one_amount referenced before assignment
-
Christophe Simonis authored
Revert "[FIX] account: fixed old references to account_extra_report module forgotten during the merge into account" This reverts commit 4f00202f.
-
Goffin Simon authored
When counting the number of issues for a customer, all the the contacts of this customer must be taken into account. opw:676985
-