Thursday, June 30, 2016
5 changes · master
Enhancements to existing features
This update streamlines the online checkout flow, including address handling, country and state selection, delivery, and payment wording. It should make purchases easier for customers and reduce checkout errors for businesses running an Odoo website shop.
Original PR description
Description of the issue/feature this PR addresses: Current behavior before PR: Desired behavior after PR is merged: ## I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
CRM users can now change the activity type in the scheduling wizard without losing the planned date they already selected. The sales dashboard also gets clearer wording, reducing confusion for teams reviewing activity information.
Original PR description
Description of the issue/feature this PR addresses: Current behavior before PR: Desired behavior after PR is merged: ## I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr When you change the activity on the Schedule activity wizard, keep the scheduled date Rename a string on dashboard
Resolved issues and error corrections
Kitchen tickets in the restaurant point of sale now print items in the same order shown on the screen. This helps kitchen staff correctly match main dishes with sides for each guest and reduces preparation mistakes.
Original PR description
When the kitchen ticket is printed, the order lines appear jumbled in
comparison to what is displayed on the PoS interface. This is an issue
since the kitchen cannot link main and side dishes for a given guest.
For example, the following order:
- Steak
- Fries
- Salmon
- Pasta
- Chicken
- Salad
On the kitchen ticket, this could appear as:
- Salmon
- Salad
- Chicken
- Steak
- Fries
- Pasta
The order actually depends on the product id.
The fix is to use the order line id instead of the product id in the
resume dictionary. Although a dictionary is an unordered collection,
most browsers keep the dictionary ordered. For example:
```
var a = {"18": "18", "1": "1", "21": "21", "14": "14"};
for(var i in a) { console.log(i) };
1
14
18
21
```
opw-680796Code cleanup and technical improvements
The Project Issue app was updated to a newer internal framework and its files and tests were reorganized. This should make the module easier to maintain and improve over time, with limited direct impact on day-to-day users.
Original PR description
Task: https://www.odoo.com/web?#id=13729&view_type=form&model=project.task&action=327 Pad: https://pad.odoo.com/p/r.xV4Xz2Agsil6yYs9
The Project application was reorganized and migrated to Odoo's newer technical framework, while obsolete project-related code was removed. This should make the app easier to maintain and improve reliability without introducing major functional changes for users.
Original PR description
<a href="https://www.odoo.com/web#id=20786&view_type=form&model=project.task&action=327&menu_id=4720"> Task ref </a>