odoo/o-spreadsheet#8391
Created by fw-bot
Merged
at 19a3cfb89568bd56f74baed608d3a84ce448e88b
Statuses:
- label
- odoo:saas-19.2-saas-19.1-fix-format-no-number-adrm-511943-fw
- head
- e42128457cb2edf24e5f0a3749b1a46ada8b34d0
- merged
- 1 week ago by BI, Adrien Minne (adrm)
| odoo/o-spreadsheet | |
|---|---|
| saas-19.1 | #8203 |
| saas-19.2 | #8391 |
| master | #8395 |
[FIX] format: number format with no digit
Description
Since e8b38a a format with no date part and no digit is (correctly) detected as a number format. But the implementation of a format with no digit applied to a non-zero number was not correct. 123 formatted with [$str] was formatted as str123 instead of str.
Task: 6068824
review checklist
- [ ] feature is organized in plugin, or UI components
- [ ] support of duplicate sheet (deep copy)
- [ ] in model/core: ranges are Range object, and can be adapted (adaptRanges)
- [ ] in model/UI: ranges are strings (to show the user)
- [ ] undo-able commands (uses this.history.update)
- [ ] multiuser-able commands (has inverse commands and transformations where needed)
- [ ] new/updated/removed commands are documented
- [ ] exportable in excel
- [ ] translations (_t("qmsdf %s", abc))
- [ ] unit tested
- [ ] clean commented code
- [ ] track breaking changes
- [ ] doc is rebuild (npm run doc)
- [ ] status is correct in Odoo
Forward-Port-Of: #8203