NexusERP

Încasări așteptate — scadențe și clienți — Pro

Ce ai de încasat și de la cine: scadențe → clienți → facturi → produse și repartizări, separat pe monede.

Scadența facturilor → clienți → facturi cu sold actual → produse și încasări repartizate. Filtre la deschidere pentru restante, astăzi, următoarele 7 zile, 8–30 zile, peste 30 zile, moneda și sensul soldului. Facturile vechi încă neachitate nu dispar printr-un filtru pe emitere. Sunt incluse numai facturi validate și neanulate, cu sold nenul. Grupele păstrează moneda documentului și separă soldurile negative fără compensare automată sau ABS. Sumele sunt cele native din Nexus, fără conversii valutare. Nu aduna monede diferite. Soldul este cel actual, nu sold istoric la data scadenței. Scadențele lipsă sau anterioare emiterii apar separat pentru verificare. Este scadența facturii, nu un grafic de rate sau o promisiune de încasare. Încasările repartizate arată documentele financiare asociate, nu garantează acoperirea tuturor compensărilor/avansurilor sau decontarea bancară. Cardurile și Detaliile includ client, număr, date, agent, gestiune, valoare, încasat și rest. Sub-listele pornesc doar pentru contextul ales. Pro, live, read-only, maximum 10.000 rânduri pe nivel. Capturi DEMO, fără clienți reali. Manuale: https://www.docs.nexuserp.ro/articol/campuri-facturi-clienti/4056 ; https://www.docs.nexuserp.ro/articol/asistent-compensare-facturi-de-clienti-negativepozitive/5177 .

What this package creates

1 Home4 Details5 lists1 sources to map
  • Home: Scadențe de urmărit
  • Details: Clienții acestei scadențe
  • Details: Facturile acestui client
  • Details: Produsele facturii
  • Details: Încasări repartizate
  • Sub-button: Clienții scadenței
  • Sub-button: Facturile clientului la scadență
  • Sub-button: Produsele facturii
  • Sub-button: Încasări repartizate

Sources are mapped locally and verified before applying.

Custom queriesPRO5 SQL

Custom queries are a PRO feature. Cifru repeats read-only validation against the local source before execution.

Statically verified read-only$.components.workspaceSelection.datasets.0.sqlQuery
SELECT CONCAT(b.due_key,'|',b.currency_key,'|',b.balance_kind) AS row_id,b.due_key,b.currency_key,b.balance_kind,
 CASE b.due_key WHEN 'UNKNOWN' THEN N'Scadență necunoscută' WHEN 'INVALID' THEN N'Scadență de verificat' ELSE b.due_key END AS scadenta,
 CASE WHEN b.due_key IN ('UNKNOWN','INVALID') THEN N'De verificat' WHEN MIN(b.data_lim)<CAST(GETDATE() AS date) THEN N'Restante'
 WHEN MIN(b.data_lim)<DATEADD(day,1,CAST(GETDATE() AS date)) THEN N'Astăzi'
 WHEN MIN(b.data_lim)<DATEADD(day,8,CAST(GETDATE() AS date)) THEN N'Următoarele 7 zile'
 WHEN MIN(b.data_lim)<DATEADD(day,31,CAST(GETDATE() AS date)) THEN N'În 8–30 zile' ELSE N'Peste 30 zile' END AS interval_scadenta,
 CASE WHEN b.balance_kind='RECEIVABLE' THEN N'De încasat' ELSE N'Sold negativ — de analizat separat' END AS situatie,CASE WHEN b.currency_key='UNKNOWN' THEN N'Monedă necunoscută' ELSE b.currency_key END AS moneda,
 SUM(b.sold) AS sold,COUNT_BIG(*) AS facturi,COUNT(DISTINCT b.id_client) AS clienti,CAST(GETDATE() AS date) AS sold_la_data
FROM (SELECT h.id_document,h.id_client,h.den_client,h.numar_document,h.serie_document,h.data_document,h.data_lim,
 h.den_gestiune,h.den_agent,h.moneda,h.valoare_cu_tva,h.valoare_incasata,h.sold,
 CASE WHEN h.data_lim IS NULL THEN 'UNKNOWN' WHEN h.data_lim<h.data_document THEN 'INVALID' ELSE CONVERT(varchar(10),h.data_lim,23) END AS due_key,
 COALESCE(NULLIF(RTRIM(h.moneda),''),'UNKNOWN') AS currency_key,
 CASE WHEN h.sold>0 THEN 'RECEIVABLE' ELSE 'CREDIT' END AS balance_kind
FROM dbo.accesex_facturi_clienti h WHERE h.validare=1 AND h.anulare=0 AND h.sold<>0) b GROUP BY b.due_key,b.currency_key,b.balance_kind

static read-only checks passed

Statically verified read-only$.components.workspaceSelection.datasets.1.sqlQuery
SELECT CONCAT(CONCAT(b.due_key,'|',b.currency_key,'|',b.balance_kind),'|',b.id_client) AS row_id,CONCAT(b.due_key,'|',b.currency_key,'|',b.balance_kind) AS due_group_key,
 b.due_key,b.currency_key,b.balance_kind,b.id_client AS client_key,MAX(b.den_client) AS client,MAX(b.moneda) AS moneda,
 CASE WHEN b.balance_kind='RECEIVABLE' THEN N'De încasat' ELSE N'Sold negativ — de analizat separat' END AS situatie,SUM(b.sold) AS sold,COUNT_BIG(*) AS facturi,MIN(b.data_document) AS prima_factura,MAX(b.data_document) AS ultima_factura
FROM (SELECT h.id_document,h.id_client,h.den_client,h.numar_document,h.serie_document,h.data_document,h.data_lim,
 h.den_gestiune,h.den_agent,h.moneda,h.valoare_cu_tva,h.valoare_incasata,h.sold,
 CASE WHEN h.data_lim IS NULL THEN 'UNKNOWN' WHEN h.data_lim<h.data_document THEN 'INVALID' ELSE CONVERT(varchar(10),h.data_lim,23) END AS due_key,
 COALESCE(NULLIF(RTRIM(h.moneda),''),'UNKNOWN') AS currency_key,
 CASE WHEN h.sold>0 THEN 'RECEIVABLE' ELSE 'CREDIT' END AS balance_kind
FROM dbo.accesex_facturi_clienti h WHERE h.validare=1 AND h.anulare=0 AND h.sold<>0) b WHERE b.due_key=:due_key AND b.currency_key=:currency_key AND b.balance_kind=:balance_kind GROUP BY b.due_key,b.currency_key,b.balance_kind,b.id_client

static read-only checks passed

Statically verified read-only$.components.workspaceSelection.datasets.2.sqlQuery
SELECT b.id_document AS row_id,CONCAT(CONCAT(b.due_key,'|',b.currency_key,'|',b.balance_kind),'|',b.id_client) AS client_group_key,
 b.den_client,b.numar_document,b.serie_document,b.data_document,b.data_lim,b.den_gestiune,b.den_agent,b.moneda,
 b.valoare_cu_tva,b.valoare_incasata,b.sold,CAST(GETDATE() AS date) AS sold_la_data,
 CASE WHEN b.due_key IN ('UNKNOWN','INVALID') THEN NULL ELSE DATEDIFF(day,CAST(b.data_lim AS date),CAST(GETDATE() AS date)) END AS zile_fata_de_scadenta
FROM (SELECT h.id_document,h.id_client,h.den_client,h.numar_document,h.serie_document,h.data_document,h.data_lim,
 h.den_gestiune,h.den_agent,h.moneda,h.valoare_cu_tva,h.valoare_incasata,h.sold,
 CASE WHEN h.data_lim IS NULL THEN 'UNKNOWN' WHEN h.data_lim<h.data_document THEN 'INVALID' ELSE CONVERT(varchar(10),h.data_lim,23) END AS due_key,
 COALESCE(NULLIF(RTRIM(h.moneda),''),'UNKNOWN') AS currency_key,
 CASE WHEN h.sold>0 THEN 'RECEIVABLE' ELSE 'CREDIT' END AS balance_kind
FROM dbo.accesex_facturi_clienti h WHERE h.validare=1 AND h.anulare=0 AND h.sold<>0) b WHERE b.due_key=:due_key AND b.currency_key=:currency_key AND b.balance_kind=:balance_kind AND b.id_client=:client_key

static read-only checks passed

