- Mar 02, 2015
-
-
Julien Legros authored
This reverts commit 0130ce4e.
-
Josse Colpaert authored
-
Nicolas Lempereur authored
When creating a request for quotation from a call for bids, the suppliers taxes where not present in the quotation. Since a product `taxes_id` field is a many2many, the unused triplets syntax caused the issue. fixes #5307
-
Goffin Simon authored
pricelist must be readonly when currency is readonly because there 's an onchange on currency which depends on the pricelist. opw:627009 Fixed #4598
-
- Mar 01, 2015
-
-
Leonardo Pistone authored
Closes #4735
-
Cédric Pigeon authored
Closes #5242
-
Ravi Gohil authored
Add support for older versions of psutil (<1.2.0). Only used when debug_rpc is enabled. Closes #5108, #5163
-
Daniel Reis authored
python ldap library api is str based, assume utf-8 encoding for non-ascii chars. Closes #5376 lp:1079476
-
- Feb 28, 2015
-
-
Antony Lesuisse authored
-
- Feb 27, 2015
-
-
Simon Lejeune authored
Also redirect to our builds of wkhtmltopdf 0.12.1 for debian jessie, as the wkhtmltopdf team does not provide one.
-
Christophe Simonis authored
Use directly datarecord id instead of previously stored value which may not be up to date.
-
Cecile Tonglet authored
-
Christophe Simonis authored
-
Denis Ledoux authored
This is possible to assign a sales team to a supplier invoices Supplier invoices must be rejected in the invoiced count of sales team (in the kanban view of sales team). The invoiced amount must be the customer invoices amount minus the customer refund invoices amount opw-629105
-
Xavier Morel authored
Variable was added to an error message, then inlined in only one of the two callsites. Undefined variable error would only appear when an error is triggered in the actual (postgres-level) backup call. inserted in ec9a5430 fixes #5241
-
Xavier Morel authored
fixes #2742
-
vnsofthe authored
Is present in mrp and not stock module.
-
vnsoft authored
-
Toilal authored
closes #5393
-
Simon Lejeune authored
Avoid pip re-downloading PyChart
-
- Feb 26, 2015
-
-
Leonardo Rochael Almeida authored
While calling `pip install -r requirements.txt`, the PyChart tarball is always downloaded even if `pip` has a download cache configured (which it does by default in later versions). This is because `pip` has no way of knowing which package the PyChart tarball contains before downloading and running its `setup.py`. By declaring the PyChart "egg" in `requirements.txt` the tarball is no longer downloaded if it's already in the download cache.
-
Leonardo Rochael Almeida authored
-
Markus Schneider authored
-
Denis Ledoux authored
The button was no more redirecting to the sales order lines list view, following a distraction error introduced during 68b8286d
-
Denis Ledoux authored
The priority widget did not handle the readonly concept It was therefore possible to set the priority of an issue (for instance) even if the field was marked as readonly. opw-628960
-
David Monjoie authored
Adaptation of https://github.com/acsone/odoo/commit/afe4a97d037b4075c8cd0514b6d1b829e1208629, but we properly unlink the timesheet lines themselves instead of going for the account.analytic.lines like the original commit proposition did. Actually, the unlink method of hr.analytic.timesheet already unlinks the corresponding acount.analytic.line, but those records were previously deleted via ondelete='cascade', which didn't trigger the unlink method at all, so the associated analytic lines were not deleted accordingly. Fixes opw 628256.
-
Daniel Kraft authored
closes #5433
-
Christophe Simonis authored
phantomjs 2.0 remove the deprecated attribute `phantom.args`. Use the new `system` module.
-
Olivier Dony authored
The natural order was discarded when merging results with a set, and this was actually un-necessary as the second search() excludes the previously found `ids`.
-
Olivier Dony authored
In the rare places with a m2o field to product.template (e.g BoMs), it is necessary to be able to search on product codes, EAN, etc, the way it works on product.product. This is done by delegating the name_search to product.product and then returning the corresponding templates. This has a small penalty of executing name_get() twice, but is simpler and more robust for future changes. An alternative would have been to extract the name_search() method into a mixin and mix it on both product.product and product.template. However this would be more brittle and only work as long as the name_search implementation strictly uses fields that are present in both tables. OPW 626662
-
Xavier Morel authored
-
Vijay Baladaniya authored
Fixed #5476
-
Raphael Collet authored
Reload fields of parent inherits, fixes #5398
-
Fabrice Henrion authored
closes #5478
-
- Feb 25, 2015
-
-
Denis Ledoux authored
It looks like it was possible to pass vals['date'] in date format (!= datetime format) to _create_analytic_entries. This rev. is a retrocompatible patch for 73f7a2ba. In addition, it solves the same issue than the rev. 73f7a2ba, but in the case the project is set on the task after the work hours are created. See ab5ecef4 opw-628729
-
Josse Colpaert authored
[FIX] Split of return move should keep the returned move [IMP] Better comment and check for state not cancelled
-
Josse Colpaert authored
[IMP] To determine the invoice we put extra moves in, it is better to take the values from the sale order / purchase order if we can find it through the picking [IMP] Add comments [IMP] Simplify code
-
Josse Colpaert authored
[FIX] Should make sure purchase order lines are not invoiced twice
-
- Feb 24, 2015
-
-
Jeremy Kersten authored
If a meeting has been changed in google, a mail has been already sent.
-
Denis Ledoux authored
In ir_ui_view.py, in method render (line 132 atm), the values passed to the rendering engine is a merge of the context and the values. Therefore, if at this place, the language is rightly set in the context, the report lang will be as well in the values. In abstract_report.py, the values passed to the render method is the wrapped report localcontext in which are added some key/values (docs, doc_ids, doc_model). By default, the lang in the localcontext is False See __init__ method of rml_parse class in report_sxw.py. If setLang method is not called, the lang in the localcontext remains False. In this rev., we avoid to overwrite the lang from the context by the lang of the localcontext if this one is False, so the lang of the report is set with the current context lang. Forcing the lang of the report to False had as side-effect to prevent the editing of report using the website editor(e.g. playslip_report) opw-628720
-