Patch level : 12.0 946
Files correlati : ca3.exe ca3800.msk ca3800a.rep ca3800as.rep ca3800b.rep ca3800bs.rep ca3800c.rep ca3800cs.rep Commento : Nel bilancio per commessa aggiunti report sintetici (utili per l'esportazione in excel).
This commit is contained in:
parent
4741fe0a36
commit
c1b8296f73
@ -219,7 +219,7 @@ public:
|
||||
void set_filter(const TPrint_bilancio_cms_mask& msk, const char * curr_fase = "", const char * curr_cdc = "");
|
||||
TPrint_bilancio_cms_rep(const char* rep_name, const TString& prefix, const int depth,
|
||||
const bool show_fasi, const bool show_cdc, const bool show_cms_descr, const bool show_cms_date,
|
||||
const bool sintetica);
|
||||
const bool sintetica, const bool intestazione_minima);
|
||||
};
|
||||
|
||||
bool TPrint_bilancio_cms_rep::get_usr_val(const TString& name, TVariant& var) const
|
||||
@ -246,9 +246,11 @@ void TPrint_bilancio_cms_rep::set_filter(const TPrint_bilancio_cms_mask& msk, co
|
||||
|
||||
TPrint_bilancio_cms_rep::TPrint_bilancio_cms_rep(const char* rep_name, const TString& prefix,
|
||||
const int depth, const bool show_fasi, const bool show_cdc,
|
||||
const bool show_cms_descr, const bool show_cms_date, const bool sintetica)
|
||||
:TCRPA_report(rep_name, prefix, depth, show_fasi, show_cdc, show_cms_descr, show_cms_date, sintetica)
|
||||
const bool show_cms_descr, const bool show_cms_date, const bool sintetica,
|
||||
const bool intestazione_minima)
|
||||
:TCRPA_report(rep_name, prefix, depth, show_fasi, show_cdc, show_cms_descr, show_cms_date, sintetica, intestazione_minima)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////
|
||||
@ -347,6 +349,7 @@ void TPrint_bilancio_cms::print_or_preview(const bool stampa)
|
||||
const bool group_fasi = tipostampa == 4;
|
||||
const bool show_fasi = dett_fasi && fase.empty();
|
||||
const bool sintetica = _mask->get_bool(F_STAMPA_SINTETICA);
|
||||
const bool intestazione_minima = _mask->get_bool(F_INTESTAZIONE_MINIMA);
|
||||
|
||||
//cdc
|
||||
const bool dett_cdc = (tipostampa == 2) || (tipostampa == 3);
|
||||
@ -363,7 +366,7 @@ void TPrint_bilancio_cms::print_or_preview(const bool stampa)
|
||||
path = _mask->get_report_class();
|
||||
|
||||
//crea il report in base ai parametri (tipo report,struttura,profondita' di stampa)
|
||||
TPrint_bilancio_cms_rep rep(path, prefix, depth, show_fasi, show_cdc, show_cms_descr, show_cms_date, sintetica);
|
||||
TPrint_bilancio_cms_rep rep(path, prefix, depth, show_fasi, show_cdc, show_cms_descr, show_cms_date, sintetica, intestazione_minima);
|
||||
|
||||
//se e' una stampa di tipo fasi riassunte (crpa special edition) deve fare lo scanning di tutte le fasi..
|
||||
//..singolarmente e stampare un report per ogni fase.Senno' stampa un solo report
|
||||
@ -399,6 +402,14 @@ void TPrint_bilancio_cms::print_or_preview(const bool stampa)
|
||||
|
||||
rep.set_filter(*_mask, fase, cdc);
|
||||
book.add(rep);
|
||||
if (rep.page() > 0)
|
||||
{
|
||||
if (intestazione_minima)
|
||||
{
|
||||
rep.section('H', 0).hide();
|
||||
rep.section('H', 1).hide();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
if (stampa)
|
||||
@ -421,13 +432,23 @@ void TPrint_bilancio_cms::print_or_preview(const bool stampa)
|
||||
FOR_EACH_ARRAY_ROW(lista_fasi, i, row)
|
||||
{
|
||||
TString16 fase = lista_fasi.row(i);
|
||||
|
||||
rep.set_filter(*_mask, fase);
|
||||
book.add(rep);
|
||||
if (rep.page() > 0)
|
||||
{
|
||||
if (intestazione_minima)
|
||||
{
|
||||
rep.section('H', 0).hide();
|
||||
rep.section('H', 1).hide();
|
||||
}
|
||||
}
|
||||
}
|
||||
if (stampa)
|
||||
book.print();
|
||||
else
|
||||
book.preview();
|
||||
|
||||
}
|
||||
|
||||
} //if(group_fasi...
|
||||
@ -445,6 +466,14 @@ void TPrint_bilancio_cms::print_or_preview(const bool stampa)
|
||||
|
||||
rep.set_filter(*_mask, fase, cdc);
|
||||
book.add(rep);
|
||||
if (rep.page() > 0)
|
||||
{
|
||||
if (intestazione_minima)
|
||||
{
|
||||
rep.section('H', 0).hide();
|
||||
rep.section('H', 1).hide();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
if (stampa)
|
||||
|
@ -88,6 +88,13 @@ END
|
||||
BOOLEAN F_STAMPA_SINTETICA
|
||||
BEGIN
|
||||
PROMPT 53 8 "Stampa Sintetica"
|
||||
MESSAGE TRUE ENABLE,F_INTESTAZIONE_MINIMA
|
||||
MESSAGE FALSE CLEAR,F_INTESTAZIONE_MINIMA
|
||||
END
|
||||
|
||||
BOOLEAN F_INTESTAZIONE_MINIMA
|
||||
BEGIN
|
||||
PROMPT 53 9 "Intestazione minima"
|
||||
END
|
||||
|
||||
STRING F_FASE 10
|
||||
@ -105,9 +112,9 @@ BEGIN
|
||||
OUTPUT F_CDC CODCOSTO
|
||||
END
|
||||
|
||||
RADIOBUTTON F_TIPOSTIMA 1 30
|
||||
LISTBOX F_TIPOSTIMA 1 30
|
||||
BEGIN
|
||||
PROMPT 45 9 "Tipo di stima Costi\Ricavi"
|
||||
PROMPT 1 11 "Tipo di stima Costi\Ricavi"
|
||||
ITEM "T|C prev.\R prev. (Tempo)"
|
||||
MESSAGE SHOW,F_DETR_CONS|ENABLE,F_DETR_CONS|CLEAR,F_INCLUDE_DOCUMENTI
|
||||
ITEM "C|C cons.\R prev."
|
||||
@ -118,7 +125,7 @@ END
|
||||
|
||||
BOOLEAN F_DETR_CONS
|
||||
BEGIN
|
||||
PROMPT 1 11 "Utilizzare consuntivi per le detrazioni "
|
||||
PROMPT 1 12 "Utilizzare consuntivi per le detrazioni "
|
||||
END
|
||||
|
||||
GROUPBOX F_PRE0 76 5
|
||||
|
@ -1,30 +1,30 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<report libraries="ve1300" name="ca3800a" orientation="2" lpi="6" class="ca3800a">
|
||||
<report libraries="ve1300" page_merge="" save_printer="" name="ca3800a" use_printer_font="" orientation="2" page_split="" lpi="6" command="" class="ca3800a">
|
||||
<description>Bilancio commessa CA</description>
|
||||
<font face="Arial Narrow" size="7" />
|
||||
<section type="Head" pattern="1">
|
||||
<section repeat="" keep_with_next="" deactivated="" hidden_if_needed="" type="Head" level="" hidden="" page_break="" can_break="" pattern="1">
|
||||
<font italic="1" face="Arial Narrow" bold="1" size="7" />
|
||||
<field x="1" type="Stringa" width="50" pattern="1">
|
||||
<field x="1" deactivated="" type="Stringa" hidden="" link="" dynamic_height="" shade_offset="" width="50" codval="" id="" pattern="1" hide_zero="" text="">
|
||||
<source>#SYSTEM.RAGSOC</source>
|
||||
</field>
|
||||
<field x="60" type="Testo" width="10" pattern="1" text="Data stampa">
|
||||
<field x="60" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="10" codval="" id="" pattern="1" hide_zero="" text="Data stampa">
|
||||
<font italic="1" face="Arial Narrow" size="7" />
|
||||
</field>
|
||||
<field x="70" type="Data" width="12" pattern="1">
|
||||
<field x="70" deactivated="" type="Data" hidden="" link="" dynamic_height="" shade_offset="" width="12" codval="" id="" pattern="1" hide_zero="" text="">
|
||||
<source>#SYSTEM.DATE</source>
|
||||
</field>
|
||||
<field x="120" type="Testo" width="4" pattern="1" text="Pag.">
|
||||
<field x="120" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="4" codval="" id="" pattern="1" hide_zero="" text="Pag.">
|
||||
<font italic="1" face="Arial Narrow" size="7" />
|
||||
</field>
|
||||
<field x="124" type="Numero" align="right" width="3" pattern="1">
|
||||
<source>#REPORT.PAGE</source>
|
||||
<field x="124" deactivated="" type="Numero" hidden="" align="right" link="" dynamic_height="" shade_offset="" width="3" codval="" id="" pattern="1" hide_zero="" text="">
|
||||
<source>#REPORT.BOOKPAGE</source>
|
||||
</field>
|
||||
<field border="1" x="1" y="3" type="Linea" width="195" height="0" pattern="1" />
|
||||
<field x="41" y="2" type="Testo" align="center" width="6" id="3" pattern="1" text="Inizio" />
|
||||
<field x="46.5" y="2" type="Testo" align="center" width="6" id="4" pattern="1" text="Fine" />
|
||||
<field x="51" y="2" type="Testo" align="center" width="6" id="5" pattern="1" text="Fase" />
|
||||
<field x="58.5" y="2" type="Testo" align="center" width="6" id="6" pattern="1" text="CdC" />
|
||||
<field x="64" y="2" type="Array" align="center" width="7" id="7" pattern="1">
|
||||
<field border="1" x="1" y="3" deactivated="" type="Linea" hidden="" link="" dynamic_height="" shade_offset="" width="195" codval="" height="0" id="" pattern="1" hide_zero="" text="" />
|
||||
<field x="41" y="2" deactivated="" type="Testo" hidden="" align="center" link="" dynamic_height="" shade_offset="" width="6" codval="" id="3" pattern="1" hide_zero="" text="Inizio" />
|
||||
<field x="46.5" y="2" deactivated="" type="Testo" hidden="" align="center" link="" dynamic_height="" shade_offset="" width="6" codval="" id="4" pattern="1" hide_zero="" text="Fine" />
|
||||
<field x="51" y="2" deactivated="" type="Testo" hidden="" align="center" link="" dynamic_height="" shade_offset="" width="6" codval="" id="5" pattern="1" hide_zero="" text="Fase" />
|
||||
<field x="58.5" y="2" deactivated="" type="Testo" hidden="" align="center" link="" dynamic_height="" shade_offset="" width="6" codval="" id="6" pattern="1" hide_zero="" text="CdC" />
|
||||
<field x="64" y="2" deactivated="" type="Array" hidden="" align="center" link="" dynamic_height="" shade_offset="" width="7" codval="" id="7" pattern="1" hide_zero="" text="">
|
||||
<source>TIPOSTIMA</source>
|
||||
<list>
|
||||
<li Value="% Av." Code="T" />
|
||||
@ -32,34 +32,34 @@
|
||||
<li Value="% Ric." Code="R" />
|
||||
</list>
|
||||
</field>
|
||||
<field x="69" y="2" type="Testo" align="right" width="13" id="69" pattern="1" text="Testata" />
|
||||
<field x="1" y="2" type="Testo" width="15" id="121" pattern="1" text="Commessa" />
|
||||
<field x="83" y="1" type="Stringa" valign="bottom" align="right" width="13" height="2" id="169" pattern="1">
|
||||
<field x="69" y="2" deactivated="" type="Testo" hidden="" align="right" link="" dynamic_height="" shade_offset="" width="13" codval="" id="69" pattern="1" hide_zero="" text="Testata" />
|
||||
<field x="1" y="2" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="15" codval="" id="121" pattern="1" hide_zero="" text="Commessa" />
|
||||
<field x="83" y="1" deactivated="" type="Stringa" valign="bottom" hidden="" align="right" link="" dynamic_height="" shade_offset="" width="13" codval="" height="2" id="169" pattern="1" hide_zero="" text="">
|
||||
<source>"MARGINE CONTRIBUZIONE"</source>
|
||||
</field>
|
||||
</section>
|
||||
<section type="Head" level="1" pattern="1">
|
||||
<field border="1" radius="100" x="1" type="Testo" valign="center" align="center" shade_offset="25" width="195" height="2.5" pattern="2" text="BILANCIO DI COMMESSA PER ESERCIZIO">
|
||||
<section repeat="" keep_with_next="" deactivated="" hidden_if_needed="" type="Head" level="1" hidden="" page_break="" can_break="" pattern="1">
|
||||
<field border="1" radius="100" x="1" deactivated="" type="Testo" valign="center" hidden="" align="center" link="" dynamic_height="" shade_offset="25" width="195" codval="" height="2.5" id="" pattern="2" hide_zero="" text="BILANCIO DI COMMESSA PER ESERCIZIO">
|
||||
<font face="Courier New" bold="1" size="16" />
|
||||
</field>
|
||||
<field x="2" y="3" type="Testo" width="35" pattern="1" text="Costi e ricavi di Commessa maturati nell'esercizio">
|
||||
<field x="2" y="3" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="35" codval="" id="" pattern="1" hide_zero="" text="Costi e ricavi di Commessa maturati nell'esercizio">
|
||||
<font italic="1" face="Arial Narrow" size="9" />
|
||||
</field>
|
||||
<field x="37.5" y="3" type="Stringa" width="4" pattern="1">
|
||||
<field x="37.5" y="3" deactivated="" type="Stringa" hidden="" link="" dynamic_height="" shade_offset="" width="4" codval="" id="" pattern="1" hide_zero="" text="">
|
||||
<font face="Arial Narrow" bold="1" size="9" />
|
||||
<source>ANNO</source>
|
||||
</field>
|
||||
<field x="44.5" y="3" type="Testo" width="3" pattern="1" text="Dal">
|
||||
<field x="44.5" y="3" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="3" codval="" id="" pattern="1" hide_zero="" text="Dal">
|
||||
<font italic="1" face="Arial Narrow" size="9" />
|
||||
</field>
|
||||
<field x="48" y="3" type="Data" width="10" pattern="1">
|
||||
<field x="48" y="3" deactivated="" type="Data" hidden="" link="" dynamic_height="" shade_offset="" width="10" codval="" id="" pattern="1" hide_zero="" text="">
|
||||
<font face="Arial Narrow" bold="1" size="9" />
|
||||
<source>DAL</source>
|
||||
</field>
|
||||
<field x="69.5" y="3" type="Testo" width="15" pattern="1" text="Stima avanzamento ">
|
||||
<field x="69.5" y="3" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="15" codval="" id="" pattern="1" hide_zero="" text="Stima avanzamento ">
|
||||
<font italic="1" face="Arial Narrow" size="9" />
|
||||
</field>
|
||||
<field x="85" y="3" type="Array" width="45" pattern="1">
|
||||
<field x="85" y="3" deactivated="" type="Array" hidden="" link="" dynamic_height="" shade_offset="" width="45" codval="" id="" pattern="1" hide_zero="" text="">
|
||||
<font face="Arial Narrow" bold="1" size="9" />
|
||||
<source>TIPOSTIMA</source>
|
||||
<list>
|
||||
@ -68,10 +68,10 @@
|
||||
<li Value="COSTI Consuntivi \ RICAVI Consuntivi" Code="R" />
|
||||
</list>
|
||||
</field>
|
||||
<field x="149" y="3" type="Testo" width="20" pattern="1" text="Detrazioni calcolate come">
|
||||
<field x="149" y="3" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="20" codval="" id="" pattern="1" hide_zero="" text="Detrazioni calcolate come">
|
||||
<font italic="1" face="Arial Narrow" size="9" />
|
||||
</field>
|
||||
<field x="168.5" y="3" type="Array" width="10" pattern="1">
|
||||
<field x="168.5" y="3" deactivated="" type="Array" hidden="" link="" dynamic_height="" shade_offset="" width="10" codval="" id="" pattern="1" hide_zero="" text="">
|
||||
<font face="Arial Narrow" bold="1" size="9" />
|
||||
<source>DETRCONS</source>
|
||||
<list>
|
||||
@ -79,46 +79,46 @@
|
||||
<li Value="Consuntivi" Code="X" />
|
||||
</list>
|
||||
</field>
|
||||
<field x="2" y="4.25" type="Testo" width="20" pattern="1" text="Include esercizi successivi">
|
||||
<field x="2" y="4.25" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="20" codval="" id="" pattern="1" hide_zero="" text="Include esercizi successivi">
|
||||
<font italic="1" face="Arial Narrow" size="9" />
|
||||
</field>
|
||||
<field x="20.5" y="4.25" type="Stringa" width="3" pattern="1">
|
||||
<field x="20.5" y="4.25" deactivated="" type="Stringa" hidden="" link="" dynamic_height="" shade_offset="" width="3" codval="" id="" pattern="1" hide_zero="" text="">
|
||||
<font face="Arial Narrow" bold="1" size="9" />
|
||||
<source>VITAINTERA</source>
|
||||
</field>
|
||||
<field x="26" y="4.25" type="Testo" width="12" pattern="1" text="Include inevasi">
|
||||
<field x="26" y="4.25" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="12" codval="" id="" pattern="1" hide_zero="" text="Include inevasi">
|
||||
<font italic="1" face="Arial Narrow" size="9" />
|
||||
</field>
|
||||
<field x="38.5" y="4.25" type="Stringa" width="3" pattern="1">
|
||||
<field x="38.5" y="4.25" deactivated="" type="Stringa" hidden="" link="" dynamic_height="" shade_offset="" width="3" codval="" id="" pattern="1" hide_zero="" text="">
|
||||
<font face="Arial Narrow" bold="1" size="9" />
|
||||
<source>INCLUDE_DOCUMENTI</source>
|
||||
</field>
|
||||
<field x="44.5" y="4.25" type="Testo" width="3" pattern="1" text="Al">
|
||||
<field x="44.5" y="4.25" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="3" codval="" id="" pattern="1" hide_zero="" text="Al">
|
||||
<font italic="1" face="Arial Narrow" size="9" />
|
||||
</field>
|
||||
<field x="48" y="4.25" type="Data" width="10" pattern="1">
|
||||
<field x="48" y="4.25" deactivated="" type="Data" hidden="" link="" dynamic_height="" shade_offset="" width="10" codval="" id="" pattern="1" hide_zero="" text="">
|
||||
<font face="Arial Narrow" bold="1" size="9" />
|
||||
<source>AL</source>
|
||||
<alt_source>DATAFINE</alt_source>
|
||||
</field>
|
||||
<field x="69.5" y="4.25" type="Testo" width="15" pattern="1" text="Fase specificata">
|
||||
<field x="69.5" y="4.25" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="15" codval="" id="" pattern="1" hide_zero="" text="Fase specificata">
|
||||
<font italic="1" face="Arial Narrow" size="9" />
|
||||
</field>
|
||||
<field x="85" y="4.25" type="Stringa" width="10" pattern="1">
|
||||
<field x="85" y="4.25" deactivated="" type="Stringa" hidden="" link="" dynamic_height="" shade_offset="" width="10" codval="" id="" pattern="1" hide_zero="" text="">
|
||||
<font face="Arial Narrow" bold="1" size="9" />
|
||||
<source>FASESPEC</source>
|
||||
</field>
|
||||
<field x="104" y="4.25" type="Testo" width="15" pattern="1" text="CdC specificato">
|
||||
<field x="104" y="4.25" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="15" codval="" id="" pattern="1" hide_zero="" text="CdC specificato">
|
||||
<font italic="1" face="Arial Narrow" size="9" />
|
||||
</field>
|
||||
<field x="118" y="4.25" type="Stringa" width="20" pattern="1">
|
||||
<field x="118" y="4.25" deactivated="" type="Stringa" hidden="" link="" dynamic_height="" shade_offset="" width="20" codval="" id="" pattern="1" hide_zero="" text="">
|
||||
<font face="Arial Narrow" bold="1" size="9" />
|
||||
<source>CDCSPEC</source>
|
||||
</field>
|
||||
<field x="149" y="4.25" type="Testo" width="25" pattern="1" text="Profondita' della struttura in esame">
|
||||
<field x="149" y="4.25" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="25" codval="" id="" pattern="1" hide_zero="" text="Profondita' della struttura in esame">
|
||||
<font italic="1" face="Arial Narrow" size="9" />
|
||||
</field>
|
||||
<field x="175.5" y="4.25" type="Array" width="7" pattern="1">
|
||||
<field x="175.5" y="4.25" deactivated="" type="Array" hidden="" link="" dynamic_height="" shade_offset="" width="7" codval="" id="" pattern="1" hide_zero="" text="">
|
||||
<font face="Arial Narrow" bold="1" size="9" />
|
||||
<source>DEPTH</source>
|
||||
<list>
|
||||
@ -126,12 +126,12 @@
|
||||
<li Value="Conto" Code="2" />
|
||||
</list>
|
||||
</field>
|
||||
<field border="2" x="1" y="5.5" type="Linea" width="195" height="0" pattern="1" />
|
||||
<field border="2" x="1" y="5.5" deactivated="" type="Linea" hidden="" link="" dynamic_height="" shade_offset="" width="195" codval="" height="0" id="" pattern="1" hide_zero="" text="" />
|
||||
</section>
|
||||
<section type="Head" level="2" height="1.5" page_break="1" pattern="1">
|
||||
<section repeat="" keep_with_next="" deactivated="" hidden_if_needed="" type="Head" level="2" hidden="" height="1.5" page_break="1" can_break="" pattern="1">
|
||||
<groupby>(LEVELC;2)||(LEVEL=4)</groupby>
|
||||
<font italic="1" face="Arial Narrow" bold="1" size="7" />
|
||||
<field x="1" type="Array" bg_color="#C0C0C0" width="25" pattern="2">
|
||||
<field x="1" deactivated="" type="Array" hidden="" link="" bg_color="#C0C0C0" dynamic_height="" shade_offset="" width="25" codval="" id="" pattern="2" hide_zero="" text="">
|
||||
<source>LEVEL</source>
|
||||
<list>
|
||||
<li Value="Commesse terminate nel" Code="0" />
|
||||
@ -141,23 +141,23 @@
|
||||
<li Value="Commesse di supporto del" Code="4" />
|
||||
</list>
|
||||
</field>
|
||||
<field x="26" type="Numero" align="right" bg_color="#C0C0C0" width="6" pattern="2">
|
||||
<field x="26" deactivated="" type="Numero" hidden="" align="right" link="" bg_color="#C0C0C0" dynamic_height="" shade_offset="" width="6" codval="" id="" pattern="2" hide_zero="" text="">
|
||||
<source>ANNO</source>
|
||||
</field>
|
||||
<field border="1" x="1" y="1.25" type="Linea" width="195" height="0" pattern="1" />
|
||||
<field type="Numero" hidden="1" align="right" width="1" id="101" pattern="1">
|
||||
<field border="1" x="1" y="1.25" deactivated="" type="Linea" hidden="" link="" dynamic_height="" shade_offset="" width="195" codval="" height="0" id="" pattern="1" hide_zero="" text="" />
|
||||
<field deactivated="" type="Numero" hidden="1" align="right" link="" dynamic_height="" shade_offset="" width="1" codval="" id="101" pattern="1" hide_zero="" text="">
|
||||
<source>LEVEL</source>
|
||||
<postscript description="H2.101 POSTSCRIPT">MESSAGE COPY,F2.101</postscript>
|
||||
</field>
|
||||
<field x="32" type="Numero" hidden="1" align="right" width="4" id="102" pattern="1">
|
||||
<field x="32" deactivated="" type="Numero" hidden="1" align="right" link="" dynamic_height="" shade_offset="" width="4" codval="" id="102" pattern="1" hide_zero="" text="">
|
||||
<source>ANNO</source>
|
||||
<postscript description="H2.102 POSTSCRIPT">MESSAGE COPY,F2.102</postscript>
|
||||
</field>
|
||||
</section>
|
||||
<section type="Head" level="3" height="1.5" pattern="1">
|
||||
<section repeat="" keep_with_next="" deactivated="" hidden_if_needed="" type="Head" level="3" hidden="" height="1.5" page_break="" can_break="" pattern="1">
|
||||
<groupby>LEVEL</groupby>
|
||||
<font italic="1" face="Arial Narrow" bold="1" size="7" />
|
||||
<field x="3" type="Array" bg_color="#C0C0C0" width="45" pattern="1">
|
||||
<field x="3" deactivated="" type="Array" hidden="" link="" bg_color="#C0C0C0" dynamic_height="" shade_offset="" width="45" codval="" id="" pattern="1" hide_zero="" text="">
|
||||
<source>LEVEL</source>
|
||||
<list>
|
||||
<li Value="Commesse avviate in esercizi precedenti" Code="0" />
|
||||
@ -167,44 +167,44 @@
|
||||
<li Value="Commesse di supporto dell'esercizio selezionato" Code="4" />
|
||||
</list>
|
||||
</field>
|
||||
<field border="1" x="1" y="1.25" type="Linea" width="195" height="0" pattern="1" />
|
||||
<field type="Numero" hidden="1" align="right" width="1" id="101" pattern="1">
|
||||
<field border="1" x="1" y="1.25" deactivated="" type="Linea" hidden="" link="" dynamic_height="" shade_offset="" width="195" codval="" height="0" id="" pattern="1" hide_zero="" text="" />
|
||||
<field deactivated="" type="Numero" hidden="1" align="right" link="" dynamic_height="" shade_offset="" width="1" codval="" id="101" pattern="1" hide_zero="" text="">
|
||||
<source>LEVEL</source>
|
||||
<postscript description="H3.101 POSTSCRIPT">MESSAGE COPY,F3.101</postscript>
|
||||
</field>
|
||||
</section>
|
||||
<section type="Head" level="4" hidden="1" pattern="1">
|
||||
<section repeat="" keep_with_next="" deactivated="" hidden_if_needed="" type="Head" level="4" hidden="1" page_break="" can_break="" pattern="1">
|
||||
<condition>(STAMPAFASI != "" )||(STAMPACDC != "")</condition>
|
||||
<groupby>CODCMS</groupby>
|
||||
<font italic="1" face="Arial Narrow" bold="1" size="7" />
|
||||
<postscript description="H4 POSTSCRIPT">MESSAGE RESET,B1.200</postscript>
|
||||
<field type="Stringa" width="1" id="1" pattern="1">
|
||||
<field deactivated="" type="Stringa" hidden="" link="" dynamic_height="" shade_offset="" width="1" codval="" id="1" pattern="1" hide_zero="" text="">
|
||||
<source>STAMPAFASI</source>
|
||||
</field>
|
||||
<field x="2" type="Stringa" bg_color="#C0C0C0" width="20" id="2" pattern="1">
|
||||
<field x="2" deactivated="" type="Stringa" hidden="" link="" bg_color="#C0C0C0" dynamic_height="" shade_offset="" width="20" codval="" id="2" pattern="1" hide_zero="" text="">
|
||||
<source>CODCMS</source>
|
||||
</field>
|
||||
<field x="23" type="Numero" align="right" width="2" id="3" pattern="1">
|
||||
<field x="23" deactivated="" type="Numero" hidden="" align="right" link="" dynamic_height="" shade_offset="" width="2" codval="" id="3" pattern="1" hide_zero="" text="">
|
||||
<source>0</source>
|
||||
</field>
|
||||
</section>
|
||||
<section type="Body" pattern="1" />
|
||||
<section type="Body" level="1" pattern="1">
|
||||
<section repeat="" keep_with_next="" deactivated="" hidden_if_needed="" type="Body" level="" hidden="" page_break="" can_break="" pattern="1" />
|
||||
<section repeat="" keep_with_next="" deactivated="" hidden_if_needed="" type="Body" level="1" hidden="" page_break="" can_break="" pattern="1">
|
||||
<prescript description="B1 PRESCRIPT">1 #H4.3 \ incrementa il contatore per il numero di righe di fase
|
||||
+!</prescript>
|
||||
<field x="1" type="Stringa" width="17" id="1" pattern="1">
|
||||
<field x="1" deactivated="" type="Stringa" hidden="" link="" dynamic_height="" shade_offset="" width="17" codval="" id="1" pattern="1" hide_zero="" text="">
|
||||
<source>CODCMS</source>
|
||||
</field>
|
||||
<field x="18" type="Stringa" width="25" id="2" pattern="1">
|
||||
<field x="18" deactivated="" type="Stringa" hidden="" link="" dynamic_height="" shade_offset="" width="25" codval="" id="2" pattern="1" hide_zero="" text="">
|
||||
<source>DESCRIZ</source>
|
||||
</field>
|
||||
<field x="43" type="Data" align="center" width="6" id="3" pattern="1">
|
||||
<field x="43" deactivated="" type="Data" hidden="" align="center" link="" dynamic_height="" shade_offset="" width="6" codval="" id="3" pattern="1" hide_zero="" text="">
|
||||
<source>DATAINI</source>
|
||||
</field>
|
||||
<field x="49" type="Data" align="center" width="6" id="4" pattern="1">
|
||||
<field x="49" deactivated="" type="Data" hidden="" align="center" link="" dynamic_height="" shade_offset="" width="6" codval="" id="4" pattern="1" hide_zero="" text="">
|
||||
<source>DATAFINE</source>
|
||||
</field>
|
||||
<field x="55" type="Stringa" width="9" id="5" pattern="1">
|
||||
<field x="55" deactivated="" type="Stringa" hidden="" link="" dynamic_height="" shade_offset="" width="9" codval="" id="5" pattern="1" hide_zero="" text="">
|
||||
<source>FASE</source>
|
||||
<prescript description="B1.5 PRESCRIPT">#STAMPAFASI @
|
||||
EMPTY= IF
|
||||
@ -214,7 +214,7 @@ ELSE
|
||||
THEN
|
||||
</prescript>
|
||||
</field>
|
||||
<field x="64" type="Stringa" width="5" id="6" pattern="1">
|
||||
<field x="64" deactivated="" type="Stringa" hidden="" link="" dynamic_height="" shade_offset="" width="5" codval="" id="6" pattern="1" hide_zero="" text="">
|
||||
<source>CDC</source>
|
||||
<prescript description="B1.6 PRESCRIPT">#STAMPACDC @
|
||||
EMPTY= IF
|
||||
@ -224,20 +224,20 @@ ELSE
|
||||
THEN
|
||||
</prescript>
|
||||
</field>
|
||||
<field x="69" type="Numero" align="right" width="3.5" id="7" pattern="1">
|
||||
<field x="69" deactivated="" type="Numero" hidden="" align="right" link="" dynamic_height="" shade_offset="" width="3.5" codval="" id="7" pattern="1" hide_zero="" text="">
|
||||
<font italic="1" face="Arial Narrow" size="7" />
|
||||
<source>ROUND(AVANZAMENTO;0)</source>
|
||||
</field>
|
||||
<field x="72.5" type="Valuta" align="right" width="13" id="69" pattern="1" text="###.###.###,@@">
|
||||
<field x="72.5" deactivated="" type="Valuta" hidden="" align="right" link="" dynamic_height="" shade_offset="" width="13" codval="" id="69" pattern="1" hide_zero="" text="###.###.###,@@">
|
||||
<postscript description="B1.69 POSTSCRIPT">MESSAGE ADD,F4.69
|
||||
MESSAGE ADD,F3.69</postscript>
|
||||
</field>
|
||||
<field x="86" type="Valuta" align="right" width="13" id="169" pattern="1" text="###.###.###,@@">
|
||||
<field x="86" deactivated="" type="Valuta" hidden="" align="right" link="" dynamic_height="" shade_offset="" width="13" codval="" id="169" pattern="1" hide_zero="" text="###.###.###,@@">
|
||||
<source>#RICAVI-#COSTI</source>
|
||||
<postscript description="B1.169 POSTSCRIPT">MESSAGE ADD,F4.169
|
||||
MESSAGE ADD,F3.169</postscript>
|
||||
</field>
|
||||
<field x="99" type="Numero" align="right" width="4" id="170" pattern="1" text="####">
|
||||
<field x="99" deactivated="" type="Numero" hidden="" align="right" link="" dynamic_height="" shade_offset="" width="4" codval="" id="170" pattern="1" hide_zero="" text="####">
|
||||
<font italic="1" face="Arial Narrow" size="7" />
|
||||
<prescript description="B1.170 PRESCRIPT">#RICAVI @
|
||||
EMPTY= IF
|
||||
@ -259,32 +259,32 @@ ELSE
|
||||
THEN
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="102.5" type="Testo" align="center" width="2" id="171" pattern="1" text="%" />
|
||||
<field type="Numero" hidden="1" align="right" width="1" id="200" pattern="1">
|
||||
<field x="102.5" deactivated="" type="Testo" hidden="" align="center" link="" dynamic_height="" shade_offset="" width="2" codval="" id="171" pattern="1" hide_zero="" text="%" />
|
||||
<field deactivated="" type="Numero" hidden="1" align="right" link="" dynamic_height="" shade_offset="" width="1" codval="" id="200" pattern="1" hide_zero="" text="">
|
||||
<prescript description="B1.200 PRESCRIPT">#THIS @
|
||||
1
|
||||
+
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
</section>
|
||||
<section type="Foot" pattern="1">
|
||||
<field border="1" x="1" y="0.25" type="Linea" width="195" height="0" pattern="1" />
|
||||
<field x="2" y="0.75" type="Testo" width="25" pattern="1" text="Bilancio di commessa per esercizio">
|
||||
<section repeat="" keep_with_next="" deactivated="" hidden_if_needed="" type="Foot" level="" hidden="" page_break="" can_break="" pattern="1">
|
||||
<field border="1" x="1" y="0.25" deactivated="" type="Linea" hidden="" link="" dynamic_height="" shade_offset="" width="195" codval="" height="0" id="" pattern="1" hide_zero="" text="" />
|
||||
<field x="2" y="0.75" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="25" codval="" id="" pattern="1" hide_zero="" text="Bilancio di commessa per esercizio">
|
||||
<font italic="1" face="Arial Narrow" bold="1" size="7" />
|
||||
</field>
|
||||
<field x="28.5" y="0.75" type="Stringa" width="5" pattern="1">
|
||||
<field x="28.5" y="0.75" deactivated="" type="Stringa" hidden="" link="" dynamic_height="" shade_offset="" width="5" codval="" id="" pattern="1" hide_zero="" text="">
|
||||
<font face="Arial Narrow" bold="1" size="9" />
|
||||
<source>ANNO</source>
|
||||
</field>
|
||||
</section>
|
||||
<section type="Foot" level="1" height="3" pattern="1">
|
||||
<section repeat="" keep_with_next="" deactivated="" hidden_if_needed="" type="Foot" level="1" hidden="" height="3" page_break="" can_break="" pattern="1">
|
||||
<font italic="1" face="Arial Narrow" bold="1" size="7" />
|
||||
<field border="2" x="1" y="0.75" type="Linea" width="195" height="0" pattern="1" />
|
||||
<field x="1" y="1.5" type="Testo" fg_color="#FFFFFF" bg_color="#000000" width="36" pattern="2" text="TOTALI GENERALI " />
|
||||
<field x="60.5" y="1.5" type="Valuta" align="right" width="13" id="69" pattern="1" text="###.###.###,@@" />
|
||||
<field x="74" y="1.5" type="Valuta" align="right" width="13" id="169" pattern="1" text="###.###.###,@@" />
|
||||
<field border="2" x="1" y="0.75" deactivated="" type="Linea" hidden="" link="" dynamic_height="" shade_offset="" width="195" codval="" height="0" id="" pattern="1" hide_zero="" text="" />
|
||||
<field x="1" y="1.5" deactivated="" type="Testo" hidden="" link="" fg_color="#FFFFFF" bg_color="#000000" dynamic_height="" shade_offset="" width="36" codval="" id="" pattern="2" hide_zero="" text="TOTALI GENERALI " />
|
||||
<field x="60.5" y="1.5" deactivated="" type="Valuta" hidden="" align="right" link="" dynamic_height="" shade_offset="" width="13" codval="" id="69" pattern="1" hide_zero="" text="###.###.###,@@" />
|
||||
<field x="74" y="1.5" deactivated="" type="Valuta" hidden="" align="right" link="" dynamic_height="" shade_offset="" width="13" codval="" id="169" pattern="1" hide_zero="" text="###.###.###,@@" />
|
||||
</section>
|
||||
<section type="Foot" level="2" height="4.5" pattern="1">
|
||||
<section repeat="" keep_with_next="" deactivated="" hidden_if_needed="" type="Foot" level="2" hidden="" height="4.5" page_break="" can_break="" pattern="1">
|
||||
<font italic="1" face="Courier New" bold="1" size="7" />
|
||||
<prescript description="F2 PRESCRIPT">#LEVEL @
|
||||
4 = IF
|
||||
@ -292,8 +292,8 @@ THEN
|
||||
ELSE
|
||||
"90@" DISABLE
|
||||
THEN</prescript>
|
||||
<field border="1" x="1" y="0.5" type="Linea" width="195" height="0" pattern="1" />
|
||||
<field x="1" y="1" type="Array" bg_color="#C0C0C0" width="30" pattern="2">
|
||||
<field border="1" x="1" y="0.5" deactivated="" type="Linea" hidden="" link="" dynamic_height="" shade_offset="" width="195" codval="" height="0" id="" pattern="1" hide_zero="" text="" />
|
||||
<field x="1" y="1" deactivated="" type="Array" hidden="" link="" bg_color="#C0C0C0" dynamic_height="" shade_offset="" width="30" codval="" id="" pattern="2" hide_zero="" text="">
|
||||
<font italic="1" face="Arial Narrow" bold="1" size="7" />
|
||||
<source>H2.101</source>
|
||||
<list>
|
||||
@ -304,42 +304,42 @@ THEN</prescript>
|
||||
<li Value="TOTALI Commesse di supporto del" Code="4" />
|
||||
</list>
|
||||
</field>
|
||||
<field x="31" y="1" type="Numero" align="right" bg_color="#C0C0C0" width="6" pattern="2">
|
||||
<field x="31" y="1" deactivated="" type="Numero" hidden="" align="right" link="" bg_color="#C0C0C0" dynamic_height="" shade_offset="" width="6" codval="" id="" pattern="2" hide_zero="" text="">
|
||||
<font italic="1" face="Arial Narrow" bold="1" size="7" />
|
||||
<source>H2.102</source>
|
||||
</field>
|
||||
<field border="1" x="1" y="3.25" deactivated="1" type="Linea" width="195" height="0" pattern="1">
|
||||
<field border="1" x="1" y="3.25" deactivated="1" type="Linea" hidden="" link="" dynamic_height="" shade_offset="" width="195" codval="" height="0" id="" pattern="1" hide_zero="" text="">
|
||||
<groups>90</groups>
|
||||
</field>
|
||||
<field x="1" y="3.5" deactivated="1" type="Testo" fg_color="#FFFFFF" bg_color="#808080" width="30" pattern="2" text="TOTALI commesse normali relative al">
|
||||
<field x="1" y="3.5" deactivated="1" type="Testo" hidden="" link="" fg_color="#FFFFFF" bg_color="#808080" dynamic_height="" shade_offset="" width="30" codval="" id="" pattern="2" hide_zero="" text="TOTALI commesse normali relative al">
|
||||
<font italic="1" face="Arial Narrow" bold="1" size="7" />
|
||||
<groups>90</groups>
|
||||
</field>
|
||||
<field x="31" y="3.5" type="Numero" align="right" fg_color="#FFFFFF" bg_color="#808080" width="6" pattern="2">
|
||||
<field x="31" y="3.5" deactivated="" type="Numero" hidden="" align="right" link="" fg_color="#FFFFFF" bg_color="#808080" dynamic_height="" shade_offset="" width="6" codval="" id="" pattern="2" hide_zero="" text="">
|
||||
<font italic="1" face="Arial Narrow" bold="1" size="7" />
|
||||
<groups>90</groups>
|
||||
<source>H2.102</source>
|
||||
</field>
|
||||
<field x="60.5" y="1" type="Valuta" align="right" width="13" id="69" pattern="1" text="###.###.###,@@">
|
||||
<field x="60.5" y="1" deactivated="" type="Valuta" hidden="" align="right" link="" dynamic_height="" shade_offset="" width="13" codval="" id="69" pattern="1" hide_zero="" text="###.###.###,@@">
|
||||
<font italic="1" face="Arial Narrow" bold="1" size="7" />
|
||||
<postscript description="F2.69 POSTSCRIPT">MESSAGE ADD,F1.69
|
||||
</postscript>
|
||||
</field>
|
||||
<field y="1" type="Numero" hidden="1" align="right" width="1" id="101" pattern="1" />
|
||||
<field x="37" y="1" type="Numero" hidden="1" align="right" width="4" id="102" pattern="1">
|
||||
<field y="1" deactivated="" type="Numero" hidden="1" align="right" link="" dynamic_height="" shade_offset="" width="1" codval="" id="101" pattern="1" hide_zero="" text="" />
|
||||
<field x="37" y="1" deactivated="" type="Numero" hidden="1" align="right" link="" dynamic_height="" shade_offset="" width="4" codval="" id="102" pattern="1" hide_zero="" text="">
|
||||
<postscript description="F2.102 POSTSCRIPT">MESSAGE COPY,F2.101</postscript>
|
||||
</field>
|
||||
<field x="74" y="1" type="Valuta" align="right" width="13" id="169" pattern="1" text="###.###.###,@@">
|
||||
<field x="74" y="1" deactivated="" type="Valuta" hidden="" align="right" link="" dynamic_height="" shade_offset="" width="13" codval="" id="169" pattern="1" hide_zero="" text="###.###.###,@@">
|
||||
<font italic="1" face="Arial Narrow" bold="1" size="7" />
|
||||
<postscript description="F2.169 POSTSCRIPT">MESSAGE ADD,F1.169
|
||||
MESSAGE RESET,169
|
||||
</postscript>
|
||||
</field>
|
||||
</section>
|
||||
<section type="Foot" level="3" height="2.5" pattern="1">
|
||||
<section repeat="" keep_with_next="" deactivated="" hidden_if_needed="" type="Foot" level="3" hidden="" height="2.5" page_break="" can_break="" pattern="1">
|
||||
<font italic="1" face="Arial Narrow" bold="1" size="7" />
|
||||
<field border="1" x="1" y="0.25" type="Linea" width="195" height="0" pattern="1" />
|
||||
<field x="1" y="0.5" type="Array" width="25" height="2" pattern="1">
|
||||
<field border="1" x="1" y="0.25" deactivated="" type="Linea" hidden="" link="" dynamic_height="" shade_offset="" width="195" codval="" height="0" id="" pattern="1" hide_zero="" text="" />
|
||||
<field x="1" y="0.5" deactivated="" type="Array" hidden="" link="" dynamic_height="" shade_offset="" width="25" codval="" height="2" id="" pattern="1" hide_zero="" text="">
|
||||
<source>H3.101</source>
|
||||
<list>
|
||||
<li Value="TOTALI Commesse avviate in esercizi precedenti" Code="0" />
|
||||
@ -349,26 +349,26 @@ MESSAGE RESET,169
|
||||
<li Value="TOTALI Commesse di supporto dell'esercizio selezionato" Code="4" />
|
||||
</list>
|
||||
</field>
|
||||
<field x="60.5" y="0.5" type="Valuta" align="right" width="13" id="69" pattern="1" text="###.###.###,@@">
|
||||
<field x="60.5" y="0.5" deactivated="" type="Valuta" hidden="" align="right" link="" dynamic_height="" shade_offset="" width="13" codval="" id="69" pattern="1" hide_zero="" text="###.###.###,@@">
|
||||
<postscript description="F3.69 POSTSCRIPT">MESSAGE ADD,F2.69
|
||||
MESSAGE ADD,F2.269</postscript>
|
||||
</field>
|
||||
<field y="0.5" type="Numero" hidden="1" align="right" width="1" id="101" pattern="1" />
|
||||
<field x="74" y="0.5" type="Valuta" align="right" width="13" id="169" pattern="1" text="###.###.###,@@">
|
||||
<field y="0.5" deactivated="" type="Numero" hidden="1" align="right" link="" dynamic_height="" shade_offset="" width="1" codval="" id="101" pattern="1" hide_zero="" text="" />
|
||||
<field x="74" y="0.5" deactivated="" type="Valuta" hidden="" align="right" link="" dynamic_height="" shade_offset="" width="13" codval="" id="169" pattern="1" hide_zero="" text="###.###.###,@@">
|
||||
<postscript description="F3.169 POSTSCRIPT">MESSAGE ADD,F2.169
|
||||
MESSAGE ADD,F2.369
|
||||
MESSAGE RESET,169</postscript>
|
||||
</field>
|
||||
</section>
|
||||
<section type="Foot" level="4" height="1" pattern="1">
|
||||
<section repeat="" keep_with_next="" deactivated="" hidden_if_needed="" type="Foot" level="4" hidden="" height="1" page_break="" can_break="" pattern="1">
|
||||
<condition>(#B1.200E;1)((STAMPAFASI !="")||(STAMPACDC !=""))(#H4.3 E; 0)(TIPOSTIMA!='T')(FASESPEC=="")</condition>
|
||||
<font italic="1" face="Arial Narrow" size="7" />
|
||||
<field x="22" type="Testo" width="15" pattern="1" text="Totali commessa" />
|
||||
<field x="2" type="Stringa" bg_color="#C0C0C0" width="20" id="2" pattern="1">
|
||||
<field x="22" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="15" codval="" id="" pattern="1" hide_zero="" text="Totali commessa" />
|
||||
<field x="2" deactivated="" type="Stringa" hidden="" link="" bg_color="#C0C0C0" dynamic_height="" shade_offset="" width="20" codval="" id="2" pattern="1" hide_zero="" text="">
|
||||
<source>H4.2</source>
|
||||
</field>
|
||||
<field x="60.5" type="Valuta" align="right" width="13" id="69" pattern="1" text="###.###.###,@@" />
|
||||
<field x="74" type="Valuta" align="right" width="13" id="169" pattern="1" text="###.###.###,@@">
|
||||
<field x="60.5" deactivated="" type="Valuta" hidden="" align="right" link="" dynamic_height="" shade_offset="" width="13" codval="" id="69" pattern="1" hide_zero="" text="###.###.###,@@" />
|
||||
<field x="74" deactivated="" type="Valuta" hidden="" align="right" link="" dynamic_height="" shade_offset="" width="13" codval="" id="169" pattern="1" hide_zero="" text="###.###.###,@@">
|
||||
<postscript description="F4.169 POSTSCRIPT">MESSAGE RESET,169</postscript>
|
||||
</field>
|
||||
</section>
|
||||
|
@ -1,20 +1,14 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<report libraries="ve1300" name="ca3800as" orientation="2" lpi="6" class="ca3800as">
|
||||
<report libraries="ve1300" page_merge="" save_printer="" name="ca3800as" use_printer_font="" orientation="2" page_split="" lpi="6" command="" class="ca3800as">
|
||||
<description>Bilancio commessa CA</description>
|
||||
<font face="Arial Narrow" size="7" />
|
||||
<section type="Head" pattern="1">
|
||||
<section repeat="" keep_with_next="" deactivated="" hidden_if_needed="" type="Head" level="" hidden="" page_break="" can_break="" pattern="1">
|
||||
<font italic="1" face="Arial Narrow" bold="1" size="7" />
|
||||
<field x="163" type="Testo" width="4" pattern="1" text="Pag.">
|
||||
<font italic="1" face="Arial Narrow" size="7" />
|
||||
</field>
|
||||
<field x="167" type="Numero" align="right" width="3" pattern="1">
|
||||
<source>#REPORT.PAGE</source>
|
||||
</field>
|
||||
<field x="45" y="1" type="Testo" align="center" width="6" id="3" pattern="1" text="Inizio" />
|
||||
<field x="50.5" y="1" type="Testo" align="center" width="6" id="4" pattern="1" text="Fine" />
|
||||
<field x="55" y="1" type="Testo" align="center" width="6" id="5" pattern="1" text="Fase" />
|
||||
<field x="62.5" y="1" type="Testo" align="center" width="6" id="6" pattern="1" text="CdC" />
|
||||
<field x="68" y="1" type="Array" align="center" width="7" id="7" pattern="1">
|
||||
<field x="45" y="1" deactivated="" type="Testo" hidden="" align="center" link="" dynamic_height="" shade_offset="" width="6" codval="" id="3" pattern="1" hide_zero="" text="Inizio" />
|
||||
<field x="50.5" y="1" deactivated="" type="Testo" hidden="" align="center" link="" dynamic_height="" shade_offset="" width="6" codval="" id="4" pattern="1" hide_zero="" text="Fine" />
|
||||
<field x="55" y="1" deactivated="" type="Testo" hidden="" align="center" link="" dynamic_height="" shade_offset="" width="6" codval="" id="5" pattern="1" hide_zero="" text="Fase" />
|
||||
<field x="62.5" y="1" deactivated="" type="Testo" hidden="" align="center" link="" dynamic_height="" shade_offset="" width="6" codval="" id="6" pattern="1" hide_zero="" text="CdC" />
|
||||
<field x="68" y="1" deactivated="" type="Array" hidden="" align="center" link="" dynamic_height="" shade_offset="" width="7" codval="" id="7" pattern="1" hide_zero="" text="">
|
||||
<source>TIPOSTIMA</source>
|
||||
<list>
|
||||
<li Value="% Av." Code="T" />
|
||||
@ -22,35 +16,41 @@
|
||||
<li Value="% Ric." Code="R" />
|
||||
</list>
|
||||
</field>
|
||||
<field x="73" y="1" type="Testo" align="right" width="13" id="69" pattern="1" text="Testata" />
|
||||
<field x="1" y="1" type="Testo" width="4" id="121" pattern="1" text="Cod." />
|
||||
<field x="5" y="1" type="Testo" width="15" id="121" pattern="1" text="Commessa" />
|
||||
<field x="87" type="Stringa" valign="bottom" align="right" width="13" height="2" id="169" pattern="1">
|
||||
<field x="73" y="1" deactivated="" type="Testo" hidden="" align="right" link="" dynamic_height="" shade_offset="" width="13" codval="" id="69" pattern="1" hide_zero="" text="Testata" />
|
||||
<field x="163" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="4" codval="" id="100" pattern="1" hide_zero="" text="Pag.">
|
||||
<font italic="1" face="Arial Narrow" size="7" />
|
||||
</field>
|
||||
<field x="167" deactivated="" type="Numero" hidden="" align="right" link="" dynamic_height="" shade_offset="" width="3" codval="" id="101" pattern="1" hide_zero="" text="">
|
||||
<source>#REPORT.BOOKPAGE</source>
|
||||
</field>
|
||||
<field x="1" y="1" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="4" codval="" id="121" pattern="1" hide_zero="" text="Cod." />
|
||||
<field x="5" y="1" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="15" codval="" id="121" pattern="1" hide_zero="" text="Commessa" />
|
||||
<field x="87" deactivated="" type="Stringa" valign="bottom" hidden="" align="right" link="" dynamic_height="" shade_offset="" width="13" codval="" height="2" id="169" pattern="1" hide_zero="" text="">
|
||||
<source>"MARGINE CONTRIBUZIONE"</source>
|
||||
</field>
|
||||
</section>
|
||||
<section type="Head" level="1" height="5" pattern="1">
|
||||
<field x="1" type="Testo" align="center" width="169" pattern="1" text="BILANCIO DI COMMESSA PER ESERCIZIO">
|
||||
<section repeat="" keep_with_next="" deactivated="" hidden_if_needed="" type="Head" level="1" hidden="" height="5" page_break="" can_break="" pattern="1">
|
||||
<field x="1" deactivated="" type="Testo" hidden="" align="center" link="" dynamic_height="" shade_offset="" width="169" codval="" id="" pattern="1" hide_zero="" text="BILANCIO DI COMMESSA PER ESERCIZIO">
|
||||
<font face="Courier New" size="12" />
|
||||
</field>
|
||||
<field x="2" y="1" type="Testo" width="37" pattern="1" text="Costi e ricavi di Commessa maturati nell'esercizio">
|
||||
<field x="2" y="1" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="37" codval="" id="" pattern="1" hide_zero="" text="Costi e ricavi di Commessa maturati nell'esercizio">
|
||||
<font italic="1" face="Arial Narrow" size="9" />
|
||||
</field>
|
||||
<field x="40" y="1" type="Stringa" width="5" pattern="1">
|
||||
<field x="40" y="1" deactivated="" type="Stringa" hidden="" link="" dynamic_height="" shade_offset="" width="5" codval="" id="" pattern="1" hide_zero="" text="">
|
||||
<font face="Arial" bold="1" size="9" />
|
||||
<source>ANNO</source>
|
||||
</field>
|
||||
<field x="46.5" y="1" type="Testo" width="3" pattern="1" text="Dal">
|
||||
<field x="46.5" y="1" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="3" codval="" id="" pattern="1" hide_zero="" text="Dal">
|
||||
<font italic="1" face="Arial Narrow" size="9" />
|
||||
</field>
|
||||
<field x="50" y="1" type="Data" width="10" pattern="1">
|
||||
<field x="50" y="1" deactivated="" type="Data" hidden="" link="" dynamic_height="" shade_offset="" width="10" codval="" id="" pattern="1" hide_zero="" text="">
|
||||
<font face="Arial Narrow" bold="1" size="9" />
|
||||
<source>DAL</source>
|
||||
</field>
|
||||
<field x="68.5" y="1" type="Testo" width="15" pattern="1" text="Stima avanzamento ">
|
||||
<field x="68.5" y="1" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="15" codval="" id="" pattern="1" hide_zero="" text="Stima avanzamento ">
|
||||
<font italic="1" face="Arial Narrow" size="9" />
|
||||
</field>
|
||||
<field x="85" y="1" type="Array" width="45" pattern="1">
|
||||
<field x="85" y="1" deactivated="" type="Array" hidden="" link="" dynamic_height="" shade_offset="" width="45" codval="" id="" pattern="1" hide_zero="" text="">
|
||||
<font face="Arial Narrow" bold="1" size="9" />
|
||||
<source>TIPOSTIMA</source>
|
||||
<list>
|
||||
@ -59,10 +59,10 @@
|
||||
<li Value="COSTI Consuntivi \ RICAVI Consuntivi" Code="R" />
|
||||
</list>
|
||||
</field>
|
||||
<field x="140.5" y="1" type="Testo" width="20" pattern="1" text="Detrazioni calcolate come">
|
||||
<field x="140.5" y="1" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="20" codval="" id="" pattern="1" hide_zero="" text="Detrazioni calcolate come">
|
||||
<font italic="1" face="Arial Narrow" size="9" />
|
||||
</field>
|
||||
<field x="160" y="1" type="Array" width="10" pattern="1">
|
||||
<field x="160" y="1" deactivated="" type="Array" hidden="" link="" dynamic_height="" shade_offset="" width="10" codval="" id="" pattern="1" hide_zero="" text="">
|
||||
<font face="Arial Narrow" bold="1" size="9" />
|
||||
<source>DETRCONS</source>
|
||||
<list>
|
||||
@ -70,32 +70,32 @@
|
||||
<li Value="Consuntivi" Code="X" />
|
||||
</list>
|
||||
</field>
|
||||
<field x="2" y="2" type="Testo" width="20" pattern="1" text="Include esercizi successivi">
|
||||
<field x="2" y="2" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="20" codval="" id="" pattern="1" hide_zero="" text="Include esercizi successivi">
|
||||
<font italic="1" face="Arial Narrow" size="9" />
|
||||
</field>
|
||||
<field x="22.5" y="2" type="Stringa" width="3" pattern="1">
|
||||
<field x="22.5" y="2" deactivated="" type="Stringa" hidden="" link="" dynamic_height="" shade_offset="" width="3" codval="" id="" pattern="1" hide_zero="" text="">
|
||||
<font face="Arial Narrow" bold="1" size="9" />
|
||||
<source>VITAINTERA</source>
|
||||
</field>
|
||||
<field x="27" y="2" type="Testo" width="12" pattern="1" text="Include inevasi">
|
||||
<field x="27" y="2" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="12" codval="" id="" pattern="1" hide_zero="" text="Include inevasi">
|
||||
<font italic="1" face="Arial Narrow" size="9" />
|
||||
</field>
|
||||
<field x="39" y="2" type="Stringa" width="3" pattern="1">
|
||||
<field x="39" y="2" deactivated="" type="Stringa" hidden="" link="" dynamic_height="" shade_offset="" width="3" codval="" id="" pattern="1" hide_zero="" text="">
|
||||
<font face="Arial Narrow" bold="1" size="9" />
|
||||
<source>INCLUDE_DOCUMENTI</source>
|
||||
</field>
|
||||
<field x="46.5" y="2" type="Testo" width="3" pattern="1" text="Al">
|
||||
<field x="46.5" y="2" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="3" codval="" id="" pattern="1" hide_zero="" text="Al">
|
||||
<font italic="1" face="Arial Narrow" size="9" />
|
||||
</field>
|
||||
<field x="50" y="2" type="Data" width="10" pattern="1">
|
||||
<field x="50" y="2" deactivated="" type="Data" hidden="" link="" dynamic_height="" shade_offset="" width="10" codval="" id="" pattern="1" hide_zero="" text="">
|
||||
<font face="Arial Narrow" bold="1" size="9" />
|
||||
<source>AL</source>
|
||||
<alt_source>DATAFINE</alt_source>
|
||||
</field>
|
||||
<field x="136.5" y="2" type="Testo" width="25" pattern="1" text="Profondita' della struttura in esame">
|
||||
<field x="136.5" y="2" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="25" codval="" id="" pattern="1" hide_zero="" text="Profondita' della struttura in esame">
|
||||
<font italic="1" face="Arial Narrow" size="9" />
|
||||
</field>
|
||||
<field x="163" y="2" type="Array" width="7" pattern="1">
|
||||
<field x="163" y="2" deactivated="" type="Array" hidden="" link="" dynamic_height="" shade_offset="" width="7" codval="" id="" pattern="1" hide_zero="" text="">
|
||||
<font face="Arial Narrow" bold="1" size="9" />
|
||||
<source>DEPTH</source>
|
||||
<list>
|
||||
@ -103,44 +103,44 @@
|
||||
<li Value="Conto" Code="2" />
|
||||
</list>
|
||||
</field>
|
||||
<field x="2" y="3" type="Testo" width="10" pattern="1" text="Legenda : ">
|
||||
<field x="2" y="3" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="10" codval="" id="" pattern="1" hide_zero="" text="Legenda : ">
|
||||
<font face="Arial Narrow" size="8" />
|
||||
</field>
|
||||
<field x="11" y="3" type="Testo" width="65" pattern="1" text="CTAP - Commesse Terminate nell'esercizio e avviate in esercizi precedenti">
|
||||
<field x="11" y="3" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="65" codval="" id="" pattern="1" hide_zero="" text="CTAP - Commesse Terminate nell'esercizio e avviate in esercizi precedenti">
|
||||
<font face="Arial Narrow" size="8" />
|
||||
</field>
|
||||
<field x="75.5" y="3" type="Testo" width="67" pattern="1" text="CCAP - Commesse che terminano oltre l'esercizio corrente e avviate in esecizi precedenti">
|
||||
<field x="75.5" y="3" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="67" codval="" id="" pattern="1" hide_zero="" text="CCAP - Commesse che terminano oltre l'esercizio corrente e avviate in esecizi precedenti">
|
||||
<font face="Arial Narrow" size="8" />
|
||||
</field>
|
||||
<field x="143" y="3" type="Testo" width="35" pattern="1" text="CTGG - Commesse di servizio">
|
||||
<field x="143" y="3" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="35" codval="" id="" pattern="1" hide_zero="" text="CTGG - Commesse di servizio">
|
||||
<font face="Arial Narrow" size="8" />
|
||||
</field>
|
||||
<field x="11" y="4" type="Testo" width="65" pattern="1" text="CTAC - Commesse Terminano oltre l'esercizio corrente e avviate in esecizi precedenti">
|
||||
<field x="11" y="4" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="65" codval="" id="" pattern="1" hide_zero="" text="CTAC - Commesse Terminano oltre l'esercizio corrente e avviate in esecizi precedenti">
|
||||
<font face="Arial Narrow" size="8" />
|
||||
</field>
|
||||
<field x="75.5" y="4" type="Testo" width="68" pattern="1" text="CCAC - Commesse che terminano oltre l'esercizio corrente e avviate nell'esercizio corrente">
|
||||
<field x="75.5" y="4" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="68" codval="" id="" pattern="1" hide_zero="" text="CCAC - Commesse che terminano oltre l'esercizio corrente e avviate nell'esercizio corrente">
|
||||
<font face="Arial Narrow" size="8" />
|
||||
</field>
|
||||
</section>
|
||||
<section type="Body" pattern="1" />
|
||||
<section type="Body" level="1" pattern="1">
|
||||
<section repeat="" keep_with_next="" deactivated="" hidden_if_needed="" type="Body" level="" hidden="" page_break="" can_break="" pattern="1" />
|
||||
<section repeat="" keep_with_next="" deactivated="" hidden_if_needed="" type="Body" level="1" hidden="" page_break="" can_break="" pattern="1">
|
||||
<prescript description="B1 PRESCRIPT">1 #H4.3 \ incrementa il contatore per il numero di righe di fase
|
||||
+!</prescript>
|
||||
<field x="5" type="Stringa" width="17" id="1" pattern="1">
|
||||
<field x="5" deactivated="" type="Stringa" hidden="" link="" dynamic_height="" shade_offset="" width="17" codval="" id="1" pattern="1" hide_zero="" text="">
|
||||
<source>CODCMS</source>
|
||||
</field>
|
||||
<field x="22" type="Stringa" width="25" id="2" pattern="1">
|
||||
<field x="22" deactivated="" type="Stringa" hidden="" link="" dynamic_height="" shade_offset="" width="25" codval="" id="2" pattern="1" hide_zero="" text="">
|
||||
<source>DESCRIZ</source>
|
||||
</field>
|
||||
<field x="47" type="Data" align="center" width="6" id="3" pattern="1">
|
||||
<field x="47" deactivated="" type="Data" hidden="" align="center" link="" dynamic_height="" shade_offset="" width="6" codval="" id="3" pattern="1" hide_zero="" text="">
|
||||
<source>DATAINI</source>
|
||||
</field>
|
||||
<field x="53" type="Data" align="center" width="6" id="4" pattern="1">
|
||||
<field x="53" deactivated="" type="Data" hidden="" align="center" link="" dynamic_height="" shade_offset="" width="6" codval="" id="4" pattern="1" hide_zero="" text="">
|
||||
<source>DATAFINE</source>
|
||||
</field>
|
||||
<field x="59" type="Stringa" width="9" id="5" pattern="1">
|
||||
<field x="59" deactivated="" type="Stringa" hidden="" link="" dynamic_height="" shade_offset="" width="9" codval="" id="5" pattern="1" hide_zero="" text="">
|
||||
<source>FASE</source>
|
||||
<prescript>#STAMPAFASI @
|
||||
<prescript description="">#STAMPAFASI @
|
||||
EMPTY= IF
|
||||
#THIS HIDE
|
||||
ELSE
|
||||
@ -148,7 +148,7 @@ ELSE
|
||||
THEN
|
||||
</prescript>
|
||||
</field>
|
||||
<field x="68" type="Stringa" width="5" id="6" pattern="1">
|
||||
<field x="68" deactivated="" type="Stringa" hidden="" link="" dynamic_height="" shade_offset="" width="5" codval="" id="6" pattern="1" hide_zero="" text="">
|
||||
<source>CDC</source>
|
||||
<prescript description="B1.6 PRESCRIPT">#STAMPACDC @
|
||||
EMPTY= IF
|
||||
@ -158,11 +158,11 @@ ELSE
|
||||
THEN
|
||||
</prescript>
|
||||
</field>
|
||||
<field x="73" type="Numero" align="right" width="3.5" id="7" pattern="1">
|
||||
<field x="73" deactivated="" type="Numero" hidden="" align="right" link="" dynamic_height="" shade_offset="" width="3.5" codval="" id="7" pattern="1" hide_zero="" text="">
|
||||
<font italic="1" face="Arial Narrow" size="7" />
|
||||
<source>ROUND(AVANZAMENTO;0)</source>
|
||||
</field>
|
||||
<field x="1" type="Array" width="4" id="10" pattern="1">
|
||||
<field x="1" deactivated="" type="Array" hidden="" link="" dynamic_height="" shade_offset="" width="4" codval="" id="10" pattern="1" hide_zero="" text="">
|
||||
<source>LEVEL</source>
|
||||
<list>
|
||||
<li Value="CTAP" Code="0" />
|
||||
@ -172,13 +172,13 @@ THEN
|
||||
<li Value="CTGG" Code="4" />
|
||||
</list>
|
||||
</field>
|
||||
<field x="76.5" type="Valuta" align="right" width="13" id="69" pattern="1" text="###.###.###,@@" />
|
||||
<field x="89.5" type="Valuta" align="right" width="13" id="169" pattern="1" text="###.###.###,@@">
|
||||
<field x="76.5" deactivated="" type="Valuta" hidden="" align="right" link="" dynamic_height="" shade_offset="" width="13" codval="" id="69" pattern="1" hide_zero="" text="###.###.###,@@" />
|
||||
<field x="89.5" deactivated="" type="Valuta" hidden="" align="right" link="" dynamic_height="" shade_offset="" width="13" codval="" id="169" pattern="1" hide_zero="" text="###.###.###,@@">
|
||||
<source>#RICAVI-#COSTI</source>
|
||||
</field>
|
||||
<field x="103" type="Numero" align="right" width="4" id="170" pattern="1" text="####">
|
||||
<field x="103" deactivated="" type="Numero" hidden="" align="right" link="" dynamic_height="" shade_offset="" width="4" codval="" id="170" pattern="1" hide_zero="" text="####">
|
||||
<font italic="1" face="Arial Narrow" size="7" />
|
||||
<prescript>#RICAVI @
|
||||
<prescript description="">#RICAVI @
|
||||
EMPTY= IF
|
||||
0
|
||||
ELSE
|
||||
@ -198,16 +198,16 @@ ELSE
|
||||
THEN
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="106.5" type="Testo" align="center" width="2" id="171" pattern="1" text="%" />
|
||||
<field type="Numero" hidden="1" align="right" width="1" id="200" pattern="1">
|
||||
<field x="106.5" deactivated="" type="Testo" hidden="" align="center" link="" dynamic_height="" shade_offset="" width="2" codval="" id="171" pattern="1" hide_zero="" text="%" />
|
||||
<field deactivated="" type="Numero" hidden="1" align="right" link="" dynamic_height="" shade_offset="" width="1" codval="" id="200" pattern="1" hide_zero="" text="">
|
||||
<prescript description="B1.200 PRESCRIPT">#THIS @
|
||||
1
|
||||
+
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
</section>
|
||||
<section type="Foot" pattern="1" />
|
||||
<section type="Foot" level="1" pattern="1">
|
||||
<section repeat="" keep_with_next="" deactivated="" hidden_if_needed="" type="Foot" level="" hidden="" page_break="" can_break="" pattern="1" />
|
||||
<section repeat="" keep_with_next="" deactivated="" hidden_if_needed="" type="Foot" level="1" hidden="" page_break="" can_break="" pattern="1">
|
||||
<font italic="1" face="Arial Narrow" bold="1" size="7" />
|
||||
</section>
|
||||
<sql>USE SALDANA</sql>
|
||||
|
@ -1,53 +1,53 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<report libraries="ve1300" name="ca3800b" orientation="2" lpi="6" class="ca3800b">
|
||||
<report libraries="ve1300" page_merge="" save_printer="" name="ca3800b" use_printer_font="" orientation="2" page_split="" lpi="6" command="" class="ca3800b">
|
||||
<description>Bilancio commessa CA riassuntivo per fasi</description>
|
||||
<font face="Arial Narrow" size="8" />
|
||||
<section type="Head" pattern="1">
|
||||
<section repeat="" keep_with_next="" deactivated="" hidden_if_needed="" type="Head" level="" hidden="" page_break="" can_break="" pattern="1">
|
||||
<font italic="1" face="Arial Narrow" bold="1" size="8" />
|
||||
<field x="1" type="Stringa" width="50" pattern="1">
|
||||
<field x="1" deactivated="" type="Stringa" hidden="" link="" dynamic_height="" shade_offset="" width="50" codval="" id="" pattern="1" hide_zero="" text="">
|
||||
<source>#SYSTEM.RAGSOC</source>
|
||||
</field>
|
||||
<field x="60" type="Testo" width="10" pattern="1" text="Data stampa">
|
||||
<field x="60" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="10" codval="" id="" pattern="1" hide_zero="" text="Data stampa">
|
||||
<font italic="1" face="Arial Narrow" size="8" />
|
||||
</field>
|
||||
<field x="70" type="Data" width="12" pattern="1">
|
||||
<field x="70" deactivated="" type="Data" hidden="" link="" dynamic_height="" shade_offset="" width="12" codval="" id="" pattern="1" hide_zero="" text="">
|
||||
<source>#SYSTEM.DATE</source>
|
||||
</field>
|
||||
<field x="120" type="Testo" width="4" pattern="1" text="Pag.">
|
||||
<field x="120" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="4" codval="" id="" pattern="1" hide_zero="" text="Pag.">
|
||||
<font italic="1" face="Arial Narrow" size="8" />
|
||||
</field>
|
||||
<field x="124" type="Numero" align="right" width="3" pattern="1">
|
||||
<source>#REPORT.PAGE</source>
|
||||
<field x="124" deactivated="" type="Numero" hidden="" align="right" link="" dynamic_height="" shade_offset="" width="3" codval="" id="" pattern="1" hide_zero="" text="">
|
||||
<source>#REPORT.BOOKPAGE</source>
|
||||
</field>
|
||||
<field x="10" y="2" type="Stringa" width="12" pattern="1">
|
||||
<field x="10" y="2" deactivated="" type="Stringa" hidden="" link="" dynamic_height="" shade_offset="" width="12" codval="" id="" pattern="1" hide_zero="" text="">
|
||||
<font face="Arial" bold="1" size="10" />
|
||||
<source>FASESPEC</source>
|
||||
</field>
|
||||
<field border="1" x="1" y="3" type="Linea" width="169" height="0" pattern="1" />
|
||||
<field x="35" y="1" type="Testo" valign="bottom" align="right" width="13" height="2" id="69" pattern="1" text="Testata" />
|
||||
<field x="1" y="2" type="Testo" width="8" id="121" pattern="1" text="Fase" />
|
||||
<field x="50" y="1" type="Stringa" align="center" width="13" height="2" id="169" pattern="1">
|
||||
<field border="1" x="1" y="3" deactivated="" type="Linea" hidden="" link="" dynamic_height="" shade_offset="" width="169" codval="" height="0" id="" pattern="1" hide_zero="" text="" />
|
||||
<field x="35" y="1" deactivated="" type="Testo" valign="bottom" hidden="" align="right" link="" dynamic_height="" shade_offset="" width="13" codval="" height="2" id="69" pattern="1" hide_zero="" text="Testata" />
|
||||
<field x="1" y="2" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="8" codval="" id="121" pattern="1" hide_zero="" text="Fase" />
|
||||
<field x="50" y="1" deactivated="" type="Stringa" hidden="" align="center" link="" dynamic_height="" shade_offset="" width="13" codval="" height="2" id="169" pattern="1" hide_zero="" text="">
|
||||
<source>"MARGINE CONTRIBUZIONE"</source>
|
||||
</field>
|
||||
</section>
|
||||
<section type="Head" level="1" pattern="1">
|
||||
<field border="1" radius="100" x="2" type="Testo" valign="center" align="center" shade_offset="25" width="168" height="2.5" pattern="2" text="BILANCIO DI COMMESSA PER ESERCIZIO RAGGRUPPATO PER FASI">
|
||||
<section repeat="" keep_with_next="" deactivated="" hidden_if_needed="" type="Head" level="1" hidden="" page_break="" can_break="" pattern="1">
|
||||
<field border="1" radius="100" x="2" deactivated="" type="Testo" valign="center" hidden="" align="center" link="" dynamic_height="" shade_offset="25" width="168" codval="" height="2.5" id="" pattern="2" hide_zero="" text="BILANCIO DI COMMESSA PER ESERCIZIO RAGGRUPPATO PER FASI">
|
||||
<font face="Courier New" bold="1" size="16" />
|
||||
</field>
|
||||
<field x="2" y="3" type="Testo" width="35" pattern="1" text="Costi e ricavi di Commessa maturati nell'esercizio">
|
||||
<field x="2" y="3" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="35" codval="" id="" pattern="1" hide_zero="" text="Costi e ricavi di Commessa maturati nell'esercizio">
|
||||
<font italic="1" face="Arial Narrow" size="9" />
|
||||
</field>
|
||||
<field x="45" y="3" type="Testo" width="3" pattern="1" text="Dal">
|
||||
<field x="45" y="3" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="3" codval="" id="" pattern="1" hide_zero="" text="Dal">
|
||||
<font italic="1" face="Arial Narrow" size="9" />
|
||||
</field>
|
||||
<field x="48.5" y="3" type="Data" width="10" pattern="1">
|
||||
<field x="48.5" y="3" deactivated="" type="Data" hidden="" link="" dynamic_height="" shade_offset="" width="10" codval="" id="" pattern="1" hide_zero="" text="">
|
||||
<font face="Arial Narrow" bold="1" size="9" />
|
||||
<source>DAL</source>
|
||||
</field>
|
||||
<field x="65" y="3" type="Testo" width="15" pattern="1" text="Stima avanzamento ">
|
||||
<field x="65" y="3" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="15" codval="" id="" pattern="1" hide_zero="" text="Stima avanzamento ">
|
||||
<font italic="1" face="Arial Narrow" size="9" />
|
||||
</field>
|
||||
<field x="80" y="3" type="Array" width="35" pattern="1">
|
||||
<field x="80" y="3" deactivated="" type="Array" hidden="" link="" dynamic_height="" shade_offset="" width="35" codval="" id="" pattern="1" hide_zero="" text="">
|
||||
<font face="Arial Narrow" bold="1" size="9" />
|
||||
<source>TIPOSTIMA</source>
|
||||
<list>
|
||||
@ -56,10 +56,10 @@
|
||||
<li Value="COSTI Consuntivi \ RICAVI Consuntivi" Code="R" />
|
||||
</list>
|
||||
</field>
|
||||
<field x="134" y="3" type="Testo" width="20" pattern="1" text="Detrazioni calcolate come">
|
||||
<field x="134" y="3" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="20" codval="" id="" pattern="1" hide_zero="" text="Detrazioni calcolate come">
|
||||
<font italic="1" face="Arial Narrow" size="9" />
|
||||
</field>
|
||||
<field x="159" y="3" type="Array" width="10" pattern="1">
|
||||
<field x="159" y="3" deactivated="" type="Array" hidden="" link="" dynamic_height="" shade_offset="" width="10" codval="" id="" pattern="1" hide_zero="" text="">
|
||||
<font face="Arial Narrow" bold="1" size="9" />
|
||||
<source>DETRCONS</source>
|
||||
<list>
|
||||
@ -67,10 +67,10 @@
|
||||
<li Value="Consuntivi" Code="X" />
|
||||
</list>
|
||||
</field>
|
||||
<field x="134" y="4" type="Testo" width="25" pattern="1" text="Profondita' della struttura in esame">
|
||||
<field x="134" y="4" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="25" codval="" id="" pattern="1" hide_zero="" text="Profondita' della struttura in esame">
|
||||
<font italic="1" face="Arial Narrow" size="9" />
|
||||
</field>
|
||||
<field x="159" y="4" type="Array" width="7" pattern="1">
|
||||
<field x="159" y="4" deactivated="" type="Array" hidden="" link="" dynamic_height="" shade_offset="" width="7" codval="" id="" pattern="1" hide_zero="" text="">
|
||||
<font face="Arial Narrow" bold="1" size="9" />
|
||||
<source>DEPTH</source>
|
||||
<list>
|
||||
@ -78,46 +78,46 @@
|
||||
<li Value="Conto" Code="2" />
|
||||
</list>
|
||||
</field>
|
||||
<field x="2" y="4.25" type="Testo" width="20" pattern="1" text="Include esercizi successivi">
|
||||
<field x="2" y="4.25" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="20" codval="" id="" pattern="1" hide_zero="" text="Include esercizi successivi">
|
||||
<font italic="1" face="Arial Narrow" size="9" />
|
||||
</field>
|
||||
<field x="22" y="4.25" type="Stringa" width="3" pattern="1">
|
||||
<field x="22" y="4.25" deactivated="" type="Stringa" hidden="" link="" dynamic_height="" shade_offset="" width="3" codval="" id="" pattern="1" hide_zero="" text="">
|
||||
<font face="Arial Narrow" bold="1" size="9" />
|
||||
<source>VITAINTERA</source>
|
||||
</field>
|
||||
<field x="26.5" y="4.25" type="Testo" width="12" pattern="1" text="Include inevasi">
|
||||
<field x="26.5" y="4.25" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="12" codval="" id="" pattern="1" hide_zero="" text="Include inevasi">
|
||||
<font italic="1" face="Arial Narrow" size="9" />
|
||||
</field>
|
||||
<field x="39" y="4.25" type="Stringa" width="3" pattern="1">
|
||||
<field x="39" y="4.25" deactivated="" type="Stringa" hidden="" link="" dynamic_height="" shade_offset="" width="3" codval="" id="" pattern="1" hide_zero="" text="">
|
||||
<font face="Arial Narrow" bold="1" size="9" />
|
||||
<source>INCLUDE_DOCUMENTI</source>
|
||||
</field>
|
||||
<field x="45" y="4.25" type="Testo" width="3" pattern="1" text="Al">
|
||||
<field x="45" y="4.25" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="3" codval="" id="" pattern="1" hide_zero="" text="Al">
|
||||
<font italic="1" face="Arial Narrow" size="9" />
|
||||
</field>
|
||||
<field x="48.5" y="4.25" type="Data" width="10" pattern="1">
|
||||
<field x="48.5" y="4.25" deactivated="" type="Data" hidden="" link="" dynamic_height="" shade_offset="" width="10" codval="" id="" pattern="1" hide_zero="" text="">
|
||||
<font face="Arial Narrow" bold="1" size="9" />
|
||||
<source>AL</source>
|
||||
<alt_source>DATAFINE</alt_source>
|
||||
</field>
|
||||
<field x="65" y="4.25" type="Testo" width="15" pattern="1" text="Fase">
|
||||
<field x="65" y="4.25" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="15" codval="" id="" pattern="1" hide_zero="" text="Fase">
|
||||
<font italic="1" face="Arial Narrow" size="9" />
|
||||
</field>
|
||||
<field border="2" x="1" y="5.5" type="Linea" width="169" height="0" pattern="1" />
|
||||
<field x="80" y="4.25" type="Stringa" width="10" id="1" pattern="1">
|
||||
<field border="2" x="1" y="5.5" deactivated="" type="Linea" hidden="" link="" dynamic_height="" shade_offset="" width="169" codval="" height="0" id="" pattern="1" hide_zero="" text="" />
|
||||
<field x="80" y="4.25" deactivated="" type="Stringa" hidden="" link="" dynamic_height="" shade_offset="" width="10" codval="" id="1" pattern="1" hide_zero="" text="">
|
||||
<font face="Arial Narrow" bold="1" size="9" />
|
||||
<source>FASESPEC</source>
|
||||
<postscript description="H1.1 POSTSCRIPT">MESSAGE COPY,F1.2</postscript>
|
||||
</field>
|
||||
<field x="37" y="3" type="Stringa" width="4" id="2" pattern="1">
|
||||
<field x="37" y="3" deactivated="" type="Stringa" hidden="" link="" dynamic_height="" shade_offset="" width="4" codval="" id="2" pattern="1" hide_zero="" text="">
|
||||
<font face="Arial Narrow" bold="1" size="9" />
|
||||
<source>ANNO</source>
|
||||
</field>
|
||||
</section>
|
||||
<section type="Head" level="2" height="1.5" pattern="1">
|
||||
<section repeat="" keep_with_next="" deactivated="" hidden_if_needed="" type="Head" level="2" hidden="" height="1.5" page_break="" can_break="" pattern="1">
|
||||
<groupby>(LEVELC;2)||(LEVEL=4)</groupby>
|
||||
<font italic="1" face="Arial Narrow" size="8" />
|
||||
<field x="1" type="Array" bg_color="#C0C0C0" width="25" pattern="2">
|
||||
<field x="1" deactivated="" type="Array" hidden="" link="" bg_color="#C0C0C0" dynamic_height="" shade_offset="" width="25" codval="" id="" pattern="2" hide_zero="" text="">
|
||||
<source>LEVEL</source>
|
||||
<list>
|
||||
<li Value="Commesse terminate nel" Code="0" />
|
||||
@ -127,22 +127,22 @@
|
||||
<li Value="Commesse di supporto del" Code="4" />
|
||||
</list>
|
||||
</field>
|
||||
<field x="23" type="Numero" align="right" bg_color="#C0C0C0" width="6" pattern="2">
|
||||
<field x="23" deactivated="" type="Numero" hidden="" align="right" link="" bg_color="#C0C0C0" dynamic_height="" shade_offset="" width="6" codval="" id="" pattern="2" hide_zero="" text="">
|
||||
<source>ANNO</source>
|
||||
</field>
|
||||
<field type="Numero" hidden="1" align="right" width="1" id="101" pattern="1">
|
||||
<field deactivated="" type="Numero" hidden="1" align="right" link="" dynamic_height="" shade_offset="" width="1" codval="" id="101" pattern="1" hide_zero="" text="">
|
||||
<source>LEVEL</source>
|
||||
<postscript description="H2.101 POSTSCRIPT">MESSAGE COPY,F2.101</postscript>
|
||||
</field>
|
||||
<field x="29" type="Numero" hidden="1" align="right" width="4" id="102" pattern="1">
|
||||
<field x="29" deactivated="" type="Numero" hidden="1" align="right" link="" dynamic_height="" shade_offset="" width="4" codval="" id="102" pattern="1" hide_zero="" text="">
|
||||
<source>ANNO</source>
|
||||
<postscript description="H2.102 POSTSCRIPT">MESSAGE COPY,F2.102</postscript>
|
||||
</field>
|
||||
</section>
|
||||
<section type="Head" level="3" hidden="1" height="1.5" pattern="1">
|
||||
<section repeat="" keep_with_next="" deactivated="" hidden_if_needed="" type="Head" level="3" hidden="1" height="1.5" page_break="" can_break="" pattern="1">
|
||||
<groupby>LEVEL</groupby>
|
||||
<font italic="1" face="Arial Narrow" size="8" />
|
||||
<field x="3" type="Array" bg_color="#C0C0C0" width="45" pattern="1">
|
||||
<field x="3" deactivated="" type="Array" hidden="" link="" bg_color="#C0C0C0" dynamic_height="" shade_offset="" width="45" codval="" id="" pattern="1" hide_zero="" text="">
|
||||
<source>LEVEL</source>
|
||||
<list>
|
||||
<li Value="Commesse avviate in esercizi precedenti" Code="0" />
|
||||
@ -152,28 +152,28 @@
|
||||
<li Value="Commesse di supporto dell'esercizio selezionato" Code="4" />
|
||||
</list>
|
||||
</field>
|
||||
<field border="1" x="2" y="1.25" type="Linea" width="169" height="0" pattern="1" />
|
||||
<field type="Numero" hidden="1" align="right" width="1" id="101" pattern="1">
|
||||
<field border="1" x="2" y="1.25" deactivated="" type="Linea" hidden="" link="" dynamic_height="" shade_offset="" width="169" codval="" height="0" id="" pattern="1" hide_zero="" text="" />
|
||||
<field deactivated="" type="Numero" hidden="1" align="right" link="" dynamic_height="" shade_offset="" width="1" codval="" id="101" pattern="1" hide_zero="" text="">
|
||||
<source>LEVEL</source>
|
||||
<postscript description="H3.101 POSTSCRIPT">MESSAGE COPY,F3.101</postscript>
|
||||
</field>
|
||||
</section>
|
||||
<section type="Body" pattern="1" />
|
||||
<section type="Body" level="1" hidden="1" pattern="1">
|
||||
<section repeat="" keep_with_next="" deactivated="" hidden_if_needed="" type="Body" level="" hidden="" page_break="" can_break="" pattern="1" />
|
||||
<section repeat="" keep_with_next="" deactivated="" hidden_if_needed="" type="Body" level="1" hidden="1" page_break="" can_break="" pattern="1">
|
||||
<prescript description="B1 PRESCRIPT">1 #H4.3 \ incrementa il contatore per il numero di righe di fase
|
||||
+!</prescript>
|
||||
<field x="65.5" type="Testo" align="center" width="2" pattern="1" text="%" />
|
||||
<field x="1" type="Stringa" width="20" id="1" pattern="1">
|
||||
<field x="65.5" deactivated="" type="Testo" hidden="" align="center" link="" dynamic_height="" shade_offset="" width="2" codval="" id="" pattern="1" hide_zero="" text="%" />
|
||||
<field x="1" deactivated="" type="Stringa" hidden="" link="" dynamic_height="" shade_offset="" width="20" codval="" id="1" pattern="1" hide_zero="" text="">
|
||||
<source>CODCMS</source>
|
||||
</field>
|
||||
<field x="35" type="Valuta" align="right" width="13" id="69" pattern="1" text="###.###.###,@@">
|
||||
<field x="35" deactivated="" type="Valuta" hidden="" align="right" link="" dynamic_height="" shade_offset="" width="13" codval="" id="69" pattern="1" hide_zero="" text="###.###.###,@@">
|
||||
<postscript description="B1.69 POSTSCRIPT">MESSAGE ADD,F3.69</postscript>
|
||||
</field>
|
||||
<field x="48.5" type="Valuta" align="right" width="13" id="169" pattern="1" text="###.###.###,@@">
|
||||
<field x="48.5" deactivated="" type="Valuta" hidden="" align="right" link="" dynamic_height="" shade_offset="" width="13" codval="" id="169" pattern="1" hide_zero="" text="###.###.###,@@">
|
||||
<source>#RICAVI-#COSTI</source>
|
||||
<postscript description="B1.169 POSTSCRIPT">MESSAGE ADD,F3.169</postscript>
|
||||
</field>
|
||||
<field x="61.5" type="Numero" align="right" width="4" id="170" pattern="1" text="####">
|
||||
<field x="61.5" deactivated="" type="Numero" hidden="" align="right" link="" dynamic_height="" shade_offset="" width="4" codval="" id="170" pattern="1" hide_zero="" text="####">
|
||||
<font italic="1" face="Arial Narrow" size="8" />
|
||||
<prescript description="B1.170 PRESCRIPT">#RICAVI @
|
||||
EMPTY= IF
|
||||
@ -196,31 +196,31 @@
|
||||
#THIS !
|
||||
</prescript>
|
||||
</field>
|
||||
<field x="65.5" type="Testo" align="center" width="2" id="171" pattern="1" text="%" />
|
||||
<field x="65.5" deactivated="" type="Testo" hidden="" align="center" link="" dynamic_height="" shade_offset="" width="2" codval="" id="171" pattern="1" hide_zero="" text="%" />
|
||||
</section>
|
||||
<section type="Foot" pattern="1">
|
||||
<field border="1" x="1" y="0.25" type="Linea" width="169" height="0" pattern="1" />
|
||||
<field x="2" y="0.75" type="Testo" width="25" pattern="1" text="Bilancio di commessa per esercizio">
|
||||
<section repeat="" keep_with_next="" deactivated="" hidden_if_needed="" type="Foot" level="" hidden="" page_break="" can_break="" pattern="1">
|
||||
<field border="1" x="1" y="0.25" deactivated="" type="Linea" hidden="" link="" dynamic_height="" shade_offset="" width="169" codval="" height="0" id="" pattern="1" hide_zero="" text="" />
|
||||
<field x="2" y="0.75" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="25" codval="" id="" pattern="1" hide_zero="" text="Bilancio di commessa per esercizio">
|
||||
<font italic="1" face="Arial Narrow" bold="1" size="8" />
|
||||
</field>
|
||||
<field x="28.5" y="0.75" type="Stringa" width="5" pattern="1">
|
||||
<field x="28.5" y="0.75" deactivated="" type="Stringa" hidden="" link="" dynamic_height="" shade_offset="" width="5" codval="" id="" pattern="1" hide_zero="" text="">
|
||||
<font face="Arial Narrow" bold="1" size="9" />
|
||||
<source>H1.2</source>
|
||||
</field>
|
||||
</section>
|
||||
<section type="Foot" level="1" height="3" pattern="1">
|
||||
<section repeat="" keep_with_next="" deactivated="" hidden_if_needed="" type="Foot" level="1" hidden="" height="3" page_break="" can_break="" pattern="1">
|
||||
<font italic="1" face="Arial Narrow" bold="1" size="8" />
|
||||
<field border="2" x="1" y="0.5" type="Linea" width="169" height="0" pattern="1" />
|
||||
<field x="1" y="1" type="Testo" valign="center" fg_color="#FFFFFF" bg_color="#000000" width="20" id="1" pattern="2" text="TOTALI GENERALI " />
|
||||
<field x="21" y="1" type="Stringa" valign="center" fg_color="#FFFFFF" bg_color="#400040" width="15" id="2" pattern="2">
|
||||
<field border="2" x="1" y="0.5" deactivated="" type="Linea" hidden="" link="" dynamic_height="" shade_offset="" width="169" codval="" height="0" id="" pattern="1" hide_zero="" text="" />
|
||||
<field x="1" y="1" deactivated="" type="Testo" valign="center" hidden="" link="" fg_color="#FFFFFF" bg_color="#000000" dynamic_height="" shade_offset="" width="20" codval="" id="1" pattern="2" hide_zero="" text="TOTALI GENERALI " />
|
||||
<field x="21" y="1" deactivated="" type="Stringa" valign="center" hidden="" link="" fg_color="#FFFFFF" bg_color="#400040" dynamic_height="" shade_offset="" width="15" codval="" id="2" pattern="2" hide_zero="" text="">
|
||||
<font italic="1" face="Arial" bold="1" size="8" />
|
||||
</field>
|
||||
<field x="36" y="1" type="Valuta" align="right" width="13" id="69" pattern="1" text="###.###.###,@@" />
|
||||
<field x="49.5" y="1" type="Valuta" align="right" width="13" id="169" pattern="1" text="###.###.###,@@">
|
||||
<field x="36" y="1" deactivated="" type="Valuta" hidden="" align="right" link="" dynamic_height="" shade_offset="" width="13" codval="" id="69" pattern="1" hide_zero="" text="###.###.###,@@" />
|
||||
<field x="49.5" y="1" deactivated="" type="Valuta" hidden="" align="right" link="" dynamic_height="" shade_offset="" width="13" codval="" id="169" pattern="1" hide_zero="" text="###.###.###,@@">
|
||||
<postscript description="F1.169 POSTSCRIPT">MESSAGE RESET,169</postscript>
|
||||
</field>
|
||||
</section>
|
||||
<section type="Foot" level="2" height="4.5" pattern="1">
|
||||
<section repeat="" keep_with_next="" deactivated="" hidden_if_needed="" type="Foot" level="2" hidden="" height="4.5" page_break="" can_break="" pattern="1">
|
||||
<font italic="1" face="Courier New" size="8" />
|
||||
<prescript description="F2 PRESCRIPT">#LEVEL @
|
||||
	4 = IF
|
||||
@ -228,8 +228,8 @@
|
||||
	ELSE
|
||||
	 "90@" DISABLE
|
||||
THEN</prescript>
|
||||
<field border="1" x="1" y="0.5" type="Linea" width="169" height="0" pattern="1" />
|
||||
<field x="1" y="1" type="Array" bg_color="#C0C0C0" width="30" pattern="2">
|
||||
<field border="1" x="1" y="0.5" deactivated="" type="Linea" hidden="" link="" dynamic_height="" shade_offset="" width="169" codval="" height="0" id="" pattern="1" hide_zero="" text="" />
|
||||
<field x="1" y="1" deactivated="" type="Array" hidden="" link="" bg_color="#C0C0C0" dynamic_height="" shade_offset="" width="30" codval="" id="" pattern="2" hide_zero="" text="">
|
||||
<font italic="1" face="Arial Narrow" size="8" />
|
||||
<source>H2.101</source>
|
||||
<list>
|
||||
@ -240,39 +240,39 @@
|
||||
<li Value="TOTALI Commesse di supporto del" Code="4" />
|
||||
</list>
|
||||
</field>
|
||||
<field x="29" y="1" type="Numero" align="right" bg_color="#C0C0C0" width="6" pattern="2">
|
||||
<field x="29" y="1" deactivated="" type="Numero" hidden="" align="right" link="" bg_color="#C0C0C0" dynamic_height="" shade_offset="" width="6" codval="" id="" pattern="2" hide_zero="" text="">
|
||||
<font italic="1" face="Arial Narrow" size="8" />
|
||||
<source>H2.102</source>
|
||||
</field>
|
||||
<field border="1" x="1" y="3.25" deactivated="1" type="Linea" width="169" height="0" pattern="1">
|
||||
<field border="1" x="1" y="3.25" deactivated="1" type="Linea" hidden="" link="" dynamic_height="" shade_offset="" width="169" codval="" height="0" id="" pattern="1" hide_zero="" text="">
|
||||
<groups>90</groups>
|
||||
</field>
|
||||
<field x="1" y="3.5" deactivated="1" type="Testo" fg_color="#FFFFFF" bg_color="#808080" width="30" pattern="2" text="TOTALI commesse normali relative al">
|
||||
<field x="1" y="3.5" deactivated="1" type="Testo" hidden="" link="" fg_color="#FFFFFF" bg_color="#808080" dynamic_height="" shade_offset="" width="30" codval="" id="" pattern="2" hide_zero="" text="TOTALI commesse normali relative al">
|
||||
<font italic="1" face="Arial Narrow" bold="1" size="8" />
|
||||
<groups>90</groups>
|
||||
</field>
|
||||
<field x="31" y="3.5" type="Numero" align="right" fg_color="#FFFFFF" bg_color="#808080" width="6" pattern="2">
|
||||
<field x="31" y="3.5" deactivated="" type="Numero" hidden="" align="right" link="" fg_color="#FFFFFF" bg_color="#808080" dynamic_height="" shade_offset="" width="6" codval="" id="" pattern="2" hide_zero="" text="">
|
||||
<font italic="1" face="Arial Narrow" bold="1" size="8" />
|
||||
<groups>90</groups>
|
||||
<source>H2.102</source>
|
||||
</field>
|
||||
<field x="39" y="1" type="Valuta" align="right" width="13" id="69" pattern="1" text="###.###.###,@@">
|
||||
<field x="39" y="1" deactivated="" type="Valuta" hidden="" align="right" link="" dynamic_height="" shade_offset="" width="13" codval="" id="69" pattern="1" hide_zero="" text="###.###.###,@@">
|
||||
<font italic="1" face="Arial Narrow" bold="1" size="8" />
|
||||
<postscript description="F2.69 POSTSCRIPT">MESSAGE ADD,F1.69</postscript>
|
||||
</field>
|
||||
<field y="1" type="Numero" hidden="1" align="right" width="1" id="101" pattern="1" />
|
||||
<field x="35" y="1" type="Numero" hidden="1" align="right" width="4" id="102" pattern="1">
|
||||
<field y="1" deactivated="" type="Numero" hidden="1" align="right" link="" dynamic_height="" shade_offset="" width="1" codval="" id="101" pattern="1" hide_zero="" text="" />
|
||||
<field x="35" y="1" deactivated="" type="Numero" hidden="1" align="right" link="" dynamic_height="" shade_offset="" width="4" codval="" id="102" pattern="1" hide_zero="" text="">
|
||||
<postscript description="F2.102 POSTSCRIPT">MESSAGE COPY,F2.101</postscript>
|
||||
</field>
|
||||
<field x="52.5" y="1" type="Valuta" align="right" width="13" id="169" pattern="1" text="###.###.###,@@">
|
||||
<field x="52.5" y="1" deactivated="" type="Valuta" hidden="" align="right" link="" dynamic_height="" shade_offset="" width="13" codval="" id="169" pattern="1" hide_zero="" text="###.###.###,@@">
|
||||
<font italic="1" face="Arial Narrow" bold="1" size="8" />
|
||||
<postscript description="F2.169 POSTSCRIPT">MESSAGE ADD,F1.169
|
||||
MESSAGE RESET,169</postscript>
|
||||
</field>
|
||||
</section>
|
||||
<section type="Foot" level="3" height="2" pattern="1">
|
||||
<section repeat="" keep_with_next="" deactivated="" hidden_if_needed="" type="Foot" level="3" hidden="" height="2" page_break="" can_break="" pattern="1">
|
||||
<font italic="1" face="Arial Narrow" size="8" />
|
||||
<field x="2" y="0.5" type="Array" bg_color="#C0C0C0" width="40" pattern="1">
|
||||
<field x="2" y="0.5" deactivated="" type="Array" hidden="" link="" bg_color="#C0C0C0" dynamic_height="" shade_offset="" width="40" codval="" id="" pattern="1" hide_zero="" text="">
|
||||
<source>H3.101</source>
|
||||
<list>
|
||||
<li Value="Commesse avviate in esercizi precedenti" Code="0" />
|
||||
@ -282,13 +282,13 @@ MESSAGE RESET,169</postscript>
|
||||
<li Value="TOTALI Commesse di supporto dell'esercizio selezionato" Code="4" />
|
||||
</list>
|
||||
</field>
|
||||
<field x="42" y="0.5" type="Valuta" align="right" width="13" id="69" pattern="1" text="###.###.###,@@">
|
||||
<field x="42" y="0.5" deactivated="" type="Valuta" hidden="" align="right" link="" dynamic_height="" shade_offset="" width="13" codval="" id="69" pattern="1" hide_zero="" text="###.###.###,@@">
|
||||
<postscript description="F3.69 POSTSCRIPT">MESSAGE ADD,F2.69
|
||||
MESSAGE ADD,F2.269
|
||||
</postscript>
|
||||
</field>
|
||||
<field y="0.5" type="Numero" hidden="1" align="right" width="1" id="101" pattern="1" />
|
||||
<field x="55.5" y="0.5" type="Valuta" align="right" width="13" id="169" pattern="1" text="###.###.###,@@">
|
||||
<field y="0.5" deactivated="" type="Numero" hidden="1" align="right" link="" dynamic_height="" shade_offset="" width="1" codval="" id="101" pattern="1" hide_zero="" text="" />
|
||||
<field x="55.5" y="0.5" deactivated="" type="Valuta" hidden="" align="right" link="" dynamic_height="" shade_offset="" width="13" codval="" id="169" pattern="1" hide_zero="" text="###.###.###,@@">
|
||||
<postscript description="F3.169 POSTSCRIPT">MESSAGE ADD,F2.169
|
||||
MESSAGE ADD,F2.369
|
||||
MESSAGE RESET,169
|
||||
|
@ -8,13 +8,13 @@
|
||||
<font face="Arial" bold="1" size="10" />
|
||||
<source>FASESPEC</source>
|
||||
</field>
|
||||
<field x="163" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="4" codval="" id="" pattern="1" hide_zero="" text="Pag.">
|
||||
<field x="39" deactivated="" type="Testo" valign="bottom" hidden="" align="right" link="" dynamic_height="" shade_offset="" width="13" codval="" height="2" id="69" pattern="1" hide_zero="" text="Testata" />
|
||||
<field x="163" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="4" codval="" id="100" pattern="1" hide_zero="" text="Pag.">
|
||||
<font italic="1" face="Arial Narrow" size="8" />
|
||||
</field>
|
||||
<field x="167" deactivated="" type="Numero" hidden="" align="right" link="" dynamic_height="" shade_offset="" width="3" codval="" id="" pattern="1" hide_zero="" text="">
|
||||
<source>#REPORT.PAGE</source>
|
||||
<field x="167" deactivated="" type="Numero" hidden="" align="right" link="" dynamic_height="" shade_offset="" width="3" codval="" id="101" pattern="1" hide_zero="" text="">
|
||||
<source>#REPORT.BOOKPAGE</source>
|
||||
</field>
|
||||
<field x="39" deactivated="" type="Testo" valign="bottom" hidden="" align="right" link="" dynamic_height="" shade_offset="" width="13" codval="" height="2" id="69" pattern="1" hide_zero="" text="Testata" />
|
||||
<field x="6" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="8" codval="" id="121" pattern="1" hide_zero="" text="Fase" />
|
||||
<field x="1" y="1" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="4" codval="" id="121" pattern="1" hide_zero="" text="Cod." />
|
||||
<field x="6" y="1" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="8" codval="" id="121" pattern="1" hide_zero="" text="Commessa" />
|
||||
|
@ -1,53 +1,53 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<report libraries="ve1300" name="ca3800c" orientation="2" lpi="6" class="ca3800c">
|
||||
<report libraries="ve1300" page_merge="" save_printer="" name="ca3800c" use_printer_font="" orientation="2" page_split="" lpi="6" command="" class="ca3800c">
|
||||
<description>Bilancio commessa CA riassuntivo per CdC</description>
|
||||
<font face="Arial Narrow" size="8" />
|
||||
<section type="Head" pattern="1">
|
||||
<section repeat="" keep_with_next="" deactivated="" hidden_if_needed="" type="Head" level="" hidden="" page_break="" can_break="" pattern="1">
|
||||
<font italic="1" face="Arial Narrow" bold="1" size="8" />
|
||||
<field x="1" type="Stringa" width="50" pattern="1">
|
||||
<field x="1" deactivated="" type="Stringa" hidden="" link="" dynamic_height="" shade_offset="" width="50" codval="" id="" pattern="1" hide_zero="" text="">
|
||||
<source>#SYSTEM.RAGSOC</source>
|
||||
</field>
|
||||
<field x="60" type="Testo" width="10" pattern="1" text="Data stampa">
|
||||
<field x="60" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="10" codval="" id="" pattern="1" hide_zero="" text="Data stampa">
|
||||
<font italic="1" face="Arial Narrow" size="8" />
|
||||
</field>
|
||||
<field x="70" type="Data" width="12" pattern="1">
|
||||
<field x="70" deactivated="" type="Data" hidden="" link="" dynamic_height="" shade_offset="" width="12" codval="" id="" pattern="1" hide_zero="" text="">
|
||||
<source>#SYSTEM.DATE</source>
|
||||
</field>
|
||||
<field x="120" type="Testo" width="4" pattern="1" text="Pag.">
|
||||
<field x="120" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="4" codval="" id="" pattern="1" hide_zero="" text="Pag.">
|
||||
<font italic="1" face="Arial Narrow" size="8" />
|
||||
</field>
|
||||
<field x="123" type="Numero" align="right" width="3" pattern="1">
|
||||
<source>#REPORT.PAGE</source>
|
||||
<field x="123" deactivated="" type="Numero" hidden="" align="right" link="" dynamic_height="" shade_offset="" width="3" codval="" id="" pattern="1" hide_zero="" text="">
|
||||
<source>#REPORT.BOOKPAGE</source>
|
||||
</field>
|
||||
<field x="17.5" y="2" type="Stringa" width="12" pattern="1">
|
||||
<field x="17.5" y="2" deactivated="" type="Stringa" hidden="" link="" dynamic_height="" shade_offset="" width="12" codval="" id="" pattern="1" hide_zero="" text="">
|
||||
<font face="Arial" bold="1" size="10" />
|
||||
<source>CDCSPEC</source>
|
||||
</field>
|
||||
<field border="1" x="1" y="3" type="Linea" width="169" height="0" pattern="1" />
|
||||
<field x="35" y="1" type="Testo" valign="bottom" align="right" width="13" height="2" id="69" pattern="1" text="Testata" />
|
||||
<field x="1" y="2" type="Testo" width="14" id="121" pattern="1" text="Centro di costo" />
|
||||
<field x="51" y="1" type="Stringa" valign="bottom" align="right" width="13" height="2" id="169" pattern="1">
|
||||
<field border="1" x="1" y="3" deactivated="" type="Linea" hidden="" link="" dynamic_height="" shade_offset="" width="169" codval="" height="0" id="" pattern="1" hide_zero="" text="" />
|
||||
<field x="35" y="1" deactivated="" type="Testo" valign="bottom" hidden="" align="right" link="" dynamic_height="" shade_offset="" width="13" codval="" height="2" id="69" pattern="1" hide_zero="" text="Testata" />
|
||||
<field x="1" y="2" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="14" codval="" id="121" pattern="1" hide_zero="" text="Centro di costo" />
|
||||
<field x="51" y="1" deactivated="" type="Stringa" valign="bottom" hidden="" align="right" link="" dynamic_height="" shade_offset="" width="13" codval="" height="2" id="169" pattern="1" hide_zero="" text="">
|
||||
<source>"MARGINE CONTRIBUZIONE"</source>
|
||||
</field>
|
||||
</section>
|
||||
<section type="Head" level="1" pattern="1">
|
||||
<field border="1" radius="100" x="1" type="Testo" valign="center" align="center" shade_offset="25" width="169" height="2.5" pattern="2" text="BILANCIO DI COMMESSA PER ESERCIZIO RAGGRUPPATO PER CENTRI DI COSTO">
|
||||
<section repeat="" keep_with_next="" deactivated="" hidden_if_needed="" type="Head" level="1" hidden="" page_break="" can_break="" pattern="1">
|
||||
<field border="1" radius="100" x="1" deactivated="" type="Testo" valign="center" hidden="" align="center" link="" dynamic_height="" shade_offset="25" width="169" codval="" height="2.5" id="" pattern="2" hide_zero="" text="BILANCIO DI COMMESSA PER ESERCIZIO RAGGRUPPATO PER CENTRI DI COSTO">
|
||||
<font face="Courier New" bold="1" size="16" />
|
||||
</field>
|
||||
<field x="2" y="3" type="Testo" width="35" pattern="1" text="Costi e ricavi di Commessa maturati nell'esercizio">
|
||||
<field x="2" y="3" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="35" codval="" id="" pattern="1" hide_zero="" text="Costi e ricavi di Commessa maturati nell'esercizio">
|
||||
<font italic="1" face="Arial Narrow" size="9" />
|
||||
</field>
|
||||
<field x="45" y="3" type="Testo" width="3" pattern="1" text="Dal">
|
||||
<field x="45" y="3" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="3" codval="" id="" pattern="1" hide_zero="" text="Dal">
|
||||
<font italic="1" face="Arial Narrow" size="9" />
|
||||
</field>
|
||||
<field x="48.5" y="3" type="Data" width="10" pattern="1">
|
||||
<field x="48.5" y="3" deactivated="" type="Data" hidden="" link="" dynamic_height="" shade_offset="" width="10" codval="" id="" pattern="1" hide_zero="" text="">
|
||||
<font face="Arial Narrow" bold="1" size="9" />
|
||||
<source>DAL</source>
|
||||
</field>
|
||||
<field x="63.5" y="3" type="Testo" width="15" pattern="1" text="Stima avanzamento ">
|
||||
<field x="63.5" y="3" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="15" codval="" id="" pattern="1" hide_zero="" text="Stima avanzamento ">
|
||||
<font italic="1" face="Arial Narrow" size="9" />
|
||||
</field>
|
||||
<field x="77" y="3" type="Array" width="45" pattern="1">
|
||||
<field x="77" y="3" deactivated="" type="Array" hidden="" link="" dynamic_height="" shade_offset="" width="45" codval="" id="" pattern="1" hide_zero="" text="">
|
||||
<font face="Arial Narrow" bold="1" size="9" />
|
||||
<source>TIPOSTIMA</source>
|
||||
<list>
|
||||
@ -56,10 +56,10 @@
|
||||
<li Value="COSTI Consuntivi \ RICAVI Consuntivi" Code="R" />
|
||||
</list>
|
||||
</field>
|
||||
<field x="134" y="3" type="Testo" width="20" pattern="1" text="Detrazioni calcolate come">
|
||||
<field x="134" y="3" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="20" codval="" id="" pattern="1" hide_zero="" text="Detrazioni calcolate come">
|
||||
<font italic="1" face="Arial Narrow" size="9" />
|
||||
</field>
|
||||
<field x="159" y="3" type="Array" width="10" pattern="1">
|
||||
<field x="159" y="3" deactivated="" type="Array" hidden="" link="" dynamic_height="" shade_offset="" width="10" codval="" id="" pattern="1" hide_zero="" text="">
|
||||
<font face="Arial Narrow" bold="1" size="9" />
|
||||
<source>DETRCONS</source>
|
||||
<list>
|
||||
@ -67,10 +67,10 @@
|
||||
<li Value="Consuntivi" Code="X" />
|
||||
</list>
|
||||
</field>
|
||||
<field x="134" y="4" type="Testo" width="25" pattern="1" text="Profondita' della struttura in esame">
|
||||
<field x="134" y="4" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="25" codval="" id="" pattern="1" hide_zero="" text="Profondita' della struttura in esame">
|
||||
<font italic="1" face="Arial Narrow" size="9" />
|
||||
</field>
|
||||
<field x="159" y="4" type="Array" width="7" pattern="1">
|
||||
<field x="159" y="4" deactivated="" type="Array" hidden="" link="" dynamic_height="" shade_offset="" width="7" codval="" id="" pattern="1" hide_zero="" text="">
|
||||
<font face="Arial Narrow" bold="1" size="9" />
|
||||
<source>DEPTH</source>
|
||||
<list>
|
||||
@ -78,46 +78,46 @@
|
||||
<li Value="Conto" Code="2" />
|
||||
</list>
|
||||
</field>
|
||||
<field x="2" y="4.25" type="Testo" width="20" pattern="1" text="Include esercizi successivi">
|
||||
<field x="2" y="4.25" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="20" codval="" id="" pattern="1" hide_zero="" text="Include esercizi successivi">
|
||||
<font italic="1" face="Arial Narrow" size="9" />
|
||||
</field>
|
||||
<field x="22" y="4.25" type="Stringa" width="3" pattern="1">
|
||||
<field x="22" y="4.25" deactivated="" type="Stringa" hidden="" link="" dynamic_height="" shade_offset="" width="3" codval="" id="" pattern="1" hide_zero="" text="">
|
||||
<font face="Arial Narrow" bold="1" size="9" />
|
||||
<source>VITAINTERA</source>
|
||||
</field>
|
||||
<field x="26.5" y="4.25" type="Testo" width="12" pattern="1" text="Include inevasi">
|
||||
<field x="26.5" y="4.25" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="12" codval="" id="" pattern="1" hide_zero="" text="Include inevasi">
|
||||
<font italic="1" face="Arial Narrow" size="9" />
|
||||
</field>
|
||||
<field x="39" y="4.25" type="Stringa" width="3" pattern="1">
|
||||
<field x="39" y="4.25" deactivated="" type="Stringa" hidden="" link="" dynamic_height="" shade_offset="" width="3" codval="" id="" pattern="1" hide_zero="" text="">
|
||||
<font face="Arial Narrow" bold="1" size="9" />
|
||||
<source>INCLUDE_DOCUMENTI</source>
|
||||
</field>
|
||||
<field x="45" y="4.25" type="Testo" width="3" pattern="1" text="Al">
|
||||
<field x="45" y="4.25" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="3" codval="" id="" pattern="1" hide_zero="" text="Al">
|
||||
<font italic="1" face="Arial Narrow" size="9" />
|
||||
</field>
|
||||
<field x="48.5" y="4.25" type="Data" width="10" pattern="1">
|
||||
<field x="48.5" y="4.25" deactivated="" type="Data" hidden="" link="" dynamic_height="" shade_offset="" width="10" codval="" id="" pattern="1" hide_zero="" text="">
|
||||
<font face="Arial Narrow" bold="1" size="9" />
|
||||
<source>AL</source>
|
||||
<alt_source>DATAFINE</alt_source>
|
||||
</field>
|
||||
<field x="63.5" y="4.25" type="Testo" width="15" pattern="1" text="Centro di Costo">
|
||||
<field x="63.5" y="4.25" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="15" codval="" id="" pattern="1" hide_zero="" text="Centro di Costo">
|
||||
<font italic="1" face="Arial Narrow" size="9" />
|
||||
</field>
|
||||
<field border="2" x="1" y="5.5" type="Linea" width="169" height="0" pattern="1" />
|
||||
<field x="83.5" y="4.25" type="Stringa" width="10" id="1" pattern="1">
|
||||
<field border="2" x="1" y="5.5" deactivated="" type="Linea" hidden="" link="" dynamic_height="" shade_offset="" width="169" codval="" height="0" id="" pattern="1" hide_zero="" text="" />
|
||||
<field x="83.5" y="4.25" deactivated="" type="Stringa" hidden="" link="" dynamic_height="" shade_offset="" width="10" codval="" id="1" pattern="1" hide_zero="" text="">
|
||||
<font face="Arial Narrow" bold="1" size="9" />
|
||||
<source>CDCSPEC</source>
|
||||
<postscript description="H1.1 POSTSCRIPT">MESSAGE COPY,F1.2</postscript>
|
||||
</field>
|
||||
<field x="37" y="3" type="Stringa" width="4" id="2" pattern="1">
|
||||
<field x="37" y="3" deactivated="" type="Stringa" hidden="" link="" dynamic_height="" shade_offset="" width="4" codval="" id="2" pattern="1" hide_zero="" text="">
|
||||
<font face="Arial Narrow" bold="1" size="9" />
|
||||
<source>ANNO</source>
|
||||
</field>
|
||||
</section>
|
||||
<section type="Head" level="2" height="1.5" pattern="1">
|
||||
<section repeat="" keep_with_next="" deactivated="" hidden_if_needed="" type="Head" level="2" hidden="" height="1.5" page_break="" can_break="" pattern="1">
|
||||
<groupby>(LEVELC;2)||(LEVEL=4)</groupby>
|
||||
<font italic="1" face="Arial Narrow" size="8" />
|
||||
<field x="1" type="Array" bg_color="#C0C0C0" width="25" pattern="2">
|
||||
<field x="1" deactivated="" type="Array" hidden="" link="" bg_color="#C0C0C0" dynamic_height="" shade_offset="" width="25" codval="" id="" pattern="2" hide_zero="" text="">
|
||||
<source>LEVEL</source>
|
||||
<list>
|
||||
<li Value="Commesse terminate nel" Code="0" />
|
||||
@ -127,22 +127,22 @@
|
||||
<li Value="Commesse di supporto del" Code="4" />
|
||||
</list>
|
||||
</field>
|
||||
<field x="23" type="Numero" align="right" bg_color="#C0C0C0" width="6" pattern="2">
|
||||
<field x="23" deactivated="" type="Numero" hidden="" align="right" link="" bg_color="#C0C0C0" dynamic_height="" shade_offset="" width="6" codval="" id="" pattern="2" hide_zero="" text="">
|
||||
<source>ANNO</source>
|
||||
</field>
|
||||
<field type="Numero" hidden="1" align="right" width="1" id="101" pattern="1">
|
||||
<field deactivated="" type="Numero" hidden="1" align="right" link="" dynamic_height="" shade_offset="" width="1" codval="" id="101" pattern="1" hide_zero="" text="">
|
||||
<source>LEVEL</source>
|
||||
<postscript description="H2.101 POSTSCRIPT">MESSAGE COPY,F2.101</postscript>
|
||||
</field>
|
||||
<field x="29" type="Numero" hidden="1" align="right" width="4" id="102" pattern="1">
|
||||
<field x="29" deactivated="" type="Numero" hidden="1" align="right" link="" dynamic_height="" shade_offset="" width="4" codval="" id="102" pattern="1" hide_zero="" text="">
|
||||
<source>ANNO</source>
|
||||
<postscript description="H2.102 POSTSCRIPT">MESSAGE COPY,F2.102</postscript>
|
||||
</field>
|
||||
</section>
|
||||
<section type="Head" level="3" hidden="1" height="1.5" pattern="1">
|
||||
<section repeat="" keep_with_next="" deactivated="" hidden_if_needed="" type="Head" level="3" hidden="1" height="1.5" page_break="" can_break="" pattern="1">
|
||||
<groupby>LEVEL</groupby>
|
||||
<font italic="1" face="Arial Narrow" size="8" />
|
||||
<field x="3" type="Array" bg_color="#C0C0C0" width="45" pattern="1">
|
||||
<field x="3" deactivated="" type="Array" hidden="" link="" bg_color="#C0C0C0" dynamic_height="" shade_offset="" width="45" codval="" id="" pattern="1" hide_zero="" text="">
|
||||
<source>LEVEL</source>
|
||||
<list>
|
||||
<li Value="Commesse avviate in esercizi precedenti" Code="0" />
|
||||
@ -152,28 +152,28 @@
|
||||
<li Value="Commesse di supporto dell'esercizio selezionato" Code="4" />
|
||||
</list>
|
||||
</field>
|
||||
<field border="1" x="2" y="1.25" type="Linea" width="169" height="0" pattern="1" />
|
||||
<field type="Numero" hidden="1" align="right" width="1" id="101" pattern="1">
|
||||
<field border="1" x="2" y="1.25" deactivated="" type="Linea" hidden="" link="" dynamic_height="" shade_offset="" width="169" codval="" height="0" id="" pattern="1" hide_zero="" text="" />
|
||||
<field deactivated="" type="Numero" hidden="1" align="right" link="" dynamic_height="" shade_offset="" width="1" codval="" id="101" pattern="1" hide_zero="" text="">
|
||||
<source>LEVEL</source>
|
||||
<postscript description="H3.101 POSTSCRIPT">MESSAGE COPY,F3.101</postscript>
|
||||
</field>
|
||||
</section>
|
||||
<section type="Body" pattern="1" />
|
||||
<section type="Body" level="1" hidden="1" pattern="1">
|
||||
<section repeat="" keep_with_next="" deactivated="" hidden_if_needed="" type="Body" level="" hidden="" page_break="" can_break="" pattern="1" />
|
||||
<section repeat="" keep_with_next="" deactivated="" hidden_if_needed="" type="Body" level="1" hidden="1" page_break="" can_break="" pattern="1">
|
||||
<prescript description="B1 PRESCRIPT">1 #H4.3 \ incrementa il contatore per il numero di righe di cdc
|
||||
+!</prescript>
|
||||
<field x="65.5" type="Testo" align="center" width="2" pattern="1" text="%" />
|
||||
<field x="1" type="Stringa" width="20" id="1" pattern="1">
|
||||
<field x="65.5" deactivated="" type="Testo" hidden="" align="center" link="" dynamic_height="" shade_offset="" width="2" codval="" id="" pattern="1" hide_zero="" text="%" />
|
||||
<field x="1" deactivated="" type="Stringa" hidden="" link="" dynamic_height="" shade_offset="" width="20" codval="" id="1" pattern="1" hide_zero="" text="">
|
||||
<source>CODCMS</source>
|
||||
</field>
|
||||
<field x="35" type="Valuta" align="right" width="13" id="69" pattern="1" text="###.###.###,@@">
|
||||
<field x="35" deactivated="" type="Valuta" hidden="" align="right" link="" dynamic_height="" shade_offset="" width="13" codval="" id="69" pattern="1" hide_zero="" text="###.###.###,@@">
|
||||
<postscript description="B1.69 POSTSCRIPT">MESSAGE ADD,F3.69</postscript>
|
||||
</field>
|
||||
<field x="48.5" type="Valuta" align="right" width="13" id="169" pattern="1" text="###.###.###,@@">
|
||||
<field x="48.5" deactivated="" type="Valuta" hidden="" align="right" link="" dynamic_height="" shade_offset="" width="13" codval="" id="169" pattern="1" hide_zero="" text="###.###.###,@@">
|
||||
<source>#RICAVI-#COSTI</source>
|
||||
<postscript description="B1.169 POSTSCRIPT">MESSAGE ADD,F3.169</postscript>
|
||||
</field>
|
||||
<field x="61.5" type="Numero" align="right" width="4" id="170" pattern="1" text="####">
|
||||
<field x="61.5" deactivated="" type="Numero" hidden="" align="right" link="" dynamic_height="" shade_offset="" width="4" codval="" id="170" pattern="1" hide_zero="" text="####">
|
||||
<font italic="1" face="Arial Narrow" size="8" />
|
||||
<prescript description="B1.170 PRESCRIPT">#RICAVI @
|
||||
EMPTY= IF
|
||||
@ -196,31 +196,31 @@
|
||||
#THIS !
|
||||
</prescript>
|
||||
</field>
|
||||
<field x="65.5" type="Testo" align="center" width="2" id="171" pattern="1" text="%" />
|
||||
<field x="65.5" deactivated="" type="Testo" hidden="" align="center" link="" dynamic_height="" shade_offset="" width="2" codval="" id="171" pattern="1" hide_zero="" text="%" />
|
||||
</section>
|
||||
<section type="Foot" pattern="1">
|
||||
<field border="1" x="1" y="0.25" type="Linea" width="169" height="0" pattern="1" />
|
||||
<field x="2" y="0.75" type="Testo" width="25" pattern="1" text="Bilancio di commessa per esercizio">
|
||||
<section repeat="" keep_with_next="" deactivated="" hidden_if_needed="" type="Foot" level="" hidden="" page_break="" can_break="" pattern="1">
|
||||
<field border="1" x="1" y="0.25" deactivated="" type="Linea" hidden="" link="" dynamic_height="" shade_offset="" width="169" codval="" height="0" id="" pattern="1" hide_zero="" text="" />
|
||||
<field x="2" y="0.75" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="25" codval="" id="" pattern="1" hide_zero="" text="Bilancio di commessa per esercizio">
|
||||
<font italic="1" face="Arial Narrow" bold="1" size="8" />
|
||||
</field>
|
||||
<field x="28.5" y="0.75" type="Stringa" width="5" pattern="1">
|
||||
<field x="28.5" y="0.75" deactivated="" type="Stringa" hidden="" link="" dynamic_height="" shade_offset="" width="5" codval="" id="" pattern="1" hide_zero="" text="">
|
||||
<font face="Arial Narrow" bold="1" size="9" />
|
||||
<source>H1.2</source>
|
||||
</field>
|
||||
</section>
|
||||
<section type="Foot" level="1" height="3" pattern="1">
|
||||
<section repeat="" keep_with_next="" deactivated="" hidden_if_needed="" type="Foot" level="1" hidden="" height="3" page_break="" can_break="" pattern="1">
|
||||
<font italic="1" face="Arial Narrow" bold="1" size="8" />
|
||||
<field border="2" x="1" y="0.5" type="Linea" width="169" height="0" pattern="1" />
|
||||
<field x="1" y="1" type="Testo" valign="center" fg_color="#FFFFFF" bg_color="#000000" width="20" id="1" pattern="2" text="TOTALI GENERALI " />
|
||||
<field x="21" y="1" type="Stringa" valign="center" fg_color="#FFFFFF" bg_color="#400040" width="15" id="2" pattern="2">
|
||||
<field border="2" x="1" y="0.5" deactivated="" type="Linea" hidden="" link="" dynamic_height="" shade_offset="" width="169" codval="" height="0" id="" pattern="1" hide_zero="" text="" />
|
||||
<field x="1" y="1" deactivated="" type="Testo" valign="center" hidden="" link="" fg_color="#FFFFFF" bg_color="#000000" dynamic_height="" shade_offset="" width="20" codval="" id="1" pattern="2" hide_zero="" text="TOTALI GENERALI " />
|
||||
<field x="21" y="1" deactivated="" type="Stringa" valign="center" hidden="" link="" fg_color="#FFFFFF" bg_color="#400040" dynamic_height="" shade_offset="" width="15" codval="" id="2" pattern="2" hide_zero="" text="">
|
||||
<font italic="1" face="Arial" bold="1" size="8" />
|
||||
</field>
|
||||
<field x="46.5" y="1" type="Valuta" align="right" width="13" id="69" pattern="1" text="###.###.###,@@" />
|
||||
<field x="60" y="1" type="Valuta" align="right" width="13" id="169" pattern="1" text="###.###.###,@@">
|
||||
<field x="46.5" y="1" deactivated="" type="Valuta" hidden="" align="right" link="" dynamic_height="" shade_offset="" width="13" codval="" id="69" pattern="1" hide_zero="" text="###.###.###,@@" />
|
||||
<field x="60" y="1" deactivated="" type="Valuta" hidden="" align="right" link="" dynamic_height="" shade_offset="" width="13" codval="" id="169" pattern="1" hide_zero="" text="###.###.###,@@">
|
||||
<postscript description="F1.169 POSTSCRIPT">MESSAGE RESET,169</postscript>
|
||||
</field>
|
||||
</section>
|
||||
<section type="Foot" level="2" height="4.5" pattern="1">
|
||||
<section repeat="" keep_with_next="" deactivated="" hidden_if_needed="" type="Foot" level="2" hidden="" height="4.5" page_break="" can_break="" pattern="1">
|
||||
<font italic="1" face="Courier New" size="8" />
|
||||
<prescript description="F2 PRESCRIPT">#LEVEL @
|
||||
	4 = IF
|
||||
@ -228,8 +228,8 @@
|
||||
	ELSE
|
||||
	 "90@" DISABLE
|
||||
THEN</prescript>
|
||||
<field border="1" x="1" y="0.5" type="Linea" width="169" height="0" pattern="1" />
|
||||
<field x="1" y="1" type="Array" bg_color="#C0C0C0" width="30" pattern="2">
|
||||
<field border="1" x="1" y="0.5" deactivated="" type="Linea" hidden="" link="" dynamic_height="" shade_offset="" width="169" codval="" height="0" id="" pattern="1" hide_zero="" text="" />
|
||||
<field x="1" y="1" deactivated="" type="Array" hidden="" link="" bg_color="#C0C0C0" dynamic_height="" shade_offset="" width="30" codval="" id="" pattern="2" hide_zero="" text="">
|
||||
<font italic="1" face="Arial Narrow" size="8" />
|
||||
<source>H2.101</source>
|
||||
<list>
|
||||
@ -240,39 +240,39 @@ THEN</prescript>
|
||||
<li Value="TOTALI Commesse di supporto del" Code="4" />
|
||||
</list>
|
||||
</field>
|
||||
<field x="29" y="1" type="Numero" align="right" bg_color="#C0C0C0" width="6" pattern="2">
|
||||
<field x="29" y="1" deactivated="" type="Numero" hidden="" align="right" link="" bg_color="#C0C0C0" dynamic_height="" shade_offset="" width="6" codval="" id="" pattern="2" hide_zero="" text="">
|
||||
<font italic="1" face="Arial Narrow" size="8" />
|
||||
<source>H2.102</source>
|
||||
</field>
|
||||
<field border="1" x="1" y="3.25" deactivated="1" type="Linea" width="169" height="0" pattern="1">
|
||||
<field border="1" x="1" y="3.25" deactivated="1" type="Linea" hidden="" link="" dynamic_height="" shade_offset="" width="169" codval="" height="0" id="" pattern="1" hide_zero="" text="">
|
||||
<groups>90</groups>
|
||||
</field>
|
||||
<field x="1" y="3.5" deactivated="1" type="Testo" fg_color="#FFFFFF" bg_color="#808080" width="30" pattern="2" text="TOTALI commesse normali relative al">
|
||||
<field x="1" y="3.5" deactivated="1" type="Testo" hidden="" link="" fg_color="#FFFFFF" bg_color="#808080" dynamic_height="" shade_offset="" width="30" codval="" id="" pattern="2" hide_zero="" text="TOTALI commesse normali relative al">
|
||||
<font italic="1" face="Arial Narrow" bold="1" size="8" />
|
||||
<groups>90</groups>
|
||||
</field>
|
||||
<field x="31" y="3.5" type="Numero" align="right" fg_color="#FFFFFF" bg_color="#808080" width="6" pattern="2">
|
||||
<field x="31" y="3.5" deactivated="" type="Numero" hidden="" align="right" link="" fg_color="#FFFFFF" bg_color="#808080" dynamic_height="" shade_offset="" width="6" codval="" id="" pattern="2" hide_zero="" text="">
|
||||
<font italic="1" face="Arial Narrow" bold="1" size="8" />
|
||||
<groups>90</groups>
|
||||
<source>H2.102</source>
|
||||
</field>
|
||||
<field x="46.5" y="1" type="Valuta" align="right" width="13" id="69" pattern="1" text="###.###.###,@@">
|
||||
<field x="46.5" y="1" deactivated="" type="Valuta" hidden="" align="right" link="" dynamic_height="" shade_offset="" width="13" codval="" id="69" pattern="1" hide_zero="" text="###.###.###,@@">
|
||||
<font italic="1" face="Arial Narrow" bold="1" size="8" />
|
||||
<postscript description="F2.69 POSTSCRIPT">MESSAGE ADD,F1.69</postscript>
|
||||
</field>
|
||||
<field y="1" type="Numero" hidden="1" align="right" width="1" id="101" pattern="1" />
|
||||
<field x="35" y="1" type="Numero" hidden="1" align="right" width="4" id="102" pattern="1">
|
||||
<field y="1" deactivated="" type="Numero" hidden="1" align="right" link="" dynamic_height="" shade_offset="" width="1" codval="" id="101" pattern="1" hide_zero="" text="" />
|
||||
<field x="35" y="1" deactivated="" type="Numero" hidden="1" align="right" link="" dynamic_height="" shade_offset="" width="4" codval="" id="102" pattern="1" hide_zero="" text="">
|
||||
<postscript description="F2.102 POSTSCRIPT">MESSAGE COPY,F2.101</postscript>
|
||||
</field>
|
||||
<field x="60" y="1" type="Valuta" align="right" width="13" id="169" pattern="1" text="###.###.###,@@">
|
||||
<field x="60" y="1" deactivated="" type="Valuta" hidden="" align="right" link="" dynamic_height="" shade_offset="" width="13" codval="" id="169" pattern="1" hide_zero="" text="###.###.###,@@">
|
||||
<font italic="1" face="Arial Narrow" bold="1" size="8" />
|
||||
<postscript description="F2.169 POSTSCRIPT">MESSAGE ADD,F1.169
|
||||
MESSAGE RESET,169</postscript>
|
||||
</field>
|
||||
</section>
|
||||
<section type="Foot" level="3" height="2" pattern="1">
|
||||
<section repeat="" keep_with_next="" deactivated="" hidden_if_needed="" type="Foot" level="3" hidden="" height="2" page_break="" can_break="" pattern="1">
|
||||
<font italic="1" face="Arial Narrow" size="8" />
|
||||
<field x="2" y="0.5" type="Array" bg_color="#C0C0C0" width="40" pattern="1">
|
||||
<field x="2" y="0.5" deactivated="" type="Array" hidden="" link="" bg_color="#C0C0C0" dynamic_height="" shade_offset="" width="40" codval="" id="" pattern="1" hide_zero="" text="">
|
||||
<source>H3.101</source>
|
||||
<list>
|
||||
<li Value="Commesse avviate in esercizi precedenti" Code="0" />
|
||||
@ -282,13 +282,13 @@ MESSAGE RESET,169</postscript>
|
||||
<li Value="TOTALI Commesse di supporto dell'esercizio selezionato" Code="4" />
|
||||
</list>
|
||||
</field>
|
||||
<field x="46.5" y="0.5" type="Valuta" align="right" width="13" id="69" pattern="1" text="###.###.###,@@">
|
||||
<field x="46.5" y="0.5" deactivated="" type="Valuta" hidden="" align="right" link="" dynamic_height="" shade_offset="" width="13" codval="" id="69" pattern="1" hide_zero="" text="###.###.###,@@">
|
||||
<postscript description="F3.69 POSTSCRIPT">MESSAGE ADD,F2.69
|
||||
MESSAGE ADD,F2.269
|
||||
</postscript>
|
||||
</field>
|
||||
<field y="0.5" type="Numero" hidden="1" align="right" width="1" id="101" pattern="1" />
|
||||
<field x="60" y="0.5" type="Valuta" align="right" width="13" id="169" pattern="1" text="###.###.###,@@">
|
||||
<field y="0.5" deactivated="" type="Numero" hidden="1" align="right" link="" dynamic_height="" shade_offset="" width="1" codval="" id="101" pattern="1" hide_zero="" text="" />
|
||||
<field x="60" y="0.5" deactivated="" type="Valuta" hidden="" align="right" link="" dynamic_height="" shade_offset="" width="13" codval="" id="169" pattern="1" hide_zero="" text="###.###.###,@@">
|
||||
<postscript description="F3.169 POSTSCRIPT">MESSAGE ADD,F2.169
|
||||
MESSAGE ADD,F2.369
|
||||
MESSAGE RESET,169
|
||||
|
@ -8,13 +8,13 @@
|
||||
<font face="Arial" bold="1" size="10" />
|
||||
<source>CDCSPEC</source>
|
||||
</field>
|
||||
<field x="164" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="4" codval="" id="" pattern="1" hide_zero="" text="Pag.">
|
||||
<field x="39" deactivated="" type="Testo" valign="bottom" hidden="" align="right" link="" dynamic_height="" shade_offset="" width="13" codval="" height="2" id="69" pattern="1" hide_zero="" text="Testata" />
|
||||
<field x="164" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="4" codval="" id="100" pattern="1" hide_zero="" text="Pag.">
|
||||
<font italic="1" face="Arial Narrow" size="8" />
|
||||
</field>
|
||||
<field x="167" deactivated="" type="Numero" hidden="" align="right" link="" dynamic_height="" shade_offset="" width="3" codval="" id="" pattern="1" hide_zero="" text="">
|
||||
<source>#REPORT.PAGE</source>
|
||||
<field x="167" deactivated="" type="Numero" hidden="" align="right" link="" dynamic_height="" shade_offset="" width="3" codval="" id="101" pattern="1" hide_zero="" text="">
|
||||
<source>#REPORT.BOOKPAGE</source>
|
||||
</field>
|
||||
<field x="39" deactivated="" type="Testo" valign="bottom" hidden="" align="right" link="" dynamic_height="" shade_offset="" width="13" codval="" height="2" id="69" pattern="1" hide_zero="" text="Testata" />
|
||||
<field x="6" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="14" codval="" id="121" pattern="1" hide_zero="" text="Centro di costo" />
|
||||
<field x="1" y="1" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="4" codval="" id="121" pattern="1" hide_zero="" text="Cod." />
|
||||
<field x="6" y="1" deactivated="" type="Testo" hidden="" link="" dynamic_height="" shade_offset="" width="14" codval="" id="121" pattern="1" hide_zero="" text="Commessa" />
|
||||
|
@ -419,16 +419,23 @@ bool TCRPA_report::generate_columns (TString_array& codici, TString_array& testa
|
||||
|
||||
TCRPA_report::TCRPA_report (const char* rep_name, const TString& prefix, const int depth,
|
||||
const bool show_fasi, const bool show_cdc,
|
||||
const bool show_cms_descr, const bool show_cms_date, const bool sintetica)
|
||||
const bool show_cms_descr, const bool show_cms_date, const bool sintetica,
|
||||
const bool intestazione_minima)
|
||||
{
|
||||
//che report usare?
|
||||
load (rep_name);
|
||||
//array contenenti i conti analitici e le loro descrizioni di testata che diventeranno..
|
||||
//.colonne del report dopo lungo e periglioso travaglio
|
||||
//.colonne del report dopo lungo e periglioso travagliohide
|
||||
TString_array codici, testate;
|
||||
//per prima cosa si deve analizzare la struttura del piano conti..
|
||||
//..da stampare fino al livello richiesto!
|
||||
analize_pconana_structure (prefix, depth, codici, testate);
|
||||
//poi vanno generate le colonne del report corrispondenti alla struttura analizzata
|
||||
generate_columns (codici, testate, 69, show_fasi, show_cdc, show_cms_descr, show_cms_date, sintetica);
|
||||
if (intestazione_minima)
|
||||
{
|
||||
section('H', 0).find_field(100)->hide();
|
||||
section('H', 0).find_field(101)->hide();
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -692,6 +692,9 @@ void TPrint_saldana_recordset::parse_saldana(TAssoc_array* cms, const TDate& dat
|
||||
//..le sezioni in cui compariranno le commesse nella stampa
|
||||
const TString80 codcms = saldana.get(SALDANA_COMMESSA);
|
||||
const TRectype& rec_commesse = cache().get(LF_COMMESSE, codcms);
|
||||
//ci sono filtri o raggruppamenti per fase o centro di costo?
|
||||
const TString80 fase = saldana.get(SALDANA_FASE);
|
||||
const TString80 cdc = saldana.get(SALDANA_COSTO);
|
||||
//indice: indica la sezione di report in cui apparariranno i valori!
|
||||
const int indice = ricava_sezione_di_stampa(rec_commesse, datainiesc, datafinesc);
|
||||
//anno sul record di saldana;serve un pò dappertutto sotto
|
||||
@ -702,9 +705,6 @@ void TPrint_saldana_recordset::parse_saldana(TAssoc_array* cms, const TDate& dat
|
||||
//..negativo sopravvivono!
|
||||
if (indice >= 0)
|
||||
{
|
||||
//ci sono filtri o raggruppamenti per fase o centro di costo?
|
||||
const TString80 fase = saldana.get(SALDANA_FASE);
|
||||
const TString80 cdc = saldana.get(SALDANA_COSTO);
|
||||
//ricava la chiave completa per l'assoc_array comprendendo eventuali fasi e/o cdc
|
||||
TString80 chiave;
|
||||
ricava_chiave_cdc_fase(codcms, fase, cdc, chiave);
|
||||
@ -761,11 +761,11 @@ void TPrint_saldana_recordset::parse_saldana(TAssoc_array* cms, const TDate& dat
|
||||
//..selezionato sulla maschera (CRPA request)
|
||||
if (anno_saldo < _anno)
|
||||
{
|
||||
TString16 cazzo_cod; cazzo_cod.format("detr_al_%04d", _anno - 1);
|
||||
TString16 cazzo_cod; cazzo_cod.format("DETR_AL_%04d", _anno - 1);
|
||||
TString cazzo_descr = "DETRAZIONE PER COMPETENZA FINO AL ";
|
||||
cazzo_descr << (_anno - 1);
|
||||
TAssoc_array& riga_array = get_row(cms[indice], CMS_DEL_CAZZO, indice, cazzo_cod,
|
||||
EMPTY_STRING, EMPTY_STRING, cazzo_descr);
|
||||
fase, cdc, cazzo_descr);
|
||||
if (_tipo == 8)
|
||||
{
|
||||
//calcolo delle detrazioni (is_detrazione = true)
|
||||
|
@ -51,7 +51,8 @@ protected:
|
||||
|
||||
public:
|
||||
TCRPA_report (const char* rep_name, const TString& prefix, const int depth,
|
||||
const bool show_fasi, const bool show_cdc, const bool show_cms_descr, const bool show_cms_date, const bool sintetica);
|
||||
const bool show_fasi, const bool show_cdc, const bool show_cms_descr, const bool show_cms_date, const bool sintetica,
|
||||
const bool intestazione_minima);
|
||||
};
|
||||
|
||||
///////////////////////////////////////////////////////////////
|
||||
|
@ -21,6 +21,7 @@
|
||||
#define F_SHOW_CMS_DESCR 117
|
||||
#define F_SHOW_CMS_DATE 118
|
||||
#define F_STAMPA_SINTETICA 119
|
||||
#define F_INTESTAZIONE_MINIMA 120
|
||||
|
||||
/* campi per la generazione automatica
|
||||
#define F_FASE1 112
|
||||
|
Loading…
x
Reference in New Issue
Block a user