* Update the module version to 9.0.
* Align file header to the OCA Guidelines.
* Migrate Javascript file to the V9 API.
* Refresh the view before closing the dialog when clicking
on close button
Monetary fields were hard to work with in Excel after exporting because having the currency symbol made Excel treat those cells as text.
This patch removes those symbols and thus allows Excel to treat those values as numbers, allowing easier management.
It works no matter the symbol is before or after the value, so in any case it fixes#558.
* Fix bugs involving the crop and pan functionality by modifying crop and zoom
plugins and Darkroom widget
* Add Darkroom modal to normal image widget, using darkroom.modal wizard model
to provide backend support for modal view
* Remove res.users view changes introduced for demo purposes (not needed due
to modal functionality)
* Clean up existing code, removing many unnecessary DarkroomJS files
* [ADD][web_editor_background_color] Custom background color picker
This addon lets the user choose a preferred background color when editing some web content.
Works out of the box with `website` and `mass_mailing` addons, although requires none of those.
* [FIX] Avoid clicks removing dropdown menu
This happened specifically in Chrome as demonstrated in
https://github.com/OCA/web/pull/582#issuecomment-287057052.
* [FIX] Use strict equality operator.
This patch displays the event acceptance template to the end user without failing with a server error.
Before this patch:
1. Create a calendar event.
2. Invite Mr. Foo.
3. Enter Mr. Foo's mail inbox.
4. Press "Accept" in the invitation email.
5. Get a beautiful `Internal Server Error`.
After this patch, replace step 5 by "See the accepted event details".
* [FIX][web_m2x_options] Fix Qweb templates.
They were trying to replace non-existing elements, and this was being logged to console:
Can't find "a.oe_m2o_cm_button" when extending template FieldMany2One
Can't find "span.badge" when extending template FieldMany2ManyTag
* Raise version correctly.
* [FIX] Make many2many_tags tag deletion work again
* Correct replacement of event
Instead of overwriting all events from upstream widget, better just overwrite the one you need and inherit the rest.