10 lines
214 B
JavaScript
10 lines
214 B
JavaScript
|
/** @odoo-module */
|
||
|
|
||
|
import { helpers } from "@odoo/o-spreadsheet";
|
||
|
|
||
|
const { toUnboundedZone } = helpers;
|
||
|
|
||
|
export function toRangeData(sheetId, xc) {
|
||
|
return { _zone: toUnboundedZone(xc), _sheetId: sheetId };
|
||
|
}
|