- Nov 03, 2016
-
-
Goffin Simon authored
Before the fix: When creating a new session with Cash control POS then it was impossible to close the session. After the fix: The same flow as in 9.0 when closing a session opw:691517
-
Kinjal Mehta authored
======= purpose ======= By default, the sequence is 0 for all new attributes and the result is messed up. The product attribute values are not ordered in the same way in a list view. That's because the results are not returned from sql ordered by id if the sequence is the same. Just add this in the order definition will remove the non-deterministic behavior.
-
David Arnold authored
Signed-off-by:
David Arnold <dar@devco.co> This commits closes #14067
-
David Arnold authored
This commit closes #14066
-
dut-odoo authored
- when we send invoice by email, the template shows `False` at invoice number, we will show `pro-forma` invoice instead of `False`
-
Nicolas Martinelli authored
The JS widget is simplified, which a cleaner approach. For the rendering part: - the server reads the data - the JS widget formats/organizes the data - the template renders the data prepared by the widget Quick summary of the modifications: 1. The associated field is a text field which contains JSON-encoded data. The data are read server-side, and not client-side anymore. 2. The widget is an AbstractField, no need of ReinitializeWidgetMixin anymore. No use of the FieldMonetary widget directly, but use a similar format_value instead (inspired by ShowPaymentLineWidget). 3. Data formatting (call to format_value) is done in the widget, not in the template anymore. This seems to be the standard way of doing, since lunch was the only module where format_value was in the template and not in the widget. 4. The addition of an order line is cleaner since all necessary data are prepared server-side.
-
Vipul Bhatt authored
-
- Nov 02, 2016
-
-
Christophe Simonis authored
-
Christophe Simonis authored
-
Christophe Simonis authored
-
Christophe Simonis authored
-
Christophe Simonis authored
-
Christophe Simonis authored
-
Christophe Simonis authored
The javascript tour (test) will verify the total amount based on sale price of the product without taking taxes into account. However, if any l10n_* module is installed and defined a default value for product taxes, the test will fail this check.
-
Ankit Joshi authored
Constrain the 'internal category' (categ_id) type of a product.template, it shouldn't be of type view.
-
Ankit Joshi authored
Add the 'stock.group_adv_location' group to the 'Routes' field in the product.category form view.
-
Denis Vermylen (dve) authored
Model account.invoice has "date" and "date_invoice" fields. ("Accounting Date" and "Invoice Date" respectively) The dashboard was incorrectly using the "date" field from account.invoice to look up the corresponding invoices. NOTE: account.invoice.report renames the date_invoice to date and doesn't use the date field from account.invoice, it can be very confusing.
-
Ravi Gadhia authored
For invoices analysis(account.invoice.report) add this month and last month filters in search view and set appropriate default filter on dashboard actions.
-
Ravi Gadhia authored
For pipeline analysis(crm.opportunity.report) add this month and last month filters in search view and set appropriate default filter on dashboard actions.
-
Ravi Gadhia authored
For activities analysis(crm.activity.report) add current month and last month filters in search view and set appropriate default filter on dashboard actions.
-
Ravi Gadhia authored
instead allow to pass context from template(xml) with `data-context` attribute for the crm dashboard.
-
Foram Shah authored
Set sale order and production order link on Mo. override make_mo method in sale_mrp module to set sale order reference in mo. .and to find final destination move, i created one common private method to get parent move. MESSAGES TO DISPLAY: -Set a Reordering Rule (stock.warehouse.orderpoint) that creates a manufacturing order: "This manufacturing order has been created from: OP/00001" -Create new Sales order of manufactured product , there will be a Source Document with procurement of that Sale Order "This manufacturing order has been created from: SO001" -create MO for BoM items of the product, there will be a Source Document with procurement of that Manufacturing Order "This manufacturing order has been created from: MO/00001"
-
Mitali Patel authored
Previously we had 'Inventory at Date' (debug mode) and 'Inventory Valuation' Both have been merged into 'Inventory Valuation' that pops up a wizard asking whether you want the current one or the one from a specific date. Depending on which one you choose you will get either report from the previous menus. (stock.quant or stock.history model)
-
Kinjal Mehta authored
-
qsm-odoo authored
* Do not assault the user with a full traceback on bug, but indicates an error occured and allow him to toggle the traceback * Automatically scroll the traceback to the end (better for python errors) * Propose the user to report the traceback by using a new "Copy" button which correctly copies the full error + traceback
-
Christophe Simonis authored
-
Dhaval Panchal authored
-
Jérome Maes authored
domain from the action is required to avoid seeing empty rating
-
Jérome Maes authored
[FIX] rating_project_issue: all issue are not taken into account when recompute project satisfaction 'issue_ids' has a domain, so all the issue a folded stage are not taken into account for statisfaction percentage. So replacing the field with a search call solve the problem.
-
Christophe Simonis authored
Broken test. This reverts commit 83de09d8.
-
Nicolas Martinelli authored
Hide rating in issue history, otherwise the user can use the link himself to change the rating. opw-692598
-
Nicolas Martinelli authored
When a user has access to a quote (because he is follower) but he is not in the same company than the customer, an access error can occur on the the rendering of the partner field. We use the tokenized link instead, which will read the SO as a superuser to avoid this situation. opw-691740
-
- Oct 31, 2016
-
-
Quentin De Paoli authored
[FIX] account: fix the bank statement reconciliation that wasn't proposing antthing for credits on liquidity accounts because of a wrong sql query (looking on negative values in credit columns
-
Quentin De Paoli authored
-
Goffin Simon authored
Before the fix, the search was made on the picking_type.name instead of the picking_type.warehouse_id.name opw:692256
-
Jared Kipe authored
Since commit edcb318a; using a python rule that uses the 'sum' function on a BrowsableObject was resulting in a UserError. Courtesy of jaredkipe
-
Nicolas Lempereur authored
Currently when using a language on the website, the following is done in this order to choose which one will be used: 1) use a language code if present in the url (eg. /fr_BE/), 2) use a language similar to the one in the url, 3) use a previously choosed language (saved in cookie), 4) use the browser language if available on website, 5) use a language similar to the browser language, 6) use the default website language When a bot is requesting a page, he could either not specify a browser language (en_US is set as default) or sometimes specify english erroneously. In these instance, we will then never use the default website language if an english language is installed. This fix changes this behaviour so if a bot is visiting a page, the 4th and 5th steps are skipped and the default website language is used instead of using the browser language. closes #14033 opw-690910
-
Nicolas Lempereur authored
When pasting, the paste event is cancelled and done back with the corrected data. This works fine on firefox, but this can have unwanted results on other browser like pasting two times or copying the end of the line at the beginning. This commit replace completely the summernote functionality with our small implementation of pasting corrected text. closes #14043 opw-690814
-
Goffin Simon authored
Steps to reproduce : 1. Create a new customer 2. Create an invoice with an amount of 50.- for this new customer and validate it 3. Create a refund with an amount of 70.- for the same customer and validate it 4. Create a Customer Payment for this customer and validate it. The Invoice will be paid with 50.- of the refund. 20.- are still on residual in the refund. 5. Create a new invoice with an amount of 50.- for the same customer. 6. Create a new Customer Payment for the same Customer and validate it. The Full Reconcile Boolean stays checked inspite of "Open Balance" of Refund amount is less than the Invoice amount. After the fix: Full Reconciliation Boolean doesn't get checked and Allocation amount on invoice journal item line should be same as Open balance of the Refund Journal Item. So Invoice stays open with Balance amount. opw:691577
-
Damien Bouvy authored
opw-692655
-