Statically verified read-only$.components.workspaceSelection.datasets.3.sqlQuery
SELECT l.id_intern AS row_id,l.id_document,
 l.den_produs,l.cod_produs,l.cantitate,l.pret_vanzare,l.pret_vanzare_tva,l.cont_produs,l.serie_produs,l.cota_tva_ies
FROM dbo.accesex_facturi_clienti_lin l WHERE l.id_document=:invoice_id

static read-only checks passed

Statically verified read-only$.components.workspaceSelection.datasets.4.sqlQuery
SELECT CONCAT(RTRIM(l.tip_financiar),'|',RTRIM(l.id_document)) AS row_id,
 RTRIM(l.id_factura) AS invoice_id,RTRIM(l.tip_financiar) AS tip_financiar,
 MAX(h.document) AS document,MAX(h.data_document) AS data_document,MAX(h.data_decont) AS data_decont,
 MAX(h.tip_document) AS tip_document,MAX(h.moneda) AS moneda,MAX(h.cont) AS cont_banca,
 MAX(h.explicatii) AS explicatii,SUM(l.suma_repartizata) AS suma_repartizata,COUNT_BIG(*) AS nr_repartizari
FROM dbo.accesex_incasari_plati_lin_view l
JOIN (SELECT tip_financiar,id_document,MAX(CONCAT(RTRIM(serie_document),' ',RTRIM(numar_document))) AS document,
 MAX(data_document) AS data_document,MAX(data_decont) AS data_decont,MAX(tip_document) AS tip_document,
 CASE WHEN COUNT(DISTINCT NULLIF(RTRIM(moneda),''))=1 AND COUNT(NULLIF(RTRIM(moneda),''))=COUNT(*) THEN MAX(RTRIM(moneda)) ELSE N'Monedă de verificat' END AS moneda,
 MAX(RTRIM(cont)) AS cont,MAX(explicatii) AS explicatii
 FROM dbo.accesex_incasari_plati_view WHERE validare=1 GROUP BY tip_financiar,id_document) h
 ON h.tip_financiar=l.tip_financiar AND h.id_document=l.id_document
WHERE l.tip_factura='CLI' AND l.id_factura=:invoice_id
GROUP BY l.tip_financiar,l.id_document,l.id_factura

static read-only checks passed

View the JSON being importedcollapsed by default

The exact portable content of this version.

