odoo/o-spreadsheet#8010
Created by BI, Vincent Schippefilt (vsc)
- label
- odoo:master-squish-numbers-vsc-matho
- head
- 9a9a7936dfa7aa170a1197e220ca75262902d7c5
| odoo/o-spreadsheet | |
|---|---|
| master | #8010 missing r+ |
[IMP] export: squish consecutive numbers
When snapshotting a spreadsheet, we collapse all the numbers that are
the same or the same increment into a single entry in the JSON.
Example:
Before:
{
"A1": 1,
"A2": 3,
"A3": 5,
"A4": 7,
"A5": 9,
}
After:
{
"A1": 1,
"A2:A5": "+2",
}
Co-authored-by : VincentSchippefilt <vsc@odoo.com>
Description:
Task: 5959334