mirror of
https://github.com/bringout/oca-ocb-report.git
synced 2026-04-23 04:02:03 +02:00
7 lines
193 B
JavaScript
7 lines
193 B
JavaScript
import { helpers } from "@odoo/o-spreadsheet";
|
|
|
|
const { toUnboundedZone } = helpers;
|
|
|
|
export function toRangeData(sheetId, xc) {
|
|
return { _zone: toUnboundedZone(xc), _sheetId: sheetId };
|
|
}
|