Patch level :10.0
Files correlati : Ricompilazione Demo : [ ] Commento : stampa incredibilmente per giorno sia per cms/cdc che per ris/att git-svn-id: svn://10.65.10.50/branches/R_10_00@21694 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
parent
5f32211267
commit
b64d2a95c4
@ -187,7 +187,7 @@ void TRil_ore_ris_mask::elabora_risorsa(const TString& curr_risorsa, TReport& re
|
||||
//..csv_recordset e poi sbatte quest'ultimo (ordinato) nel report
|
||||
//Il tutto nel magico metodo che segue!
|
||||
ci_fill_recset_from_ass(righe, rep);
|
||||
|
||||
//campo a mano per fare scattare la mask2report()
|
||||
rep.recordset()->set_var("#CODRIS", curr_risorsa, true);
|
||||
|
||||
}
|
||||
|
@ -149,7 +149,7 @@ void ci_fill_recset_from_ass(TAssoc_array& ass, TReport& rep)
|
||||
|
||||
recset->set("Key1", chiave1); //se ci1300 ->(cms o cdc) se ci1400 ->(A o R)
|
||||
recset->set("Key2", chiave2); //se ci1300 ->(cdc o cms) se ci1400 ->(codris o codattr)
|
||||
recset->set("Key3", chiave3);
|
||||
recset->set("Key3", chiave3); //se ci1300 -> fase
|
||||
//report di risorsa / attrezzatura (ci1300)
|
||||
if (per_ris_att)
|
||||
{
|
||||
|
@ -67,6 +67,7 @@ bool TRil_ore_cms_mask::on_field_event(TOperable_field& o, TField_event e, long
|
||||
bool TRil_ore_cms_mask::elabora_commessa(const TString& curr_commessa, TReport& rep) const
|
||||
{
|
||||
const TVariant tipo_cms_cdc = get(F_CMSOCDC);
|
||||
const bool per_commessa = tipo_cms_cdc.as_string() == "C";
|
||||
|
||||
//date del mese
|
||||
const int anno = get_int(F_ANNO);
|
||||
@ -85,7 +86,7 @@ bool TRil_ore_cms_mask::elabora_commessa(const TString& curr_commessa, TReport&
|
||||
//query sul file delle ore in chiave 4 o 5, in base alla scelta di Cdc(4) o Cms(5): TIPO+CODCOSTO+... o TIPO+CODCMS+...
|
||||
TString query;
|
||||
|
||||
if (tipo_cms_cdc.as_string() == "C")
|
||||
if (per_commessa)
|
||||
{
|
||||
const TRectype& rec_cms = cache().get(LF_COMMESSE, curr_commessa);
|
||||
const int durata_cms = ca_durata_commessa(rec_cms, ini_cms, fine_cms);
|
||||
@ -100,9 +101,6 @@ bool TRil_ore_cms_mask::elabora_commessa(const TString& curr_commessa, TReport&
|
||||
}
|
||||
else
|
||||
{
|
||||
ini_cms = ini_mese;
|
||||
fine_cms = fine_mese;
|
||||
|
||||
query << "USE RILORE KEY 4";
|
||||
query << "\nFROM TIPO=#TIPO CODCOSTO=#CODICE";
|
||||
query << "\nTO TIPO=#TIPO CODCOSTO=#CODICE";
|
||||
@ -128,11 +126,25 @@ bool TRil_ore_cms_mask::elabora_commessa(const TString& curr_commessa, TReport&
|
||||
TDate dataini = rilore_recset.get(RILORE_DADATA).as_date();
|
||||
TDate datafine = rilore_recset.get(RILORE_ADATA).as_date();
|
||||
|
||||
//se esiste la commessa nel record e sta stampando per cdc, la commessa va tenuta in considerazione per..
|
||||
//..quanto riguarda l'intervallo di date
|
||||
if (!per_commessa)
|
||||
{
|
||||
const TString& commessa = rilore_recset.get(RILORE_CODCMS).as_string();
|
||||
const TRectype& rec_cms = cache().get(LF_COMMESSE, commessa);
|
||||
const int durata_cms = ca_durata_commessa(rec_cms, ini_cms, fine_cms);
|
||||
|
||||
//se la commessa non "interseca" il mese selezionato -> finisce qui
|
||||
if (fine_cms < ini_mese || ini_cms > fine_mese)
|
||||
continue;
|
||||
}
|
||||
|
||||
//adatta le date alla commessa se quest'ultima è contenuta nell'intervallo (può essere più breve..
|
||||
//..dell'intervallo selezionato, oppure sovrapporsi solo parzialmente)
|
||||
if (fine_cms < datafine)
|
||||
//se sta stampando per cdc -> fine_cms e ini_cms sono vuoti se non c'è la cms e non fa la trimmatura
|
||||
if (fine_cms.ok() && fine_cms < datafine)
|
||||
datafine = fine_cms;
|
||||
if (ini_cms > dataini)
|
||||
if (ini_cms.ok() && ini_cms > dataini)
|
||||
dataini = ini_cms;
|
||||
//se la commessa fosse tutta nel futuro o nel passato -> lascia perdere
|
||||
const long giorni_lavorativi = ci_calcola_giorni_lavorativi(dataini, datafine);
|
||||
@ -140,7 +152,16 @@ bool TRil_ore_cms_mask::elabora_commessa(const TString& curr_commessa, TReport&
|
||||
continue;
|
||||
|
||||
TDate ini_lav, fine_lav;
|
||||
const long giorni_lavorativi_cms = ci_calcola_giorni_lavorativi_cms(anno, mese, ini_cms, fine_cms, dataini, datafine, ini_lav, fine_lav);
|
||||
long giorni_lavorativi_cms = 0;
|
||||
//se lavora su commessa -> le date ini_cms e fine_cms sono ok
|
||||
if (ini_cms.ok() && fine_cms.ok())
|
||||
giorni_lavorativi_cms = ci_calcola_giorni_lavorativi_cms(anno, mese, ini_cms, fine_cms, dataini, datafine, ini_lav, fine_lav);
|
||||
else //se ci fosse solo il cdc nel record di rilore, non avendo una durata -> i suoi giorni lavorativi coincidono con quelli del mese
|
||||
{
|
||||
giorni_lavorativi_cms = ci_calcola_giorni_lavorativi(ini_mese, fine_mese);
|
||||
ini_lav = ini_mese;
|
||||
fine_lav = fine_mese;
|
||||
}
|
||||
|
||||
if (giorni_lavorativi_cms > 0)
|
||||
{
|
||||
@ -184,13 +205,13 @@ bool TRil_ore_cms_mask::elabora_commessa(const TString& curr_commessa, TReport&
|
||||
} //for (bool ok = rilore_recset.move_first()...
|
||||
} //for (int i = 0; i < 2; i++)..
|
||||
|
||||
//tenta la mask2report per far apparire sul report i campi di selezione della maschera
|
||||
rep.mask2report(*this);
|
||||
//finita l'elaborazione che ha riempito l'assoc_array, asegna il medesimo ad un..
|
||||
//..csv_recordset e poi sbatte quest'ultimo (ordinato) nel report
|
||||
ci_fill_recset_from_ass(righe, rep);
|
||||
|
||||
//campo a mano per fare scattare la mask2report()
|
||||
rep.recordset()->set_var("#CODCMS", curr_commessa, true);
|
||||
//tenta la mask2report per far apparire sul report i campi di selezione della maschera
|
||||
rep.mask2report(*this);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
307
ci/ci1400a.rep
307
ci/ci1400a.rep
@ -1,45 +1,50 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<report name="ci1400a" orientation="2" lpi="6">
|
||||
<report name="ci1400a" orientation="2" lpi="6" class="ci1400">
|
||||
<description>Rilevazione ore mensili per Commessa - CdC</description>
|
||||
<font face="Arial" size="8" />
|
||||
<section type="Head" pattern="1">
|
||||
<field x="21" y="1" type="Testo" align="center" width="8" height="2" pattern="1" text="Totale preventivo">
|
||||
<font face="Arial Narrow" size="8" />
|
||||
<field x="44" y="1" type="Testo" align="center" width="6" height="2" pattern="1" text="Totale PREV">
|
||||
<font face="Arial Narrow" bold="1" size="8" />
|
||||
</field>
|
||||
<field x="155" y="1" type="Testo" align="center" width="8" height="2" pattern="1" text="Totale consuntivo">
|
||||
<field x="50" y="1" type="Testo" align="center" width="6" height="2" pattern="1" text="Totale CONS">
|
||||
<font face="Arial Narrow" bold="1" size="8" />
|
||||
</field>
|
||||
<field border="1" x="30" y="1" type="Stringa" align="center" width="4" height="2" id="101" pattern="2" />
|
||||
<field border="1" x="34" y="1" type="Stringa" align="center" width="4" height="2" id="102" pattern="2" />
|
||||
<field border="1" x="38" y="1" type="Stringa" align="center" width="4" height="2" id="103" pattern="2" />
|
||||
<field border="1" x="42" y="1" type="Stringa" align="center" width="4" height="2" id="104" pattern="2" />
|
||||
<field border="1" x="46" y="1" type="Stringa" align="center" width="4" height="2" id="105" pattern="2" />
|
||||
<field border="1" x="50" y="1" type="Stringa" align="center" width="4" height="2" id="106" pattern="2" />
|
||||
<field border="1" x="54" y="1" type="Stringa" align="center" width="4" height="2" id="107" pattern="2" />
|
||||
<field border="1" x="58" y="1" type="Stringa" align="center" width="4" height="2" id="108" pattern="2" />
|
||||
<field border="1" x="62" y="1" type="Stringa" align="center" width="4" height="2" id="109" pattern="2" />
|
||||
<field border="1" x="66" y="1" type="Stringa" align="center" width="4" height="2" id="110" pattern="2" />
|
||||
<field border="1" x="70" y="1" type="Stringa" align="center" width="4" height="2" id="111" pattern="2" />
|
||||
<field border="1" x="74" y="1" type="Stringa" align="center" width="4" height="2" id="112" pattern="2" />
|
||||
<field border="1" x="78" y="1" type="Stringa" align="center" width="4" height="2" id="113" pattern="2" />
|
||||
<field border="1" x="82" y="1" type="Stringa" align="center" width="4" height="2" id="114" pattern="2" />
|
||||
<field border="1" x="86" y="1" type="Stringa" align="center" width="4" height="2" id="115" pattern="2" />
|
||||
<field border="1" x="90" y="1" type="Stringa" align="center" width="4" height="2" id="116" pattern="2" />
|
||||
<field border="1" x="94" y="1" type="Stringa" align="center" width="4" height="2" id="117" pattern="2" />
|
||||
<field border="1" x="98" y="1" type="Stringa" align="center" width="4" height="2" id="118" pattern="2" />
|
||||
<field border="1" x="102" y="1" type="Stringa" align="center" width="4" height="2" id="119" pattern="2" />
|
||||
<field border="1" x="106" y="1" type="Stringa" align="center" width="4" height="2" id="120" pattern="2" />
|
||||
<field border="1" x="110" y="1" type="Stringa" align="center" width="4" height="2" id="121" pattern="2" />
|
||||
<field border="1" x="114" y="1" type="Stringa" align="center" width="4" height="2" id="122" pattern="2" />
|
||||
<field border="1" x="118" y="1" type="Stringa" align="center" width="4" height="2" id="123" pattern="2" />
|
||||
<field border="1" x="122" y="1" type="Stringa" align="center" width="4" height="2" id="124" pattern="2" />
|
||||
<field border="1" x="126" y="1" type="Stringa" align="center" width="4" height="2" id="125" pattern="2" />
|
||||
<field border="1" x="130" y="1" type="Stringa" align="center" width="4" height="2" id="126" pattern="2" />
|
||||
<field border="1" x="134" y="1" type="Stringa" align="center" width="4" height="2" id="127" pattern="2" />
|
||||
<field border="1" x="138" y="1" type="Stringa" align="center" width="4" height="2" id="128" pattern="2" />
|
||||
<field border="1" x="142" y="1" type="Stringa" align="center" width="4" height="2" id="129" pattern="2" />
|
||||
<field border="1" x="146" y="1" type="Stringa" align="center" width="4" height="2" id="130" pattern="2" />
|
||||
<field border="1" x="150" y="1" type="Stringa" align="center" width="4" height="2" id="131" pattern="2" />
|
||||
<field x="1" y="2" type="Stringa" width="18" pattern="1">
|
||||
<font face="Arial" bold="1" size="8" />
|
||||
<source>Des1</source>
|
||||
</field>
|
||||
<field border="1" x="57" y="1" type="Stringa" align="center" width="3.5" height="2" id="101" pattern="2" />
|
||||
<field border="1" x="60.5" y="1" type="Stringa" align="center" width="3.5" height="2" id="102" pattern="2" />
|
||||
<field border="1" x="64" y="1" type="Stringa" align="center" width="3.5" height="2" id="103" pattern="2" />
|
||||
<field border="1" x="67.5" y="1" type="Stringa" align="center" width="3.5" height="2" id="104" pattern="2" />
|
||||
<field border="1" x="71" y="1" type="Stringa" align="center" width="3.5" height="2" id="105" pattern="2" />
|
||||
<field border="1" x="74.5" y="1" type="Stringa" align="center" width="3.5" height="2" id="106" pattern="2" />
|
||||
<field border="1" x="78" y="1" type="Stringa" align="center" width="3.5" height="2" id="107" pattern="2" />
|
||||
<field border="1" x="81.5" y="1" type="Stringa" align="center" width="3.5" height="2" id="108" pattern="2" />
|
||||
<field border="1" x="85" y="1" type="Stringa" align="center" width="3.5" height="2" id="109" pattern="2" />
|
||||
<field border="1" x="88.5" y="1" type="Stringa" align="center" width="3.5" height="2" id="110" pattern="2" />
|
||||
<field border="1" x="92" y="1" type="Stringa" align="center" width="3.5" height="2" id="111" pattern="2" />
|
||||
<field border="1" x="95.5" y="1" type="Stringa" align="center" width="3.5" height="2" id="112" pattern="2" />
|
||||
<field border="1" x="99" y="1" type="Stringa" align="center" width="3.5" height="2" id="113" pattern="2" />
|
||||
<field border="1" x="102.5" y="1" type="Stringa" align="center" width="3.5" height="2" id="114" pattern="2" />
|
||||
<field border="1" x="106" y="1" type="Stringa" align="center" width="3.5" height="2" id="115" pattern="2" />
|
||||
<field border="1" x="109.5" y="1" type="Stringa" align="center" width="3.5" height="2" id="116" pattern="2" />
|
||||
<field border="1" x="113" y="1" type="Stringa" align="center" width="3.5" height="2" id="117" pattern="2" />
|
||||
<field border="1" x="116.5" y="1" type="Stringa" align="center" width="3.5" height="2" id="118" pattern="2" />
|
||||
<field border="1" x="120" y="1" type="Stringa" align="center" width="3.5" height="2" id="119" pattern="2" />
|
||||
<field border="1" x="123.5" y="1" type="Stringa" align="center" width="3.5" height="2" id="120" pattern="2" />
|
||||
<field border="1" x="127" y="1" type="Stringa" align="center" width="3.5" height="2" id="121" pattern="2" />
|
||||
<field border="1" x="130.5" y="1" type="Stringa" align="center" width="3.5" height="2" id="122" pattern="2" />
|
||||
<field border="1" x="134" y="1" type="Stringa" align="center" width="3.5" height="2" id="123" pattern="2" />
|
||||
<field border="1" x="137.5" y="1" type="Stringa" align="center" width="3.5" height="2" id="124" pattern="2" />
|
||||
<field border="1" x="141" y="1" type="Stringa" align="center" width="3.5" height="2" id="125" pattern="2" />
|
||||
<field border="1" x="144.5" y="1" type="Stringa" align="center" width="3.5" height="2" id="126" pattern="2" />
|
||||
<field border="1" x="148" y="1" type="Stringa" align="center" width="3.5" height="2" id="127" pattern="2" />
|
||||
<field border="1" x="151.5" y="1" type="Stringa" align="center" width="3.5" height="2" id="128" pattern="2" />
|
||||
<field border="1" x="155" y="1" type="Stringa" align="center" width="3.5" height="2" id="129" pattern="2" />
|
||||
<field border="1" x="158.5" y="1" type="Stringa" align="center" width="3.5" height="2" id="130" pattern="2" />
|
||||
<field border="1" x="162" y="1" type="Stringa" align="center" width="3.5" height="2" id="131" pattern="2" />
|
||||
</section>
|
||||
<section type="Head" level="1" pattern="1">
|
||||
<font face="Arial" size="10" />
|
||||
@ -48,8 +53,8 @@
|
||||
<font face="Arial" bold="1" size="14" />
|
||||
<source>#CMSOCDC</source>
|
||||
<list>
|
||||
<li Value="Rilevazione ore mensili Commessa" Code="C" />
|
||||
<li Value="Rilevazione ore mensili Centro di Costo" Code="S" />
|
||||
<li Value="Rilevazione ore mensili per Commessa" Code="C" />
|
||||
<li Value="Rilevazione ore mensili per CdC" Code="S" />
|
||||
</list>
|
||||
</field>
|
||||
<field x="10" y="1" type="Testo" bg_color="#400040" txt_color="#FFFFFF" width="10" pattern="1" />
|
||||
@ -79,210 +84,216 @@
|
||||
</list>
|
||||
</field>
|
||||
<field x="38" y="4.5" type="Testo" bg_color="#400040" txt_color="#FFFFFF" width="8" pattern="2" />
|
||||
<field x="46" y="4.5" type="Array" bg_color="#400040" txt_color="#FFFFFF" width="17" pattern="2">
|
||||
<field x="46" y="4.5" type="Array" bg_color="#400040" txt_color="#FFFFFF" width="16" pattern="2">
|
||||
<source>#CMSOCDC</source>
|
||||
<list>
|
||||
<li Value="Commessa:" Code="C">MESSAGE HIDE,H1.92|SHOW,H1.91</li>
|
||||
<li Value="Centro di costo:" Code="S">MESSAGE HIDE,H1.91|SHOW,H1.92</li>
|
||||
</list>
|
||||
</field>
|
||||
<field x="69" y="4.5" type="Testo" bg_color="#400040" txt_color="#FFFFFF" width="2" pattern="2" />
|
||||
<field x="131" y="4.5" type="Testo" bg_color="#400040" txt_color="#FFFFFF" width="2" pattern="2" />
|
||||
<field x="133" y="4.5" type="Testo" bg_color="#400040" txt_color="#FFFFFF" width="15" pattern="2" text="Data stampa:" />
|
||||
<field x="148" y="4.5" type="Data" bg_color="#400040" txt_color="#FFFFFF" width="12" pattern="2">
|
||||
<font face="Arial" bold="1" size="10" />
|
||||
<source>#SYSTEM.DATE</source>
|
||||
</field>
|
||||
<field x="158" y="4.5" type="Testo" bg_color="#400040" txt_color="#FFFFFF" width="4" pattern="2" />
|
||||
<field border="2" x="1" y="6" type="Linea" width="162" height="0" pattern="1" />
|
||||
<field x="63" y="4.5" type="Stringa" bg_color="#400040" txt_color="#FFFFFF" width="20" id="90" pattern="2">
|
||||
<field x="158" y="4.5" type="Testo" bg_color="#400040" txt_color="#FFFFFF" width="8" pattern="2" />
|
||||
<field border="2" x="1" y="6" type="Linea" width="166" height="0" pattern="1" />
|
||||
<field x="62" y="4.5" type="Stringa" bg_color="#400040" txt_color="#FFFFFF" width="20" id="90" pattern="2">
|
||||
<font face="Arial" bold="1" size="10" />
|
||||
<source>#CODCMSCDC</source>
|
||||
<source>#CODCMS</source>
|
||||
</field>
|
||||
<field x="83" y="4.5" type="Stringa" bg_color="#400040" txt_color="#FFFFFF" width="50" id="91" pattern="2">
|
||||
<field x="81.5" y="4.5" type="Stringa" bg_color="#400040" txt_color="#FFFFFF" width="50" id="91" pattern="2">
|
||||
<font face="Arial" bold="1" size="10" />
|
||||
<prescript description="H1.91 PRESCRIPT">MESSAGE ISAMREAD,COMMESSE,CODCMS=#90,DESCRIZ</prescript>
|
||||
</field>
|
||||
<field x="83" y="4.5" type="Stringa" bg_color="#400040" txt_color="#FFFFFF" width="50" id="92" pattern="2">
|
||||
<field x="81.5" y="4.5" type="Stringa" bg_color="#400040" txt_color="#FFFFFF" width="50" id="92" pattern="2">
|
||||
<font face="Arial" bold="1" size="10" />
|
||||
<prescript description="H1.92 PRESCRIPT">MESSAGE ISAMREAD,CDC,CODCOSTO=#90,DESCRIZ</prescript>
|
||||
</field>
|
||||
</section>
|
||||
<section type="Body" pattern="1" />
|
||||
<section type="Body" level="1" pattern="1">
|
||||
<font face="Arial Narrow" size="8" />
|
||||
<field border="1" x="1" type="Stringa" dynamic_height="1" width="20" height="2" pattern="1">
|
||||
<source>A</source>
|
||||
<font face="Arial Narrow" size="7" />
|
||||
<field border="1" x="43.5" type="Numero" align="right" width="6" pattern="1" text="##@,@@">
|
||||
<source>TotPrev</source>
|
||||
<prescript description="B1.0 PRESCRIPT">MESSAGE ADD,F1.99</prescript>
|
||||
</field>
|
||||
<field border="1" x="22" type="Numero" align="right" width="7" pattern="1" text="###@,@@">
|
||||
<source>B</source>
|
||||
<field border="1" x="50" type="Numero" align="right" width="6" pattern="1" text="##@,@@">
|
||||
<source>TotCons</source>
|
||||
<prescript description="B1.0 PRESCRIPT">MESSAGE ADD,F1.100</prescript>
|
||||
</field>
|
||||
<field border="1" x="30" type="Numero" align="right" width="4" pattern="1" hide_zero="1" text="#@,@@">
|
||||
<source>C</source>
|
||||
<field border="1" x="57" type="Numero" align="right" width="3.5" pattern="1" hide_zero="1" text="#@,@@">
|
||||
<source>G01</source>
|
||||
<prescript description="B1.0 PRESCRIPT">MESSAGE ADD,F1.101</prescript>
|
||||
</field>
|
||||
<field border="1" x="34" type="Numero" align="right" width="4" pattern="1" hide_zero="1" text="#@,@@">
|
||||
<source>D</source>
|
||||
<field border="1" x="60.5" type="Numero" align="right" width="3.5" pattern="1" hide_zero="1" text="#@,@@">
|
||||
<source>G02</source>
|
||||
<prescript description="B1.0 PRESCRIPT">MESSAGE ADD,F1.102</prescript>
|
||||
</field>
|
||||
<field border="1" x="38" type="Numero" align="right" width="4" pattern="1" hide_zero="1" text="#@,@@">
|
||||
<source>E</source>
|
||||
<field border="1" x="64" type="Numero" align="right" width="3.5" pattern="1" hide_zero="1" text="#@,@@">
|
||||
<source>G03</source>
|
||||
<prescript description="B1.0 PRESCRIPT">MESSAGE ADD,F1.103</prescript>
|
||||
</field>
|
||||
<field border="1" x="42" type="Numero" align="right" width="4" pattern="1" hide_zero="1" text="#@,@@">
|
||||
<source>F</source>
|
||||
<field border="1" x="67.5" type="Numero" align="right" width="3.5" pattern="1" hide_zero="1" text="#@,@@">
|
||||
<source>G04</source>
|
||||
<prescript description="B1.0 PRESCRIPT">MESSAGE ADD,F1.104</prescript>
|
||||
</field>
|
||||
<field border="1" x="46" type="Numero" align="right" width="4" pattern="1" hide_zero="1" text="#@,@@">
|
||||
<source>G</source>
|
||||
<field border="1" x="71" type="Numero" align="right" width="3.5" pattern="1" hide_zero="1" text="#@,@@">
|
||||
<source>G05</source>
|
||||
<prescript description="B1.0 PRESCRIPT">MESSAGE ADD,F1.105</prescript>
|
||||
</field>
|
||||
<field border="1" x="50" type="Numero" align="right" width="4" pattern="1" hide_zero="1" text="#@,@@">
|
||||
<source>H</source>
|
||||
<field border="1" x="74.5" type="Numero" align="right" width="3.5" pattern="1" hide_zero="1" text="#@,@@">
|
||||
<source>G06</source>
|
||||
<prescript description="B1.0 PRESCRIPT">MESSAGE ADD,F1.106</prescript>
|
||||
</field>
|
||||
<field border="1" x="54" type="Numero" align="right" width="4" pattern="1" hide_zero="1" text="#@,@@">
|
||||
<source>I</source>
|
||||
<field border="1" x="78" type="Numero" align="right" width="3.5" pattern="1" hide_zero="1" text="#@,@@">
|
||||
<source>G07</source>
|
||||
<prescript description="B1.0 PRESCRIPT">MESSAGE ADD,F1.107</prescript>
|
||||
</field>
|
||||
<field border="1" x="58" type="Numero" align="right" width="4" pattern="1" hide_zero="1" text="#@,@@">
|
||||
<source>J</source>
|
||||
<field border="1" x="81.5" type="Numero" align="right" width="3.5" pattern="1" hide_zero="1" text="#@,@@">
|
||||
<source>G08</source>
|
||||
<prescript description="B1.0 PRESCRIPT">MESSAGE ADD,F1.108</prescript>
|
||||
</field>
|
||||
<field border="1" x="62" type="Numero" align="right" width="4" pattern="1" hide_zero="1" text="#@,@@">
|
||||
<source>K</source>
|
||||
<field border="1" x="85" type="Numero" align="right" width="3.5" pattern="1" hide_zero="1" text="#@,@@">
|
||||
<source>G09</source>
|
||||
<prescript description="B1.0 PRESCRIPT">MESSAGE ADD,F1.109</prescript>
|
||||
</field>
|
||||
<field border="1" x="66" type="Numero" align="right" width="4" pattern="1" hide_zero="1" text="#@,@@">
|
||||
<source>L</source>
|
||||
<field border="1" x="88.5" type="Numero" align="right" width="3.5" pattern="1" hide_zero="1" text="#@,@@">
|
||||
<source>G10</source>
|
||||
<prescript description="B1.0 PRESCRIPT">MESSAGE ADD,F1.110</prescript>
|
||||
</field>
|
||||
<field border="1" x="70" type="Numero" align="right" width="4" pattern="1" hide_zero="1" text="#@,@@">
|
||||
<source>M</source>
|
||||
<field border="1" x="92" type="Numero" align="right" width="3.5" pattern="1" hide_zero="1" text="#@,@@">
|
||||
<source>G11</source>
|
||||
<prescript description="B1.0 PRESCRIPT">MESSAGE ADD,F1.111</prescript>
|
||||
</field>
|
||||
<field border="1" x="74" type="Numero" align="right" width="4" pattern="1" hide_zero="1" text="#@,@@">
|
||||
<source>N</source>
|
||||
<field border="1" x="95.5" type="Numero" align="right" width="3.5" pattern="1" hide_zero="1" text="#@,@@">
|
||||
<source>G12</source>
|
||||
<prescript description="B1.0 PRESCRIPT">MESSAGE ADD,F1.112</prescript>
|
||||
</field>
|
||||
<field border="1" x="78" type="Numero" align="right" width="4" pattern="1" hide_zero="1" text="#@,@@">
|
||||
<source>O</source>
|
||||
<field border="1" x="99" type="Numero" align="right" width="3.5" pattern="1" hide_zero="1" text="#@,@@">
|
||||
<source>G13</source>
|
||||
<prescript description="B1.0 PRESCRIPT">MESSAGE ADD,F1.113</prescript>
|
||||
</field>
|
||||
<field border="1" x="82" type="Numero" align="right" width="4" pattern="1" hide_zero="1" text="#@,@@">
|
||||
<source>P</source>
|
||||
<field border="1" x="102.5" type="Numero" align="right" width="3.5" pattern="1" hide_zero="1" text="#@,@@">
|
||||
<source>G14</source>
|
||||
<prescript description="B1.0 PRESCRIPT">MESSAGE ADD,F1.114</prescript>
|
||||
</field>
|
||||
<field border="1" x="86" type="Numero" align="right" width="4" pattern="1" hide_zero="1" text="#@,@@">
|
||||
<source>Q</source>
|
||||
<field border="1" x="106" type="Numero" align="right" width="3.5" pattern="1" hide_zero="1" text="#@,@@">
|
||||
<source>G15</source>
|
||||
<prescript description="B1.0 PRESCRIPT">MESSAGE ADD,F1.115</prescript>
|
||||
</field>
|
||||
<field border="1" x="90" type="Numero" align="right" width="4" pattern="1" hide_zero="1" text="#@,@@">
|
||||
<source>R</source>
|
||||
<field border="1" x="109.5" type="Numero" align="right" width="3.5" pattern="1" hide_zero="1" text="#@,@@">
|
||||
<source>G16</source>
|
||||
<prescript description="B1.0 PRESCRIPT">MESSAGE ADD,F1.116</prescript>
|
||||
</field>
|
||||
<field border="1" x="94" type="Numero" align="right" width="4" pattern="1" hide_zero="1" text="#@,@@">
|
||||
<source>S</source>
|
||||
<field border="1" x="113" type="Numero" align="right" width="3.5" pattern="1" hide_zero="1" text="#@,@@">
|
||||
<source>G17</source>
|
||||
<prescript description="B1.0 PRESCRIPT">MESSAGE ADD,F1.117</prescript>
|
||||
</field>
|
||||
<field border="1" x="98" type="Numero" align="right" width="4" pattern="1" hide_zero="1" text="#@,@@">
|
||||
<source>T</source>
|
||||
<field border="1" x="116.5" type="Numero" align="right" width="3.5" pattern="1" hide_zero="1" text="#@,@@">
|
||||
<source>G18</source>
|
||||
<prescript description="B1.0 PRESCRIPT">MESSAGE ADD,F1.118</prescript>
|
||||
</field>
|
||||
<field border="1" x="102" type="Numero" align="right" width="4" pattern="1" hide_zero="1" text="#@,@@">
|
||||
<source>U</source>
|
||||
<field border="1" x="120" type="Numero" align="right" width="3.5" pattern="1" hide_zero="1" text="#@,@@">
|
||||
<source>G19</source>
|
||||
<prescript description="B1.0 PRESCRIPT">MESSAGE ADD,F1.119</prescript>
|
||||
</field>
|
||||
<field border="1" x="106" type="Numero" align="right" width="4" pattern="1" hide_zero="1" text="#@,@@">
|
||||
<source>V</source>
|
||||
<field border="1" x="123.5" type="Numero" align="right" width="3.5" pattern="1" hide_zero="1" text="#@,@@">
|
||||
<source>G20</source>
|
||||
<prescript description="B1.0 PRESCRIPT">MESSAGE ADD,F1.120</prescript>
|
||||
</field>
|
||||
<field border="1" x="110" type="Numero" align="right" width="4" pattern="1" hide_zero="1" text="#@,@@">
|
||||
<source>W</source>
|
||||
<field border="1" x="127" type="Numero" align="right" width="3.5" pattern="1" hide_zero="1" text="#@,@@">
|
||||
<source>G21</source>
|
||||
<prescript description="B1.0 PRESCRIPT">MESSAGE ADD,F1.121</prescript>
|
||||
</field>
|
||||
<field border="1" x="114" type="Numero" align="right" width="4" pattern="1" hide_zero="1" text="#@,@@">
|
||||
<source>X</source>
|
||||
<field border="1" x="130.5" type="Numero" align="right" width="3.5" pattern="1" hide_zero="1" text="#@,@@">
|
||||
<source>G22</source>
|
||||
<prescript description="B1.0 PRESCRIPT">MESSAGE ADD,F1.122</prescript>
|
||||
</field>
|
||||
<field border="1" x="118" type="Numero" align="right" width="4" pattern="1" hide_zero="1" text="#@,@@">
|
||||
<source>Y</source>
|
||||
<field border="1" x="134" type="Numero" align="right" width="3.5" pattern="1" hide_zero="1" text="#@,@@">
|
||||
<source>G23</source>
|
||||
<prescript description="B1.0 PRESCRIPT">MESSAGE ADD,F1.123</prescript>
|
||||
</field>
|
||||
<field border="1" x="122" type="Numero" align="right" width="4" pattern="1" hide_zero="1" text="#@,@@">
|
||||
<source>Z</source>
|
||||
<field border="1" x="137.5" type="Numero" align="right" width="3.5" pattern="1" hide_zero="1" text="#@,@@">
|
||||
<source>G24</source>
|
||||
<prescript description="B1.0 PRESCRIPT">MESSAGE ADD,F1.124</prescript>
|
||||
</field>
|
||||
<field border="1" x="126" type="Numero" align="right" width="4" pattern="1" hide_zero="1" text="#@,@@">
|
||||
<source>AA</source>
|
||||
<field border="1" x="141" type="Numero" align="right" width="3.5" pattern="1" hide_zero="1" text="#@,@@">
|
||||
<source>G25</source>
|
||||
<prescript description="B1.0 PRESCRIPT">MESSAGE ADD,F1.125</prescript>
|
||||
</field>
|
||||
<field border="1" x="130" type="Numero" align="right" width="4" pattern="1" hide_zero="1" text="#@,@@">
|
||||
<source>AB</source>
|
||||
<field border="1" x="144.5" type="Numero" align="right" width="3.5" pattern="1" hide_zero="1" text="#@,@@">
|
||||
<source>G26</source>
|
||||
<prescript description="B1.0 PRESCRIPT">MESSAGE ADD,F1.126</prescript>
|
||||
</field>
|
||||
<field border="1" x="134" type="Numero" align="right" width="4" pattern="1" hide_zero="1" text="#@,@@">
|
||||
<source>AC</source>
|
||||
<field border="1" x="148" type="Numero" align="right" width="3.5" pattern="1" hide_zero="1" text="#@,@@">
|
||||
<source>G27</source>
|
||||
<prescript description="B1.0 PRESCRIPT">MESSAGE ADD,F1.127</prescript>
|
||||
</field>
|
||||
<field border="1" x="138" type="Numero" align="right" width="4" pattern="1" hide_zero="1" text="#@,@@">
|
||||
<source>AD</source>
|
||||
<field border="1" x="151.5" type="Numero" align="right" width="3.5" pattern="1" hide_zero="1" text="#@,@@">
|
||||
<source>G28</source>
|
||||
<prescript description="B1.0 PRESCRIPT">MESSAGE ADD,F1.128</prescript>
|
||||
</field>
|
||||
<field border="1" x="142" type="Numero" align="right" width="4" pattern="1" hide_zero="1" text="#@,@@">
|
||||
<source>AE</source>
|
||||
<field border="1" x="155" type="Numero" align="right" width="3.5" pattern="1" hide_zero="1" text="#@,@@">
|
||||
<source>G29</source>
|
||||
<prescript description="B1.0 PRESCRIPT">MESSAGE ADD,F1.129</prescript>
|
||||
</field>
|
||||
<field border="1" x="146" type="Numero" align="right" width="4" pattern="1" hide_zero="1" text="#@,@@">
|
||||
<source>AF</source>
|
||||
<field border="1" x="158.5" type="Numero" align="right" width="3.5" pattern="1" hide_zero="1" text="#@,@@">
|
||||
<source>G30</source>
|
||||
<prescript description="B1.0 PRESCRIPT">MESSAGE ADD,F1.130</prescript>
|
||||
</field>
|
||||
<field border="1" x="150" type="Numero" align="right" width="4" pattern="1" hide_zero="1" text="#@,@@">
|
||||
<source>AG</source>
|
||||
<field border="1" x="162" type="Numero" align="right" width="3.5" pattern="1" hide_zero="1" text="#@,@@">
|
||||
<source>G31</source>
|
||||
<prescript description="B1.0 PRESCRIPT">MESSAGE ADD,F1.131</prescript>
|
||||
</field>
|
||||
<field border="1" x="155" type="Numero" align="right" width="6" pattern="1" text="##@,@@">
|
||||
<source>AH</source>
|
||||
<prescript description="B1.0 PRESCRIPT">MESSAGE ADD,F1.132</prescript>
|
||||
<field border="1" x="1" type="Stringa" width="13" id="90" pattern="1">
|
||||
<font face="Arial Narrow" bold="1" size="8" />
|
||||
<source>Key2</source>
|
||||
</field>
|
||||
<field border="1" x="14" type="Stringa" width="29" id="91" pattern="1">
|
||||
<source>Des2</source>
|
||||
</field>
|
||||
</section>
|
||||
<section type="Foot" pattern="1" />
|
||||
<section type="Foot" level="1" pattern="1">
|
||||
<font face="Arial Narrow" bold="1" size="8" />
|
||||
<field border="1" x="1" y="0.5" type="Testo" align="right" bg_color="#C0C0C0" width="20" pattern="2" text="Totali">
|
||||
<font face="Arial Narrow" bold="1" size="7" />
|
||||
<field border="1" x="14" y="0.5" type="Testo" align="right" bg_color="#C0C0C0" width="29" pattern="2" text="Totali">
|
||||
<font face="Arial" bold="1" size="8" />
|
||||
</field>
|
||||
<field border="1" x="22" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="7" id="100" pattern="2" text="###@,@@" />
|
||||
<field border="1" x="30" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="4" id="101" pattern="2" hide_zero="1" text="#@,@@" />
|
||||
<field border="1" x="34" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="4" id="102" pattern="2" hide_zero="1" text="#@,@@" />
|
||||
<field border="1" x="38" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="4" id="103" pattern="2" hide_zero="1" text="#@,@@" />
|
||||
<field border="1" x="42" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="4" id="104" pattern="2" hide_zero="1" text="#@,@@" />
|
||||
<field border="1" x="46" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="4" id="105" pattern="2" hide_zero="1" text="#@,@@" />
|
||||
<field border="1" x="50" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="4" id="106" pattern="2" hide_zero="1" text="#@,@@" />
|
||||
<field border="1" x="54" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="4" id="107" pattern="2" hide_zero="1" text="#@,@@" />
|
||||
<field border="1" x="58" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="4" id="108" pattern="2" hide_zero="1" text="#@,@@" />
|
||||
<field border="1" x="62" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="4" id="109" pattern="2" hide_zero="1" text="#@,@@" />
|
||||
<field border="1" x="66" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="4" id="110" pattern="2" hide_zero="1" text="#@,@@" />
|
||||
<field border="1" x="70" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="4" id="111" pattern="2" hide_zero="1" text="#@,@@" />
|
||||
<field border="1" x="74" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="4" id="112" pattern="2" hide_zero="1" text="#@,@@" />
|
||||
<field border="1" x="78" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="4" id="113" pattern="2" hide_zero="1" text="#@,@@" />
|
||||
<field border="1" x="82" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="4" id="114" pattern="2" hide_zero="1" text="#@,@@" />
|
||||
<field border="1" x="86" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="4" id="115" pattern="2" hide_zero="1" text="#@,@@" />
|
||||
<field border="1" x="90" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="4" id="116" pattern="2" hide_zero="1" text="#@,@@" />
|
||||
<field border="1" x="94" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="4" id="117" pattern="2" hide_zero="1" text="#@,@@" />
|
||||
<field border="1" x="98" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="4" id="118" pattern="2" hide_zero="1" text="#@,@@" />
|
||||
<field border="1" x="102" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="4" id="119" pattern="2" hide_zero="1" text="#@,@@" />
|
||||
<field border="1" x="106" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="4" id="120" pattern="2" hide_zero="1" text="#@,@@" />
|
||||
<field border="1" x="110" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="4" id="121" pattern="2" hide_zero="1" text="#@,@@" />
|
||||
<field border="1" x="114" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="4" id="122" pattern="2" hide_zero="1" text="#@,@@" />
|
||||
<field border="1" x="118" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="4" id="123" pattern="2" hide_zero="1" text="#@,@@" />
|
||||
<field border="1" x="122" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="4" id="124" pattern="2" hide_zero="1" text="#@,@@" />
|
||||
<field border="1" x="126" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="4" id="125" pattern="2" hide_zero="1" text="#@,@@" />
|
||||
<field border="1" x="130" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="4" id="126" pattern="2" hide_zero="1" text="#@,@@" />
|
||||
<field border="1" x="134" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="4" id="127" pattern="2" hide_zero="1" text="#@,@@" />
|
||||
<field border="1" x="138" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="4" id="128" pattern="2" hide_zero="1" text="#@,@@" />
|
||||
<field border="1" x="142" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="4" id="129" pattern="2" hide_zero="1" text="#@,@@" />
|
||||
<field border="1" x="146" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="4" id="130" pattern="2" hide_zero="1" text="#@,@@" />
|
||||
<field border="1" x="150" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="4" id="131" pattern="2" hide_zero="1" text="#@,@@" />
|
||||
<field border="1" x="155" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="6" id="132" pattern="2" text="##@,@@" />
|
||||
<field border="1" x="43.5" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="6" id="99" pattern="2" text="##@,@@" />
|
||||
<field border="1" x="50" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="6" id="100" pattern="2" text="##@,@@" />
|
||||
<field border="1" x="57" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="3.5" id="101" pattern="2" hide_zero="1" text="#@,@@" />
|
||||
<field border="1" x="60.5" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="3.5" id="102" pattern="2" hide_zero="1" text="#@,@@" />
|
||||
<field border="1" x="64" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="3.5" id="103" pattern="2" hide_zero="1" text="#@,@@" />
|
||||
<field border="1" x="67.5" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="3.5" id="104" pattern="2" hide_zero="1" text="#@,@@" />
|
||||
<field border="1" x="71" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="3.5" id="105" pattern="2" hide_zero="1" text="#@,@@" />
|
||||
<field border="1" x="74.5" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="3.5" id="106" pattern="2" hide_zero="1" text="#@,@@" />
|
||||
<field border="1" x="78" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="3.5" id="107" pattern="2" hide_zero="1" text="#@,@@" />
|
||||
<field border="1" x="81.5" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="3.5" id="108" pattern="2" hide_zero="1" text="#@,@@" />
|
||||
<field border="1" x="85" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="3.5" id="109" pattern="2" hide_zero="1" text="#@,@@" />
|
||||
<field border="1" x="88.5" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="3.5" id="110" pattern="2" hide_zero="1" text="#@,@@" />
|
||||
<field border="1" x="92" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="3.5" id="111" pattern="2" hide_zero="1" text="#@,@@" />
|
||||
<field border="1" x="95.5" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="3.5" id="112" pattern="2" hide_zero="1" text="#@,@@" />
|
||||
<field border="1" x="99" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="3.5" id="113" pattern="2" hide_zero="1" text="#@,@@" />
|
||||
<field border="1" x="102.5" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="3.5" id="114" pattern="2" hide_zero="1" text="#@,@@" />
|
||||
<field border="1" x="106" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="3.5" id="115" pattern="2" hide_zero="1" text="#@,@@" />
|
||||
<field border="1" x="109.5" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="3.5" id="116" pattern="2" hide_zero="1" text="#@,@@" />
|
||||
<field border="1" x="113" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="3.5" id="117" pattern="2" hide_zero="1" text="#@,@@" />
|
||||
<field border="1" x="116.5" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="3.5" id="118" pattern="2" hide_zero="1" text="#@,@@" />
|
||||
<field border="1" x="120" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="3.5" id="119" pattern="2" hide_zero="1" text="#@,@@" />
|
||||
<field border="1" x="123.5" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="3.5" id="120" pattern="2" hide_zero="1" text="#@,@@" />
|
||||
<field border="1" x="127" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="3.5" id="121" pattern="2" hide_zero="1" text="#@,@@" />
|
||||
<field border="1" x="130.5" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="3.5" id="122" pattern="2" hide_zero="1" text="#@,@@" />
|
||||
<field border="1" x="134" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="3.5" id="123" pattern="2" hide_zero="1" text="#@,@@" />
|
||||
<field border="1" x="137.5" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="3.5" id="124" pattern="2" hide_zero="1" text="#@,@@" />
|
||||
<field border="1" x="141" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="3.5" id="125" pattern="2" hide_zero="1" text="#@,@@" />
|
||||
<field border="1" x="144.5" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="3.5" id="126" pattern="2" hide_zero="1" text="#@,@@" />
|
||||
<field border="1" x="148" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="3.5" id="127" pattern="2" hide_zero="1" text="#@,@@" />
|
||||
<field border="1" x="151.5" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="3.5" id="128" pattern="2" hide_zero="1" text="#@,@@" />
|
||||
<field border="1" x="155" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="3.5" id="129" pattern="2" hide_zero="1" text="#@,@@" />
|
||||
<field border="1" x="158.5" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="3.5" id="130" pattern="2" hide_zero="1" text="#@,@@" />
|
||||
<field border="1" x="162" y="0.5" type="Numero" align="right" bg_color="#C0C0C0" width="3.5" id="131" pattern="2" hide_zero="1" text="#@,@@" />
|
||||
</section>
|
||||
</report>
|
Loading…
x
Reference in New Issue
Block a user