{
    "components": {
        "sourceSlots": [
            {
                "displayName": "NexusERP SQL Server",
                "id": "9F0F4F34-DB86-5D9F-9825-405BD9271367",
                "kind": "sqlServer",
                "requiredObjects": [
                    "dbo.accesex_facturi_clienti",
                    "dbo.accesex_facturi_clienti_lin",
                    "dbo.accesex_incasari_plati_lin_view",
                    "dbo.accesex_incasari_plati_view"
                ],
                "requiresCustomSQL": true
            }
        ],
        "workspaceSelection": {
            "commonFields": [],
            "datasets": [
                {
                    "cacheMode": "live",
                    "calculatedFields": [],
                    "customQueryIntegrationName": "NexusERP",
                    "endpointPath": "",
                    "fetchSortRules": [
                        {
                            "direction": "ascending",
                            "id": "FAD6A6F9-7AB8-5E6B-A606-B874B51431FC",
                            "key": "scadenta",
                            "type": "text"
                        },
                        {
                            "direction": "ascending",
                            "id": "A3C766ED-F630-572E-9A1A-F32A4B99ACA4",
                            "key": "row_id",
                            "type": "text"
                        }
                    ],
                    "id": "5111F4A7-35A6-57C1-B9E9-34BF4CE7A073",
                    "mappings": [
                        {
                            "commonFieldKey": "",
                            "key": "row_id",
                            "label": "row_id",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic",
                            "sourceColumn": "row_id",
                            "type": "text",
                            "visibleInDetail": false,
                            "visibleInList": false
                        },
                        {
                            "commonFieldKey": "",
                            "key": "due_key",
                            "label": "due_key",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic",
                            "sourceColumn": "due_key",
                            "type": "text",
                            "visibleInDetail": false,
                            "visibleInList": false
                        },
                        {
                            "commonFieldKey": "",
                            "key": "currency_key",
                            "label": "currency_key",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic",
                            "sourceColumn": "currency_key",
                            "type": "text",
                            "visibleInDetail": false,
                            "visibleInList": false
                        },
                        {
                            "commonFieldKey": "",
                            "key": "balance_kind",
                            "label": "balance_kind",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic",
                            "sourceColumn": "balance_kind",
                            "type": "text",
                            "visibleInDetail": false,
                            "visibleInList": false
                        },
                        {
                            "commonFieldKey": "",
                            "key": "scadenta",
                            "label": "Scadența facturilor",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic",
                            "sourceColumn": "scadenta",
                            "type": "text",
                            "visibleInDetail": true,
                            "visibleInList": true
                        },
                        {
                            "commonFieldKey": "",
                            "key": "interval_scadenta",
                            "label": "Interval",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic",
                            "sourceColumn": "interval_scadenta",
                            "type": "text",
                            "visibleInDetail": true,
                            "visibleInList": true
                        },
                        {
                            "commonFieldKey": "",
                            "key": "situatie",
                            "label": "Sensul soldului",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic",
                            "sourceColumn": "situatie",
                            "type": "text",
                            "visibleInDetail": true,
                            "visibleInList": true
                        },
                        {
                            "commonFieldKey": "",
                            "key": "moneda",
                            "label": "Monedă",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic",
                            "sourceColumn": "moneda",
                            "type": "text",
                            "visibleInDetail": true,
                            "visibleInList": true
                        },
                        {
                            "commonFieldKey": "",
                            "key": "sold",
                            "label": "Sold actual al facturilor",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic",
                            "sourceColumn": "sold",
                            "type": "number",
                            "visibleInDetail": true,
                            "visibleInList": true
                        },
                        {
                            "commonFieldKey": "",
                            "key": "facturi",
                            "label": "Facturi",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic",
                            "sourceColumn": "facturi",
                            "type": "number",
                            "visibleInDetail": true,
                            "visibleInList": true
                        },
                        {
                            "commonFieldKey": "",
                            "key": "clienti",
                            "label": "Clienți",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic",
                            "sourceColumn": "clienti",
                            "type": "number",
                            "visibleInDetail": true,
                            "visibleInList": true
                        },
                        {
                            "commonFieldKey": "",
                            "key": "sold_la_data",
                            "label": "Sold citit la data",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic",
                            "sourceColumn": "sold_la_data",
                            "type": "date",
                            "visibleInDetail": true,
                            "visibleInList": false
                        }
                    ],
                    "maxRows": 10000,
                    "name": "Scadențe de urmărit",
                    "primaryKey": "row_id",
                    "queryParameters": [],
                    "refreshPolicy": {
                        "enabled": false,
                        "intervalMinutes": 60
                    },
                    "rootArrayPath": "",
                    "rowLimitEnabled": true,
                    "searchKeys": [
                        "scadenta",
                        "interval_scadenta",
                        "situatie",
                        "moneda",
                        "sold",
                        "facturi",
                        "clienti",
                        "sold_la_data"
                    ],
                    "sourceID": "9F0F4F34-DB86-5D9F-9825-405BD9271367",
                    "sqlQuery": "SELECT CONCAT(b.due_key,'|',b.currency_key,'|',b.balance_kind) AS row_id,b.due_key,b.currency_key,b.balance_kind,\n CASE b.due_key WHEN 'UNKNOWN' THEN N'Scadență necunoscută' WHEN 'INVALID' THEN N'Scadență de verificat' ELSE b.due_key END AS scadenta,\n CASE WHEN b.due_key IN ('UNKNOWN','INVALID') THEN N'De verificat' WHEN MIN(b.data_lim)<CAST(GETDATE() AS date) THEN N'Restante'\n WHEN MIN(b.data_lim)<DATEADD(day,1,CAST(GETDATE() AS date)) THEN N'Astăzi'\n WHEN MIN(b.data_lim)<DATEADD(day,8,CAST(GETDATE() AS date)) THEN N'Următoarele 7 zile'\n WHEN MIN(b.data_lim)<DATEADD(day,31,CAST(GETDATE() AS date)) THEN N'În 8–30 zile' ELSE N'Peste 30 zile' END AS interval_scadenta,\n CASE WHEN b.balance_kind='RECEIVABLE' THEN N'De încasat' ELSE N'Sold negativ — de analizat separat' END AS situatie,CASE WHEN b.currency_key='UNKNOWN' THEN N'Monedă necunoscută' ELSE b.currency_key END AS moneda,\n SUM(b.sold) AS sold,COUNT_BIG(*) AS facturi,COUNT(DISTINCT b.id_client) AS clienti,CAST(GETDATE() AS date) AS sold_la_data\nFROM (SELECT h.id_document,h.id_client,h.den_client,h.numar_document,h.serie_document,h.data_document,h.data_lim,\n h.den_gestiune,h.den_agent,h.moneda,h.valoare_cu_tva,h.valoare_incasata,h.sold,\n CASE WHEN h.data_lim IS NULL THEN 'UNKNOWN' WHEN h.data_lim<h.data_document THEN 'INVALID' ELSE CONVERT(varchar(10),h.data_lim,23) END AS due_key,\n COALESCE(NULLIF(RTRIM(h.moneda),''),'UNKNOWN') AS currency_key,\n CASE WHEN h.sold>0 THEN 'RECEIVABLE' ELSE 'CREDIT' END AS balance_kind\nFROM dbo.accesex_facturi_clienti h WHERE h.validare=1 AND h.anulare=0 AND h.sold<>0) b GROUP BY b.due_key,b.currency_key,b.balance_kind",
                    "tableName": ""
                },
                {
                    "cacheMode": "live",
                    "calculatedFields": [],
                    "customQueryIntegrationName": "NexusERP",
                    "endpointPath": "",
                    "fetchSortRules": [
                        {
                            "direction": "descending",
                            "id": "D37CBBA4-5283-5FC5-8D03-5D3649256202",
                            "key": "sold",
                            "type": "number"
                        },
                        {
                            "direction": "ascending",
                            "id": "A3C766ED-F630-572E-9A1A-F32A4B99ACA4",
                            "key": "row_id",
                            "type": "text"
                        }
                    ],
                    "id": "D10616D6-DE5F-58D8-BDAE-C68D5112DB31",
                    "mappings": [
                        {
                            "commonFieldKey": "",
                            "key": "row_id",
                            "label": "row_id",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic",
                            "sourceColumn": "row_id",
                            "type": "text",
                            "visibleInDetail": false,
                            "visibleInList": false
                        },
                        {
                            "commonFieldKey": "",
                            "key": "due_group_key",
                            "label": "due_group_key",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic",
                            "sourceColumn": "due_group_key",
                            "type": "text",
                            "visibleInDetail": false,
                            "visibleInList": false
                        },
                        {
                            "commonFieldKey": "",
                            "key": "due_key",
                            "label": "due_key",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic",
                            "sourceColumn": "due_key",
                            "type": "text",
                            "visibleInDetail": false,
                            "visibleInList": false
                        },
                        {
                            "commonFieldKey": "",
                            "key": "currency_key",
                            "label": "currency_key",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic",
                            "sourceColumn": "currency_key",
                            "type": "text",
                            "visibleInDetail": false,
                            "visibleInList": false
                        },
                        {
                            "commonFieldKey": "",
                            "key": "balance_kind",
                            "label": "balance_kind",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic",
                            "sourceColumn": "balance_kind",
                            "type": "text",
                            "visibleInDetail": false,
                            "visibleInList": false
                        },
                        {
                            "commonFieldKey": "",
                            "key": "client_key",
                            "label": "client_key",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic",
                            "sourceColumn": "client_key",
                            "type": "text",
                            "visibleInDetail": false,
                            "visibleInList": false
                        },
                        {
                            "commonFieldKey": "",
                            "key": "client",
                            "label": "Client",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic",
                            "sourceColumn": "client",
                            "type": "text",
                            "visibleInDetail": true,
                            "visibleInList": true
                        },
                        {
                            "commonFieldKey": "",
                            "key": "moneda",
                            "label": "Monedă",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic",
                            "sourceColumn": "moneda",
                            "type": "text",
                            "visibleInDetail": true,
                            "visibleInList": true
                        },
                        {
                            "commonFieldKey": "",
                            "key": "situatie",
                            "label": "Sens sold",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic",
                            "sourceColumn": "situatie",
                            "type": "text",
                            "visibleInDetail": true,
                            "visibleInList": false
                        },
                        {
                            "commonFieldKey": "",
                            "key": "sold",
                            "label": "Sold actual",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic",
                            "sourceColumn": "sold",
                            "type": "number",
                            "visibleInDetail": true,
                            "visibleInList": true
                        },
                        {
                            "commonFieldKey": "",
                            "key": "facturi",
                            "label": "Facturi",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic",
                            "sourceColumn": "facturi",
                            "type": "number",
                            "visibleInDetail": true,
                            "visibleInList": true
                        },
                        {
                            "commonFieldKey": "",
                            "key": "prima_factura",
                            "label": "Prima factură emisă",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic",
                            "sourceColumn": "prima_factura",
                            "type": "date",
                            "visibleInDetail": true,
                            "visibleInList": false
                        },
                        {
                            "commonFieldKey": "",
                            "key": "ultima_factura",
                            "label": "Ultima factură emisă",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic",
                            "sourceColumn": "ultima_factura",
                            "type": "date",
                            "visibleInDetail": true,
                            "visibleInList": false
                        }
                    ],
                    "maxRows": 10000,
                    "name": "Clienții scadenței",
                    "primaryKey": "row_id",
                    "queryParameters": [
                        {
                            "constantValue": "",
                            "dayOffset": 0,
                            "fieldKey": "due_key",
                            "id": "15326BEE-B66C-5F69-B2D8-BEECD18AD031",
                            "name": "due_key",
                            "source": "parentField",
                            "type": "text"
                        },
                        {
                            "constantValue": "",
                            "dayOffset": 0,
                            "fieldKey": "currency_key",
                            "id": "FC31645E-2A4D-52FB-A224-AA99C567C533",
                            "name": "currency_key",
                            "source": "parentField",
                            "type": "text"
                        },
                        {
                            "constantValue": "",
                            "dayOffset": 0,
                            "fieldKey": "balance_kind",
                            "id": "2D11999F-5D73-5130-8C04-325867C9DC23",
                            "name": "balance_kind",
                            "source": "parentField",
                            "type": "text"
                        }
                    ],
                    "refreshPolicy": {
                        "enabled": false,
                        "intervalMinutes": 60
                    },
                    "rootArrayPath": "",
                    "rowLimitEnabled": true,
                    "searchKeys": [
                        "client",
                        "moneda",
                        "situatie",
                        "sold",
                        "facturi",
                        "prima_factura",
                        "ultima_factura"
                    ],
                    "sourceID": "9F0F4F34-DB86-5D9F-9825-405BD9271367",
                    "sqlQuery": "SELECT CONCAT(CONCAT(b.due_key,'|',b.currency_key,'|',b.balance_kind),'|',b.id_client) AS row_id,CONCAT(b.due_key,'|',b.currency_key,'|',b.balance_kind) AS due_group_key,\n b.due_key,b.currency_key,b.balance_kind,b.id_client AS client_key,MAX(b.den_client) AS client,MAX(b.moneda) AS moneda,\n CASE WHEN b.balance_kind='RECEIVABLE' THEN N'De încasat' ELSE N'Sold negativ — de analizat separat' END AS situatie,SUM(b.sold) AS sold,COUNT_BIG(*) AS facturi,MIN(b.data_document) AS prima_factura,MAX(b.data_document) AS ultima_factura\nFROM (SELECT h.id_document,h.id_client,h.den_client,h.numar_document,h.serie_document,h.data_document,h.data_lim,\n h.den_gestiune,h.den_agent,h.moneda,h.valoare_cu_tva,h.valoare_incasata,h.sold,\n CASE WHEN h.data_lim IS NULL THEN 'UNKNOWN' WHEN h.data_lim<h.data_document THEN 'INVALID' ELSE CONVERT(varchar(10),h.data_lim,23) END AS due_key,\n COALESCE(NULLIF(RTRIM(h.moneda),''),'UNKNOWN') AS currency_key,\n CASE WHEN h.sold>0 THEN 'RECEIVABLE' ELSE 'CREDIT' END AS balance_kind\nFROM dbo.accesex_facturi_clienti h WHERE h.validare=1 AND h.anulare=0 AND h.sold<>0) b WHERE b.due_key=:due_key AND b.currency_key=:currency_key AND b.balance_kind=:balance_kind GROUP BY b.due_key,b.currency_key,b.balance_kind,b.id_client",
                    "tableName": ""
                },
                {
                    "cacheMode": "live",
                    "calculatedFields": [],
                    "customQueryIntegrationName": "NexusERP",
                    "endpointPath": "",
                    "fetchSortRules": [
                        {
                            "direction": "ascending",
                            "id": "006D984E-E06D-5B4D-9AE2-DFC6209139A1",
                            "key": "den_client",
                            "type": "text"
                        },
                        {
                            "direction": "ascending",
                            "id": "A3C766ED-F630-572E-9A1A-F32A4B99ACA4",
                            "key": "row_id",
                            "type": "text"
                        }
                    ],
                    "id": "C72C408A-BA81-5CDC-B81D-637E6671D49E",
                    "mappings": [
                        {
                            "commonFieldKey": "",
                            "key": "row_id",
                            "label": "row_id",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic",
                            "sourceColumn": "row_id",
                            "type": "text",
                            "visibleInDetail": false,
                            "visibleInList": false
                        },
                        {
                            "commonFieldKey": "",
                            "key": "client_group_key",
                            "label": "client_group_key",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic",
                            "sourceColumn": "client_group_key",
                            "type": "text",
                            "visibleInDetail": false,
                            "visibleInList": false
                        },
                        {
                            "commonFieldKey": "",
                            "key": "den_client",
                            "label": "Client",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic",
                            "sourceColumn": "den_client",
                            "type": "text",
                            "visibleInDetail": true,
                            "visibleInList": true
                        },
                        {
                            "commonFieldKey": "",
                            "key": "numar_document",
                            "label": "Factură nr.",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic",
                            "sourceColumn": "numar_document",
                            "type": "text",
                            "visibleInDetail": true,
                            "visibleInList": true
                        },
                        {
                            "commonFieldKey": "",
                            "key": "serie_document",
                            "label": "Serie",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic",
                            "sourceColumn": "serie_document",
                            "type": "text",
                            "visibleInDetail": true,
                            "visibleInList": false
                        },
                        {
                            "commonFieldKey": "",
                            "key": "data_document",
                            "label": "Emisă la",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic",
                            "sourceColumn": "data_document",
                            "type": "date",
                            "visibleInDetail": true,
                            "visibleInList": true
                        },
                        {
                            "commonFieldKey": "",
                            "key": "data_lim",
                            "label": "Scadență",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic",
                            "sourceColumn": "data_lim",
                            "type": "date",
                            "visibleInDetail": true,
                            "visibleInList": true
                        },
                        {
                            "commonFieldKey": "",
                            "key": "den_gestiune",
                            "label": "Gestiune",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic",
                            "sourceColumn": "den_gestiune",
                            "type": "text",
                            "visibleInDetail": true,
                            "visibleInList": false
                        },
                        {
                            "commonFieldKey": "",
                            "key": "den_agent",
                            "label": "Agent",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic",
                            "sourceColumn": "den_agent",
                            "type": "text",
                            "visibleInDetail": true,
                            "visibleInList": false
                        },
                        {
                            "commonFieldKey": "",
                            "key": "moneda",
                            "label": "Moneda documentului",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic",
                            "sourceColumn": "moneda",
                            "type": "text",
                            "visibleInDetail": true,
                            "visibleInList": true
                        },
                        {
                            "commonFieldKey": "",
                            "key": "valoare_cu_tva",
                            "label": "Valoare cu TVA",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic",
                            "sourceColumn": "valoare_cu_tva",
                            "type": "number",
                            "visibleInDetail": true,
                            "visibleInList": true
                        },
                        {
                            "commonFieldKey": "",
                            "key": "valoare_incasata",
                            "label": "Încasat în Nexus",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic",
                            "sourceColumn": "valoare_incasata",
                            "type": "number",
                            "visibleInDetail": true,
                            "visibleInList": false
                        },
                        {
                            "commonFieldKey": "",
                            "key": "sold",
                            "label": "Sold actual",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic",
                            "sourceColumn": "sold",
                            "type": "number",
                            "visibleInDetail": true,
                            "visibleInList": true
                        },
                        {
                            "commonFieldKey": "",
                            "key": "sold_la_data",
                            "label": "Sold citit la",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic",
                            "sourceColumn": "sold_la_data",
                            "type": "date",
                            "visibleInDetail": true,
                            "visibleInList": false
                        },
                        {
                            "commonFieldKey": "",
                            "key": "zile_fata_de_scadenta",
                            "label": "Zile după scadență / înainte dacă negativ",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic",
                            "sourceColumn": "zile_fata_de_scadenta",
                            "type": "number",
                            "visibleInDetail": true,
                            "visibleInList": false
                        }
                    ],
                    "maxRows": 10000,
                    "name": "Facturile clientului la scadență",
                    "primaryKey": "row_id",
                    "queryParameters": [
                        {
                            "constantValue": "",
                            "dayOffset": 0,
                            "fieldKey": "due_key",
                            "id": "15326BEE-B66C-5F69-B2D8-BEECD18AD031",
                            "name": "due_key",
                            "source": "parentField",
                            "type": "text"
                        },
                        {
                            "constantValue": "",
                            "dayOffset": 0,
                            "fieldKey": "currency_key",
                            "id": "FC31645E-2A4D-52FB-A224-AA99C567C533",
                            "name": "currency_key",
                            "source": "parentField",
                            "type": "text"
                        },
                        {
                            "constantValue": "",
                            "dayOffset": 0,
                            "fieldKey": "balance_kind",
                            "id": "2D11999F-5D73-5130-8C04-325867C9DC23",
                            "name": "balance_kind",
                            "source": "parentField",
                            "type": "text"
                        },
                        {
                            "constantValue": "",
                            "dayOffset": 0,
                            "fieldKey": "client_key",
                            "id": "3323EEAE-C97F-50CC-8C0B-F91DFEDC01C6",
                            "name": "client_key",
                            "source": "parentField",
                            "type": "text"
                        }
                    ],
                    "refreshPolicy": {
                        "enabled": false,
                        "intervalMinutes": 60
                    },
                    "rootArrayPath": "",
                    "rowLimitEnabled": true,
                    "searchKeys": [
                        "den_client",
                        "numar_document",
                        "serie_document",
                        "data_document",
                        "data_lim",
                        "den_gestiune",
                        "den_agent",
                        "moneda",
                        "valoare_cu_tva",
                        "valoare_incasata",
                        "sold",
                        "sold_la_data",
                        "zile_fata_de_scadenta"
                    ],
                    "sourceID": "9F0F4F34-DB86-5D9F-9825-405BD9271367",
                    "sqlQuery": "SELECT b.id_document AS row_id,CONCAT(CONCAT(b.due_key,'|',b.currency_key,'|',b.balance_kind),'|',b.id_client) AS client_group_key,\n b.den_client,b.numar_document,b.serie_document,b.data_document,b.data_lim,b.den_gestiune,b.den_agent,b.moneda,\n b.valoare_cu_tva,b.valoare_incasata,b.sold,CAST(GETDATE() AS date) AS sold_la_data,\n CASE WHEN b.due_key IN ('UNKNOWN','INVALID') THEN NULL ELSE DATEDIFF(day,CAST(b.data_lim AS date),CAST(GETDATE() AS date)) END AS zile_fata_de_scadenta\nFROM (SELECT h.id_document,h.id_client,h.den_client,h.numar_document,h.serie_document,h.data_document,h.data_lim,\n h.den_gestiune,h.den_agent,h.moneda,h.valoare_cu_tva,h.valoare_incasata,h.sold,\n CASE WHEN h.data_lim IS NULL THEN 'UNKNOWN' WHEN h.data_lim<h.data_document THEN 'INVALID' ELSE CONVERT(varchar(10),h.data_lim,23) END AS due_key,\n COALESCE(NULLIF(RTRIM(h.moneda),''),'UNKNOWN') AS currency_key,\n CASE WHEN h.sold>0 THEN 'RECEIVABLE' ELSE 'CREDIT' END AS balance_kind\nFROM dbo.accesex_facturi_clienti h WHERE h.validare=1 AND h.anulare=0 AND h.sold<>0) b WHERE b.due_key=:due_key AND b.currency_key=:currency_key AND b.balance_kind=:balance_kind AND b.id_client=:client_key",
                    "tableName": ""
                },
                {
                    "cacheMode": "live",
                    "calculatedFields": [],
                    "customQueryIntegrationName": "NexusERP",
                    "endpointPath": "",
                    "fetchSortRules": [
                        {
                            "direction": "ascending",
                            "id": "C0662EC4-4556-524F-9B67-210C0C480C6C",
                            "key": "den_produs",
                            "type": "text"
                        },
                        {
                            "direction": "ascending",
                            "id": "A3C766ED-F630-572E-9A1A-F32A4B99ACA4",
                            "key": "row_id",
                            "type": "text"
                        }
                    ],
                    "id": "F333E8E4-C1C1-5162-9FD5-5D83400F1E22",
                    "mappings": [
                        {
                            "commonFieldKey": "",
                            "key": "row_id",
                            "label": "row_id",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic",
                            "sourceColumn": "row_id",
                            "type": "text",
                            "visibleInDetail": false,
                            "visibleInList": false
                        },
                        {
                            "commonFieldKey": "",
                            "key": "id_document",
                            "label": "id_document",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic",
                            "sourceColumn": "id_document",
                            "type": "text",
                            "visibleInDetail": false,
                            "visibleInList": false
                        },
                        {
                            "commonFieldKey": "",
                            "key": "den_produs",
                            "label": "Produs",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic",
                            "sourceColumn": "den_produs",
                            "type": "text",
                            "visibleInDetail": true,
                            "visibleInList": true
                        },
                        {
                            "commonFieldKey": "",
                            "key": "cod_produs",
                            "label": "Cod produs",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic",
                            "sourceColumn": "cod_produs",
                            "type": "text",
                            "visibleInDetail": true,
                            "visibleInList": true
                        },
                        {
                            "commonFieldKey": "",
                            "key": "cantitate",
                            "label": "Cantitate",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic",
                            "sourceColumn": "cantitate",
                            "type": "number",
                            "visibleInDetail": true,
                            "visibleInList": true
                        },
                        {
                            "commonFieldKey": "",
                            "key": "pret_vanzare",
                            "label": "Preț vânzare fără TVA",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic",
                            "sourceColumn": "pret_vanzare",
                            "type": "number",
                            "visibleInDetail": true,
                            "visibleInList": true
                        },
                        {
                            "commonFieldKey": "",
                            "key": "pret_vanzare_tva",
                            "label": "Preț vânzare cu TVA",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic",
                            "sourceColumn": "pret_vanzare_tva",
                            "type": "number",
                            "visibleInDetail": true,
                            "visibleInList": true
                        },
                        {
                            "commonFieldKey": "",
                            "key": "cont_produs",
                            "label": "Cont produs",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic",
                            "sourceColumn": "cont_produs",
                            "type": "text",
                            "visibleInDetail": true,
                            "visibleInList": false
                        },
                        {
                            "commonFieldKey": "",
                            "key": "serie_produs",
                            "label": "Serie / lot",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic",
                            "sourceColumn": "serie_produs",
                            "type": "text",
                            "visibleInDetail": true,
                            "visibleInList": false
                        },
                        {
                            "commonFieldKey": "",
                            "key": "cota_tva_ies",
                            "label": "Cotă TVA (%)",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic",
                            "sourceColumn": "cota_tva_ies",
                            "type": "number",
                            "visibleInDetail": true,
                            "visibleInList": false
                        }
                    ],
                    "maxRows": 10000,
                    "name": "Produsele facturii",
                    "primaryKey": "row_id",
                    "queryParameters": [
                        {
                            "constantValue": "",
                            "dayOffset": 0,
                            "fieldKey": "row_id",
                            "id": "22D36D5B-3625-5548-AF9C-4E3C5B2A8772",
                            "name": "invoice_id",
                            "source": "parentField",
                            "type": "text"
                        }
                    ],
                    "refreshPolicy": {
                        "enabled": false,
                        "intervalMinutes": 60
                    },
                    "rootArrayPath": "",
                    "rowLimitEnabled": true,
                    "searchKeys": [
                        "den_produs",
                        "cod_produs",
                        "cantitate",
                        "pret_vanzare",
                        "pret_vanzare_tva",
                        "cont_produs",
                        "serie_produs",
                        "cota_tva_ies"
                    ],
                    "sourceID": "9F0F4F34-DB86-5D9F-9825-405BD9271367",
                    "sqlQuery": "SELECT l.id_intern AS row_id,l.id_document,\n l.den_produs,l.cod_produs,l.cantitate,l.pret_vanzare,l.pret_vanzare_tva,l.cont_produs,l.serie_produs,l.cota_tva_ies\nFROM dbo.accesex_facturi_clienti_lin l WHERE l.id_document=:invoice_id",
                    "tableName": ""
                },
                {
                    "cacheMode": "live",
                    "calculatedFields": [],
                    "customQueryIntegrationName": "NexusERP",
                    "endpointPath": "",
                    "fetchSortRules": [
                        {
                            "direction": "descending",
                            "id": "05D45B02-C59C-57FC-B65A-2067309AC67E",
                            "key": "data_document",
                            "type": "date"
                        },
                        {
                            "direction": "ascending",
                            "id": "A3C766ED-F630-572E-9A1A-F32A4B99ACA4",
                            "key": "row_id",
                            "type": "text"
                        }
                    ],
                    "id": "D801B097-0E2E-5025-AAAE-06BFA36579FD",
                    "mappings": [
                        {
                            "commonFieldKey": "",
                            "key": "row_id",
                            "label": "row_id",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic",
                            "sourceColumn": "row_id",
                            "type": "text",
                            "visibleInDetail": false,
                            "visibleInList": false
                        },
                        {
                            "commonFieldKey": "",
                            "key": "invoice_id",
                            "label": "invoice_id",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic",
                            "sourceColumn": "invoice_id",
                            "type": "text",
                            "visibleInDetail": false,
                            "visibleInList": false
                        },
                        {
                            "commonFieldKey": "",
                            "key": "tip_financiar",
                            "label": "Tip financiar Nexus",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic",
                            "sourceColumn": "tip_financiar",
                            "type": "text",
                            "visibleInDetail": true,
                            "visibleInList": false
                        },
                        {
                            "commonFieldKey": "",
                            "key": "document",
                            "label": "Document încasare",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic",
                            "sourceColumn": "document",
                            "type": "text",
                            "visibleInDetail": true,
                            "visibleInList": true
                        },
                        {
                            "commonFieldKey": "",
                            "key": "data_document",
                            "label": "Data documentului",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic",
                            "sourceColumn": "data_document",
                            "type": "date",
                            "visibleInDetail": true,
                            "visibleInList": true
                        },
                        {
                            "commonFieldKey": "",
                            "key": "data_decont",
                            "label": "Data decontului",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic",
                            "sourceColumn": "data_decont",
                            "type": "date",
                            "visibleInDetail": true,
                            "visibleInList": false
                        },
                        {
                            "commonFieldKey": "",
                            "key": "tip_document",
                            "label": "Tip document",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic",
                            "sourceColumn": "tip_document",
                            "type": "text",
                            "visibleInDetail": true,
                            "visibleInList": true
                        },
                        {
                            "commonFieldKey": "",
                            "key": "moneda",
                            "label": "Moneda documentului financiar",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic",
                            "sourceColumn": "moneda",
                            "type": "text",
                            "visibleInDetail": true,
                            "visibleInList": true
                        },
                        {
                            "commonFieldKey": "",
                            "key": "cont_banca",
                            "label": "Cont financiar",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic",
                            "sourceColumn": "cont_banca",
                            "type": "text",
                            "visibleInDetail": true,
                            "visibleInList": false
                        },
                        {
                            "commonFieldKey": "",
                            "key": "explicatii",
                            "label": "Explicații",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic",
                            "sourceColumn": "explicatii",
                            "type": "text",
                            "visibleInDetail": true,
                            "visibleInList": false
                        },
                        {
                            "commonFieldKey": "",
                            "key": "suma_repartizata",
                            "label": "Sumă repartizată din Nexus",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic",
                            "sourceColumn": "suma_repartizata",
                            "type": "number",
                            "visibleInDetail": true,
                            "visibleInList": true
                        },
                        {
                            "commonFieldKey": "",
                            "key": "nr_repartizari",
                            "label": "Înregistrări de repartizare",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic",
                            "sourceColumn": "nr_repartizari",
                            "type": "number",
                            "visibleInDetail": true,
                            "visibleInList": false
                        }
                    ],
                    "maxRows": 10000,
                    "name": "Încasări repartizate",
                    "primaryKey": "row_id",
                    "queryParameters": [
                        {
                            "constantValue": "",
                            "dayOffset": 0,
                            "fieldKey": "row_id",
                            "id": "4A496874-D891-58E8-90EE-E44D484FBE93",
                            "name": "invoice_id",
                            "source": "parentField",
                            "type": "text"
                        }
                    ],
                    "refreshPolicy": {
                        "enabled": false,
                        "intervalMinutes": 60
                    },
                    "rootArrayPath": "",
                    "rowLimitEnabled": true,
                    "searchKeys": [
                        "tip_financiar",
                        "document",
                        "data_document",
                        "data_decont",
                        "tip_document",
                        "moneda",
                        "cont_banca",
                        "explicatii",
                        "suma_repartizata",
                        "nr_repartizari"
                    ],
                    "sourceID": "9F0F4F34-DB86-5D9F-9825-405BD9271367",
                    "sqlQuery": "SELECT CONCAT(RTRIM(l.tip_financiar),'|',RTRIM(l.id_document)) AS row_id,\n RTRIM(l.id_factura) AS invoice_id,RTRIM(l.tip_financiar) AS tip_financiar,\n MAX(h.document) AS document,MAX(h.data_document) AS data_document,MAX(h.data_decont) AS data_decont,\n MAX(h.tip_document) AS tip_document,MAX(h.moneda) AS moneda,MAX(h.cont) AS cont_banca,\n MAX(h.explicatii) AS explicatii,SUM(l.suma_repartizata) AS suma_repartizata,COUNT_BIG(*) AS nr_repartizari\nFROM dbo.accesex_incasari_plati_lin_view l\nJOIN (SELECT tip_financiar,id_document,MAX(CONCAT(RTRIM(serie_document),' ',RTRIM(numar_document))) AS document,\n MAX(data_document) AS data_document,MAX(data_decont) AS data_decont,MAX(tip_document) AS tip_document,\n CASE WHEN COUNT(DISTINCT NULLIF(RTRIM(moneda),''))=1 AND COUNT(NULLIF(RTRIM(moneda),''))=COUNT(*) THEN MAX(RTRIM(moneda)) ELSE N'Monedă de verificat' END AS moneda,\n MAX(RTRIM(cont)) AS cont,MAX(explicatii) AS explicatii\n FROM dbo.accesex_incasari_plati_view WHERE validare=1 GROUP BY tip_financiar,id_document) h\n ON h.tip_financiar=l.tip_financiar AND h.id_document=l.id_document\nWHERE l.tip_factura='CLI' AND l.id_factura=:invoice_id\nGROUP BY l.tip_financiar,l.id_document,l.id_factura",
                    "tableName": ""
                }
            ],
            "pages": [
                {
                    "actions": [
                        {
                            "id": "08E16B7D-064F-54D4-B274-5CCD79B4C87D",
                            "kind": "showRelated",
                            "relatedInitiallyExpanded": false,
                            "relatedPresentation": "separate",
                            "relatedPreviewLimit": 12,
                            "relatedRowStyle": "cards",
                            "relatedShowsCount": true,
                            "relationID": "B654047F-F99F-55C9-ABBD-6F453B9ACA71",
                            "systemImage": "list.bullet.rectangle",
                            "targetDatasetID": "D10616D6-DE5F-58D8-BDAE-C68D5112DB31",
                            "title": "Clienții acestei scadențe",
                            "urlKey": ""
                        }
                    ],
                    "badgeKey": "sold",
                    "cardEnrichments": [],
                    "cardFieldLayout": [
                        {
                            "detailGroup": "",
                            "detailRole": "information",
                            "isVisible": true,
                            "key": "interval_scadenta",
                            "label": "Interval",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic"
                        },
                        {
                            "detailGroup": "",
                            "detailRole": "information",
                            "isVisible": true,
                            "key": "moneda",
                            "label": "Monedă",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic"
                        },
                        {
                            "detailGroup": "",
                            "detailRole": "information",
                            "isVisible": true,
                            "key": "facturi",
                            "label": "Facturi",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic"
                        },
                        {
                            "detailGroup": "",
                            "detailRole": "information",
                            "isVisible": true,
                            "key": "clienti",
                            "label": "Clienți",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic"
                        }
                    ],
                    "datasetID": "5111F4A7-35A6-57C1-B9E9-34BF4CE7A073",
                    "dateFilterKey": "",
                    "dateFilterLastDays": 7,
                    "dateFilterPreset": "none",
                    "detailFieldLayout": [
                        {
                            "detailGroup": "",
                            "detailRole": "information",
                            "isVisible": true,
                            "key": "interval_scadenta",
                            "label": "Interval",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic"
                        },
                        {
                            "detailGroup": "",
                            "detailRole": "information",
                            "isVisible": true,
                            "key": "moneda",
                            "label": "Monedă",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic"
                        },
                        {
                            "detailGroup": "",
                            "detailRole": "information",
                            "isVisible": true,
                            "key": "facturi",
                            "label": "Facturi",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic"
                        },
                        {
                            "detailGroup": "",
                            "detailRole": "information",
                            "isVisible": true,
                            "key": "clienti",
                            "label": "Clienți",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic"
                        },
                        {
                            "detailGroup": "",
                            "detailRole": "information",
                            "isVisible": true,
                            "key": "sold_la_data",
                            "label": "Sold citit la data",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic"
                        }
                    ],
                    "detailLiveRefreshSeconds": 0,
                    "fixedFilters": [],
                    "icon": "calendar",
                    "id": "4FEF6092-4D87-50DA-ADE7-7F4C7E815A9A",
                    "openFilters": [
                        {
                            "id": "7FEC41C0-960D-571F-ABD5-8EE9C95F88D4",
                            "includeAllOption": true,
                            "key": "interval_scadenta",
                            "title": "Scadențe",
                            "type": "text"
                        },
                        {
                            "id": "5C730F66-8441-5962-9988-3A15A820678A",
                            "includeAllOption": true,
                            "key": "moneda",
                            "title": "Moneda",
                            "type": "text"
                        },
                        {
                            "id": "5096B6A9-8824-57FE-BD5A-7B197AEB1310",
                            "includeAllOption": true,
                            "key": "situatie",
                            "title": "De încasat / sold negativ",
                            "type": "text"
                        }
                    ],
                    "pageSize": 100,
                    "requiresOpeningFilterSelection": true,
                    "showOnHome": true,
                    "sortRules": [
                        {
                            "direction": "ascending",
                            "id": "FAD6A6F9-7AB8-5E6B-A606-B874B51431FC",
                            "key": "scadenta",
                            "type": "text"
                        },
                        {
                            "direction": "ascending",
                            "id": "A3C766ED-F630-572E-9A1A-F32A4B99ACA4",
                            "key": "row_id",
                            "type": "text"
                        }
                    ],
                    "subtitle": "",
                    "subtitleKey": "situatie",
                    "systemImage": "person.2",
                    "title": "Scadențe de urmărit",
                    "titleKey": "scadenta"
                },
                {
                    "actions": [
                        {
                            "id": "49405ECD-D139-56A5-A728-B88159D45A93",
                            "kind": "showRelated",
                            "relatedInitiallyExpanded": false,
                            "relatedPresentation": "separate",
                            "relatedPreviewLimit": 12,
                            "relatedRowStyle": "cards",
                            "relatedShowsCount": true,
                            "relationID": "60EFD37B-C254-598B-A695-7C0A81D47EE7",
                            "systemImage": "list.bullet.rectangle",
                            "targetDatasetID": "C72C408A-BA81-5CDC-B81D-637E6671D49E",
                            "title": "Facturile acestui client",
                            "urlKey": ""
                        }
                    ],
                    "badgeKey": "sold",
                    "cardEnrichments": [],
                    "cardFieldLayout": [
                        {
                            "detailGroup": "",
                            "detailRole": "information",
                            "isVisible": true,
                            "key": "facturi",
                            "label": "Facturi",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic"
                        }
                    ],
                    "datasetID": "D10616D6-DE5F-58D8-BDAE-C68D5112DB31",
                    "dateFilterKey": "",
                    "dateFilterLastDays": 7,
                    "dateFilterPreset": "none",
                    "detailFieldLayout": [
                        {
                            "detailGroup": "",
                            "detailRole": "information",
                            "isVisible": true,
                            "key": "situatie",
                            "label": "Sens sold",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic"
                        },
                        {
                            "detailGroup": "",
                            "detailRole": "information",
                            "isVisible": true,
                            "key": "facturi",
                            "label": "Facturi",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic"
                        },
                        {
                            "detailGroup": "",
                            "detailRole": "information",
                            "isVisible": true,
                            "key": "prima_factura",
                            "label": "Prima factură emisă",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic"
                        },
                        {
                            "detailGroup": "",
                            "detailRole": "information",
                            "isVisible": true,
                            "key": "ultima_factura",
                            "label": "Ultima factură emisă",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic"
                        }
                    ],
                    "detailLiveRefreshSeconds": 0,
                    "fixedFilters": [],
                    "id": "2BAE2E68-798D-59D4-A82E-4CCA30A13855",
                    "openFilters": [],
                    "pageSize": 100,
                    "requiresOpeningFilterSelection": false,
                    "showOnHome": false,
                    "sortRules": [
                        {
                            "direction": "descending",
                            "id": "D37CBBA4-5283-5FC5-8D03-5D3649256202",
                            "key": "sold",
                            "type": "number"
                        },
                        {
                            "direction": "ascending",
                            "id": "A3C766ED-F630-572E-9A1A-F32A4B99ACA4",
                            "key": "row_id",
                            "type": "text"
                        }
                    ],
                    "subtitle": "",
                    "subtitleKey": "moneda",
                    "systemImage": "doc.text",
                    "title": "Clienții scadenței",
                    "titleKey": "client"
                },
                {
                    "actions": [
                        {
                            "id": "DD572EBC-ADDE-53A7-AB9E-2F279BED75F8",
                            "kind": "showRelated",
                            "relatedInitiallyExpanded": false,
                            "relatedPresentation": "separate",
                            "relatedPreviewLimit": 12,
                            "relatedRowStyle": "cards",
                            "relatedShowsCount": true,
                            "relationID": "AEC96430-6395-5E8F-9868-C39D8A733CF1",
                            "systemImage": "list.bullet.rectangle",
                            "targetDatasetID": "F333E8E4-C1C1-5162-9FD5-5D83400F1E22",
                            "title": "Produsele facturii",
                            "urlKey": ""
                        },
                        {
                            "id": "3C780421-8B52-51F5-A622-5FDCBEE34365",
                            "kind": "showRelated",
                            "relatedInitiallyExpanded": false,
                            "relatedPresentation": "separate",
                            "relatedPreviewLimit": 12,
                            "relatedRowStyle": "cards",
                            "relatedShowsCount": true,
                            "relationID": "31442B4E-C0C2-5B2A-9F0B-8C396C84E1E1",
                            "systemImage": "list.bullet.rectangle",
                            "targetDatasetID": "D801B097-0E2E-5025-AAAE-06BFA36579FD",
                            "title": "Încasări repartizate",
                            "urlKey": ""
                        }
                    ],
                    "badgeKey": "sold",
                    "cardEnrichments": [],
                    "cardFieldLayout": [
                        {
                            "detailGroup": "",
                            "detailRole": "information",
                            "isVisible": true,
                            "key": "data_document",
                            "label": "Emisă la",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic"
                        },
                        {
                            "detailGroup": "",
                            "detailRole": "information",
                            "isVisible": true,
                            "key": "data_lim",
                            "label": "Scadență",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic"
                        },
                        {
                            "detailGroup": "",
                            "detailRole": "information",
                            "isVisible": true,
                            "key": "moneda",
                            "label": "Moneda documentului",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic"
                        },
                        {
                            "detailGroup": "",
                            "detailRole": "information",
                            "isVisible": true,
                            "key": "valoare_cu_tva",
                            "label": "Valoare cu TVA",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic"
                        }
                    ],
                    "datasetID": "C72C408A-BA81-5CDC-B81D-637E6671D49E",
                    "dateFilterKey": "",
                    "dateFilterLastDays": 7,
                    "dateFilterPreset": "none",
                    "detailFieldLayout": [
                        {
                            "detailGroup": "",
                            "detailRole": "information",
                            "isVisible": true,
                            "key": "serie_document",
                            "label": "Serie",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic"
                        },
                        {
                            "detailGroup": "",
                            "detailRole": "information",
                            "isVisible": true,
                            "key": "data_document",
                            "label": "Emisă la",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic"
                        },
                        {
                            "detailGroup": "",
                            "detailRole": "information",
                            "isVisible": true,
                            "key": "data_lim",
                            "label": "Scadență",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic"
                        },
                        {
                            "detailGroup": "",
                            "detailRole": "information",
                            "isVisible": true,
                            "key": "den_gestiune",
                            "label": "Gestiune",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic"
                        },
                        {
                            "detailGroup": "",
                            "detailRole": "information",
                            "isVisible": true,
                            "key": "den_agent",
                            "label": "Agent",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic"
                        },
                        {
                            "detailGroup": "",
                            "detailRole": "information",
                            "isVisible": true,
                            "key": "moneda",
                            "label": "Moneda documentului",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic"
                        },
                        {
                            "detailGroup": "",
                            "detailRole": "information",
                            "isVisible": true,
                            "key": "valoare_cu_tva",
                            "label": "Valoare cu TVA",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic"
                        },
                        {
                            "detailGroup": "",
                            "detailRole": "information",
                            "isVisible": true,
                            "key": "valoare_incasata",
                            "label": "Încasat în Nexus",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic"
                        },
                        {
                            "detailGroup": "",
                            "detailRole": "information",
                            "isVisible": true,
                            "key": "sold_la_data",
                            "label": "Sold citit la",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic"
                        },
                        {
                            "detailGroup": "",
                            "detailRole": "information",
                            "isVisible": true,
                            "key": "zile_fata_de_scadenta",
                            "label": "Zile după scadență / înainte dacă negativ",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic"
                        }
                    ],
                    "detailLiveRefreshSeconds": 0,
                    "fixedFilters": [],
                    "id": "0EC61780-6F63-5110-928B-2D7D0FB5DF65",
                    "openFilters": [],
                    "pageSize": 100,
                    "requiresOpeningFilterSelection": false,
                    "showOnHome": false,
                    "sortRules": [
                        {
                            "direction": "ascending",
                            "id": "006D984E-E06D-5B4D-9AE2-DFC6209139A1",
                            "key": "den_client",
                            "type": "text"
                        },
                        {
                            "direction": "ascending",
                            "id": "A3C766ED-F630-572E-9A1A-F32A4B99ACA4",
                            "key": "row_id",
                            "type": "text"
                        }
                    ],
                    "subtitle": "",
                    "subtitleKey": "numar_document",
                    "systemImage": "doc.text",
                    "title": "Facturile clientului la scadență",
                    "titleKey": "den_client"
                },
                {
                    "actions": [],
                    "badgeKey": "cantitate",
                    "cardEnrichments": [],
                    "cardFieldLayout": [
                        {
                            "detailGroup": "",
                            "detailRole": "information",
                            "isVisible": true,
                            "key": "pret_vanzare",
                            "label": "Preț vânzare fără TVA",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic"
                        },
                        {
                            "detailGroup": "",
                            "detailRole": "information",
                            "isVisible": true,
                            "key": "pret_vanzare_tva",
                            "label": "Preț vânzare cu TVA",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic"
                        }
                    ],
                    "datasetID": "F333E8E4-C1C1-5162-9FD5-5D83400F1E22",
                    "dateFilterKey": "",
                    "dateFilterLastDays": 7,
                    "dateFilterPreset": "none",
                    "detailFieldLayout": [
                        {
                            "detailGroup": "",
                            "detailRole": "information",
                            "isVisible": true,
                            "key": "pret_vanzare",
                            "label": "Preț vânzare fără TVA",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic"
                        },
                        {
                            "detailGroup": "",
                            "detailRole": "information",
                            "isVisible": true,
                            "key": "pret_vanzare_tva",
                            "label": "Preț vânzare cu TVA",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic"
                        },
                        {
                            "detailGroup": "",
                            "detailRole": "information",
                            "isVisible": true,
                            "key": "cont_produs",
                            "label": "Cont produs",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic"
                        },
                        {
                            "detailGroup": "",
                            "detailRole": "information",
                            "isVisible": true,
                            "key": "serie_produs",
                            "label": "Serie / lot",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic"
                        },
                        {
                            "detailGroup": "",
                            "detailRole": "information",
                            "isVisible": true,
                            "key": "cota_tva_ies",
                            "label": "Cotă TVA (%)",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic"
                        }
                    ],
                    "detailLiveRefreshSeconds": 0,
                    "fixedFilters": [],
                    "id": "0B49E846-2B25-5A90-A548-8550FAB206C2",
                    "openFilters": [],
                    "pageSize": 100,
                    "requiresOpeningFilterSelection": false,
                    "showOnHome": false,
                    "sortRules": [
                        {
                            "direction": "ascending",
                            "id": "C0662EC4-4556-524F-9B67-210C0C480C6C",
                            "key": "den_produs",
                            "type": "text"
                        },
                        {
                            "direction": "ascending",
                            "id": "A3C766ED-F630-572E-9A1A-F32A4B99ACA4",
                            "key": "row_id",
                            "type": "text"
                        }
                    ],
                    "subtitle": "",
                    "subtitleKey": "cod_produs",
                    "systemImage": "doc.text",
                    "title": "Produsele facturii",
                    "titleKey": "den_produs"
                },
                {
                    "actions": [],
                    "badgeKey": "suma_repartizata",
                    "cardEnrichments": [],
                    "cardFieldLayout": [
                        {
                            "detailGroup": "",
                            "detailRole": "information",
                            "isVisible": true,
                            "key": "data_document",
                            "label": "Data documentului",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic"
                        },
                        {
                            "detailGroup": "",
                            "detailRole": "information",
                            "isVisible": true,
                            "key": "moneda",
                            "label": "Moneda documentului financiar",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic"
                        }
                    ],
                    "datasetID": "D801B097-0E2E-5025-AAAE-06BFA36579FD",
                    "dateFilterKey": "",
                    "dateFilterLastDays": 7,
                    "dateFilterPreset": "none",
                    "detailFieldLayout": [
                        {
                            "detailGroup": "",
                            "detailRole": "information",
                            "isVisible": true,
                            "key": "tip_financiar",
                            "label": "Tip financiar Nexus",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic"
                        },
                        {
                            "detailGroup": "",
                            "detailRole": "information",
                            "isVisible": true,
                            "key": "data_document",
                            "label": "Data documentului",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic"
                        },
                        {
                            "detailGroup": "",
                            "detailRole": "information",
                            "isVisible": true,
                            "key": "data_decont",
                            "label": "Data decontului",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic"
                        },
                        {
                            "detailGroup": "",
                            "detailRole": "information",
                            "isVisible": true,
                            "key": "moneda",
                            "label": "Moneda documentului financiar",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic"
                        },
                        {
                            "detailGroup": "",
                            "detailRole": "information",
                            "isVisible": true,
                            "key": "cont_banca",
                            "label": "Cont financiar",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic"
                        },
                        {
                            "detailGroup": "",
                            "detailRole": "information",
                            "isVisible": true,
                            "key": "explicatii",
                            "label": "Explicații",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic"
                        },
                        {
                            "detailGroup": "",
                            "detailRole": "information",
                            "isVisible": true,
                            "key": "nr_repartizari",
                            "label": "Înregistrări de repartizare",
                            "locationLabelKey": "",
                            "locationLongitudeKey": "",
                            "presentation": "automatic"
                        }
                    ],
                    "detailLiveRefreshSeconds": 0,
                    "fixedFilters": [],
                    "id": "75572409-E4A2-5E4D-82DB-B0AB9850C160",
                    "openFilters": [],
                    "pageSize": 100,
                    "requiresOpeningFilterSelection": false,
                    "showOnHome": false,
                    "sortRules": [
                        {
                            "direction": "descending",
                            "id": "05D45B02-C59C-57FC-B65A-2067309AC67E",
                            "key": "data_document",
                            "type": "date"
                        },
                        {
                            "direction": "ascending",
                            "id": "A3C766ED-F630-572E-9A1A-F32A4B99ACA4",
                            "key": "row_id",
                            "type": "text"
                        }
                    ],
                    "subtitle": "",
                    "subtitleKey": "tip_document",
                    "systemImage": "doc.text",
                    "title": "Încasări repartizate",
                    "titleKey": "document"
                }
            ],
            "relations": [
                {
                    "childDatasetID": "D10616D6-DE5F-58D8-BDAE-C68D5112DB31",
                    "childKey": "due_group_key",
                    "id": "B654047F-F99F-55C9-ABBD-6F453B9ACA71",
                    "name": "Clienții acestei scadențe",
                    "parentDatasetID": "5111F4A7-35A6-57C1-B9E9-34BF4CE7A073",
                    "parentKey": "row_id"
                },
                {
                    "childDatasetID": "C72C408A-BA81-5CDC-B81D-637E6671D49E",
                    "childKey": "client_group_key",
                    "id": "60EFD37B-C254-598B-A695-7C0A81D47EE7",
                    "name": "Facturile acestui client",
                    "parentDatasetID": "D10616D6-DE5F-58D8-BDAE-C68D5112DB31",
                    "parentKey": "row_id"
                },
                {
                    "childDatasetID": "F333E8E4-C1C1-5162-9FD5-5D83400F1E22",
                    "childKey": "id_document",
                    "id": "AEC96430-6395-5E8F-9868-C39D8A733CF1",
                    "name": "Produsele facturii",
                    "parentDatasetID": "C72C408A-BA81-5CDC-B81D-637E6671D49E",
                    "parentKey": "row_id"
                },
                {
                    "childDatasetID": "D801B097-0E2E-5025-AAAE-06BFA36579FD",
                    "childKey": "invoice_id",
                    "id": "31442B4E-C0C2-5B2A-9F0B-8C396C84E1E1",
                    "name": "Încasări repartizate",
                    "parentDatasetID": "C72C408A-BA81-5CDC-B81D-637E6671D49E",
                    "parentKey": "row_id"
                }
            ],
            "widgets": []
        }
    },
    "format": "cifru-configuration-package",
    "formatVersion": 1,
    "manifest": {
        "applicationName": "NexusERP",
        "configurationLanguages": [
            "ro"
        ],
        "countries": [
            "RO"
        ],
        "createdAt": "2026-09-27T10:48:16Z",
        "description": "Scadența facturilor → clienți → facturi cu sold actual → produse și încasări repartizate. Filtre la deschidere pentru restante, astăzi, următoarele 7 zile, 8–30 zile, peste 30 zile, moneda și sensul soldului. Facturile vechi încă neachitate nu dispar printr-un filtru pe emitere. Sunt incluse numai facturi validate și neanulate, cu sold nenul. Grupele păstrează moneda documentului și separă soldurile negative fără compensare automată sau ABS. Sumele sunt cele native din Nexus, fără conversii valutare. Nu aduna monede diferite. Soldul este cel actual, nu sold istoric la data scadenței. Scadențele lipsă sau anterioare emiterii apar separat pentru verificare. Este scadența facturii, nu un grafic de rate sau o promisiune de încasare. Încasările repartizate arată documentele financiare asociate, nu garantează acoperirea tuturor compensărilor/avansurilor sau decontarea bancară. Cardurile și Detaliile includ client, număr, date, agent, gestiune, valoare, încasat și rest. Sub-listele pornesc doar pentru contextul ales. Pro, live, read-only, maximum 10.000 rânduri pe nivel. Capturi DEMO, fără clienți reali. Manuale: https://www.docs.nexuserp.ro/articol/campuri-facturi-clienti/4056 ; https://www.docs.nexuserp.ro/articol/asistent-compensare-facturi-de-clienti-negativepozitive/5177 .",
        "licenseCode": "Cifru-Community-1.0",
        "minimumCifruVersion": "1.1.0",
        "minimumPlan": "pro",
        "packageID": "59834EDE-B093-5C86-BD7D-347F8156C574",
        "rootButtonCount": 1,
        "summary": "Ce ai de încasat și de la cine: scadențe → clienți → facturi → produse și repartizări, separat pe monede.",
        "tags": [
            "NexusERP",
            "Pro"
        ],
        "title": "Încasări așteptate — scadențe și clienți — Pro"
    }
}

Tags

Reviews

There are no approved reviews for this version yet.

Write a review

Sign in to review

Similar templates

From the same application, then shared tags, in the same language and country.