Patch level :
Files correlati : Ricompilazione Demo : [ ] Commento : git-svn-id: svn://10.65.10.50/trunk@16370 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
parent
3e79b4f81f
commit
d3da15328a
@ -213,14 +213,15 @@ void TDichiarazione_CONAI::scrivi_csv_doc_con_riga_generata(TDocumento& doc, con
|
||||
qta_tot_conai = -qta_tot_conai;
|
||||
csv.set(15, TVariant(qta_tot_conai));
|
||||
|
||||
//percentuale di esenzione conai al 100%?
|
||||
const real perc = rdoc.get_real(RDOC_QTAGG2);
|
||||
|
||||
//quantita' assoggettata (B) sul report (le NAC hanno segno rovesciato)
|
||||
real qta_assoggettata_conai = agip.get();
|
||||
|
||||
if (perc == CENTO)
|
||||
//se non trova un prezzo nella riga generata la % di esenzione CONAI e' 100
|
||||
if (prezzo == ZERO)
|
||||
{
|
||||
//se trova la % di esenzione al 100 non puo' assoggettare conai!
|
||||
qta_assoggettata_conai = ZERO;
|
||||
}
|
||||
|
||||
if (is_nac)
|
||||
qta_assoggettata_conai = -qta_assoggettata_conai;
|
||||
@ -231,11 +232,12 @@ void TDichiarazione_CONAI::scrivi_csv_doc_con_riga_generata(TDocumento& doc, con
|
||||
csv.set(12, TVariant(qta_esente_conai));
|
||||
|
||||
//valore totale contributo (BxC) sul report
|
||||
const TCurrency totale_contrib_conai = qta_assoggettata_conai * prezzo;
|
||||
csv.set(14, TVariant(totale_contrib_conai.get_num()));
|
||||
const real totale_contrib_conai = qta_assoggettata_conai * prezzo;
|
||||
csv.set(14, TVariant(totale_contrib_conai));
|
||||
|
||||
//percentuale di esenzione conai in qtagg2
|
||||
csv.set(16, TVariant(perc));
|
||||
const real rdoc_perc_conai = rdoc.get_real(RDOC_QTAGG2);
|
||||
csv.set(16, TVariant(rdoc_perc_conai));
|
||||
|
||||
//percentuale di esenzione conai in cfven
|
||||
csv.set(17, TVariant(cfven_perc_conai));
|
||||
@ -314,16 +316,15 @@ void TDichiarazione_CONAI::scrivi_csv_doc_speciale(TDocumento& doc, TDichiarazio
|
||||
csv.set(15, TVariant(qta_tot_conai));
|
||||
|
||||
//percentuale di esenzione conai al 100%?
|
||||
const real perc = rdoc.get_real(RDOC_QTAGG2);
|
||||
const real rdoc_perc_conai = rdoc.get_real(RDOC_QTAGG2);
|
||||
|
||||
//quantita' assoggettata (B) sul report (le NAC hanno segno rovesciato)
|
||||
//quantita' assoggettata (B) sul report (le NAC hanno segno rovesciato, ma avendolo gia' gia' rovesciato..
|
||||
//..in precedenza non deve fare nulla!)
|
||||
real qta_assoggettata_conai = qta_tot_conai;
|
||||
|
||||
if (perc == CENTO)
|
||||
if (rdoc_perc_conai == CENTO)
|
||||
qta_assoggettata_conai = ZERO;
|
||||
|
||||
if (is_nac)
|
||||
qta_assoggettata_conai = -qta_assoggettata_conai;
|
||||
csv.set(13, TVariant(qta_assoggettata_conai));
|
||||
|
||||
//quantita' esente conai (A) sul report
|
||||
@ -331,11 +332,11 @@ void TDichiarazione_CONAI::scrivi_csv_doc_speciale(TDocumento& doc, TDichiarazio
|
||||
csv.set(12, TVariant(qta_esente_conai));
|
||||
|
||||
//valore totale contributo (BxC) sul report
|
||||
const TCurrency totale_contrib_conai = qta_assoggettata_conai * prezzo;
|
||||
csv.set(14, TVariant(totale_contrib_conai.get_num()));
|
||||
const real totale_contrib_conai = qta_assoggettata_conai * prezzo;
|
||||
csv.set(14, TVariant(totale_contrib_conai));
|
||||
|
||||
//percentuale di esenzione conai in qtagg2
|
||||
csv.set(16, TVariant(perc));
|
||||
csv.set(16, TVariant(rdoc_perc_conai));
|
||||
|
||||
//percentuale di esenzione conai in cfven
|
||||
csv.set(17, TVariant(cfven_perc_conai));
|
||||
@ -651,8 +652,12 @@ void TDichiarazione_CONAI::elabora(const TMask& mask) const
|
||||
csv->set(16, "INDETDOC");
|
||||
csv->set(17, "INDETCLI");
|
||||
|
||||
const TString path = mask.get(F_PATH);
|
||||
csv->save_as(path, fmt_text);
|
||||
TFilename path = mask.get(F_PATH);
|
||||
path.lower();
|
||||
if (path.ends_with("xls") || path.ends_with("slk"))
|
||||
csv->save_as(path, fmt_silk);
|
||||
else
|
||||
csv->save_as(path);
|
||||
|
||||
//accoppa la riga con le intestazioni dei campi
|
||||
csv->destroy(0);
|
||||
@ -665,15 +670,16 @@ void TDichiarazione_CONAI::elabora(const TMask& mask) const
|
||||
//creazione del report di stampa
|
||||
TDichiarazione_CONAI_report rep;
|
||||
bool ok = rep.load(nome_report);
|
||||
//setta il recordset...
|
||||
//deve settare almeno un campo manualmente perche' funzioni la mask2report
|
||||
csv->set_var("#EMAIL", TVariant("Manca la email"), true);
|
||||
rep.set_recordset(csv);
|
||||
//..e poi carica i valori sulla maschera nel report!!!!
|
||||
rep.mask2report(mask);
|
||||
|
||||
if (ok)
|
||||
{
|
||||
//setta il recordset...
|
||||
//deve settare almeno un campo manualmente perche' funzioni la mask2report
|
||||
csv->set_var("#EMAIL", TVariant("Manca la email"), true);
|
||||
rep.set_recordset(csv);
|
||||
//..e poi carica i valori sulla maschera nel report!!!!
|
||||
rep.mask2report(mask);
|
||||
|
||||
TReport_book book;
|
||||
ok = book.add(rep);
|
||||
if (ok)
|
||||
|
40
tp/tp0900a.h
40
tp/tp0900a.h
@ -1,27 +1,27 @@
|
||||
#ifndef __TP0900A_H
|
||||
#define __TP0900A_H
|
||||
|
||||
#define F_FIRM 101
|
||||
#define F_RAGSOC 102
|
||||
#define F_PAIV 103
|
||||
#define F_COFI 104
|
||||
#define F_DENCOM 105
|
||||
#define F_INDIR 106
|
||||
#define F_FIRM 201
|
||||
#define F_RAGSOC 202
|
||||
#define F_DENCOM 205
|
||||
#define F_INDIR 206
|
||||
|
||||
#define F_PERIODO 111
|
||||
#define F_ANNO 112
|
||||
#define F_MESE 113
|
||||
#define F_TRIMESTRE 114
|
||||
#define F_TIPI 115
|
||||
#define F_SPECIECONAI 116
|
||||
#define F_TIPOSTAMPA 117
|
||||
#define F_EMAIL 118
|
||||
#define F_TEL 119
|
||||
#define F_PERIODO 211
|
||||
#define F_ANNO 212
|
||||
#define F_MESE 213
|
||||
#define F_TRIMESTRE 214
|
||||
#define F_TIPI 215
|
||||
#define F_SPECIECONAI 216
|
||||
#define F_TIPOSTAMPA 217
|
||||
#define F_EMAIL 218
|
||||
#define F_TEL 219
|
||||
|
||||
#define F_SOCIO 121
|
||||
#define F_RESP 122
|
||||
#define F_PRODUT 123
|
||||
#define F_EXCEL 124
|
||||
#define F_PATH 125
|
||||
#define F_SOCIO 221
|
||||
#define F_RESP 222
|
||||
#define F_PAIV 223
|
||||
#define F_COFI 224
|
||||
#define F_PRODUT 225
|
||||
#define F_EXCEL 226
|
||||
#define F_PATH 227
|
||||
|
||||
#endif
|
||||
|
118
tp/tp0900ac.rep
118
tp/tp0900ac.rep
@ -3,6 +3,7 @@
|
||||
<description>Dichiarazione CONAI acciaio 6.1</description>
|
||||
<font face="Courier New" size="10" />
|
||||
<section type="Head">
|
||||
<font face="Arial Narrow" size="10" />
|
||||
<field x="18.5" y="9.25" type="Array" hidden="1" width="1" pattern="1">
|
||||
<source>#PERIODO</source>
|
||||
<list>
|
||||
@ -16,6 +17,7 @@
|
||||
<source>IF(#PERIODO="1","X","")</source>
|
||||
</field>
|
||||
<field x="60.5" y="9.75" type="Numero" align="right" width="5" pattern="1">
|
||||
<font face="Arial" size="10" />
|
||||
<source>#ANNO</source>
|
||||
</field>
|
||||
<field x="19.5" y="10.25" type="Stringa" valign="center" align="center" width="1" pattern="1">
|
||||
@ -191,28 +193,24 @@
|
||||
<prescript description="B1.101 PRESCRIPT">#THIS @
|
||||
#20 @
|
||||
+!</prescript>
|
||||
<postscript description="B1.101 POSTSCRIPT">MESSAGE ADD,F0.1000</postscript>
|
||||
</field>
|
||||
<field x="30" type="Numero" hidden="1" align="right" width="10" id="102" pattern="1">
|
||||
<source>N</source>
|
||||
<prescript description="B1.102 PRESCRIPT">#THIS @
|
||||
#30 @
|
||||
+!</prescript>
|
||||
<postscript description="B1.102 POSTSCRIPT">MESSAGE ADD,F0.2000</postscript>
|
||||
</field>
|
||||
<field x="50" type="Valuta" hidden="1" align="right" width="10" id="103" pattern="1" text="#########,@@">
|
||||
<source>O</source>
|
||||
<prescript description="B1.103 PRESCRIPT">#THIS @
|
||||
#40 @
|
||||
+!</prescript>
|
||||
<postscript description="B1.103 POSTSCRIPT">MESSAGE ADD,F0.3000</postscript>
|
||||
</field>
|
||||
<field x="70" type="Numero" hidden="1" align="right" width="10" id="104" pattern="1" hide_zero="1">
|
||||
<source>P</source>
|
||||
<prescript description="B1.104 PRESCRIPT">#THIS @
|
||||
#50 @
|
||||
+!</prescript>
|
||||
<postscript description="B1.104 POSTSCRIPT">MESSAGE ADD,F0.5000</postscript>
|
||||
</field>
|
||||
</section>
|
||||
<section y="26" type="Foot">
|
||||
@ -341,74 +339,84 @@
|
||||
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="0.25" type="Valuta" align="right" width="10" id="310" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="60.5" y="1.25" type="Valuta" align="right" width="10" id="320" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="60.5" y="2.25" type="Valuta" align="right" width="10" id="330" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="60.5" y="3.25" type="Valuta" align="right" width="10" id="340" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="60.5" y="4.25" type="Valuta" align="right" width="10" id="350" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="60.5" y="5.25" type="Valuta" align="right" width="10" id="360" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="60.5" y="6.25" type="Valuta" align="right" width="10" id="370" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="60.5" y="7.25" type="Valuta" align="right" width="10" id="380" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="60.5" y="8.25" type="Valuta" align="right" width="10" id="390" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="60.5" y="9.25" type="Valuta" align="right" width="10" id="399" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="82" y="0.37" type="Valuta" hidden="1" align="right" width="10" id="310" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="82" y="1.37" type="Valuta" hidden="1" align="right" width="10" id="320" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="82" y="2.37" type="Valuta" hidden="1" align="right" width="10" id="330" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="82" y="3.37" type="Valuta" hidden="1" align="right" width="10" id="340" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="82" y="4.37" type="Valuta" hidden="1" align="right" width="10" id="350" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="82" y="5.37" type="Valuta" hidden="1" align="right" width="10" id="360" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="82" y="6.37" type="Valuta" hidden="1" align="right" width="10" id="370" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="82" y="7.37" type="Valuta" hidden="1" align="right" width="10" id="380" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="82" y="8.37" type="Valuta" hidden="1" align="right" width="10" id="390" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="82" y="9.37" type="Valuta" hidden="1" align="right" width="10" id="399" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="53" y="0.25" type="Valuta" align="right" width="5" id="410" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.410 PRESCRIPT">#310 @
|
||||
#210 @
|
||||
F;
|
||||
ROUND 2
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="53" y="1.25" type="Valuta" align="right" width="5" id="420" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.420 PRESCRIPT">#320 @
|
||||
#220 @
|
||||
F;
|
||||
ROUND 2
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="53" y="2.25" type="Valuta" align="right" width="5" id="430" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.430 PRESCRIPT">#330 @
|
||||
#230 @
|
||||
F;
|
||||
ROUND 2
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="53" y="3.25" type="Valuta" align="right" width="5" id="440" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.440 PRESCRIPT">#340 @
|
||||
#240 @
|
||||
F;
|
||||
ROUND 2
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="53" y="4.25" type="Valuta" align="right" width="5" id="450" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.450 PRESCRIPT">#350 @
|
||||
#250 @
|
||||
F;
|
||||
ROUND 2
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="53" y="5.25" type="Valuta" align="right" width="5" id="460" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.460 PRESCRIPT">#360 @
|
||||
#260 @
|
||||
F;
|
||||
ROUND 2
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="53" y="6.25" type="Valuta" align="right" width="5" id="470" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.470 PRESCRIPT">#370 @
|
||||
#270 @
|
||||
F;
|
||||
ROUND 2
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="53" y="7.25" type="Valuta" align="right" width="5" id="480" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.480 PRESCRIPT">#380 @
|
||||
#280 @
|
||||
F;
|
||||
ROUND 2
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="53" y="8.25" type="Valuta" align="right" width="5" id="490" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.490 PRESCRIPT">#390 @
|
||||
#290 @
|
||||
F;
|
||||
ROUND 2
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="53" y="9.25" type="Valuta" align="right" width="5" id="499" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.499 PRESCRIPT">#399 @
|
||||
#299 @
|
||||
F;
|
||||
ROUND 2
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="70.75" y="0.25" type="Numero" align="right" width="10" id="510" pattern="1" hide_zero="1" text="#####@,@@@">
|
||||
@ -469,10 +477,71 @@
|
||||
<prescript description="F0.599 PRESCRIPT">#THIS @
|
||||
1000 F;
|
||||
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="0.25" type="Valuta" align="right" width="10" id="610" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.610 PRESCRIPT">#210 @
|
||||
#410 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="1.25" type="Valuta" align="right" width="10" id="620" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.620 PRESCRIPT">#220 @
|
||||
#420 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="2.25" type="Valuta" align="right" width="10" id="630" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.630 PRESCRIPT">#230 @
|
||||
#430 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="3.25" type="Valuta" align="right" width="10" id="640" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.640 PRESCRIPT">#240 @
|
||||
#440 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="4.25" type="Valuta" align="right" width="10" id="650" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.650 PRESCRIPT">#250 @
|
||||
#450 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="5.25" type="Valuta" align="right" width="10" id="660" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.660 PRESCRIPT">#260 @
|
||||
#460 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="6.25" type="Valuta" align="right" width="10" id="670" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.670 PRESCRIPT">#270 @
|
||||
#470 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="7.25" type="Valuta" align="right" width="10" id="680" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.680 PRESCRIPT">#280 @
|
||||
#480 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="8.25" type="Valuta" align="right" width="10" id="690" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.690 PRESCRIPT">#290 @
|
||||
#490 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="9.25" type="Valuta" align="right" width="10" id="699" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.699 PRESCRIPT">#299 @
|
||||
#499 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="29.25" y="10.25" type="Numero" align="right" width="10" id="1000" pattern="1" hide_zero="1" text="#####@,@@@">
|
||||
<font face="Courier New" bold="1" size="8" />
|
||||
<source>#110+#120+#130+#140+#150+#160+#170+#180+#190+#199</source>
|
||||
<prescript description="F0.1000 PRESCRIPT">#THIS @
|
||||
1000 F;
|
||||
|
||||
@ -480,30 +549,41 @@
|
||||
</field>
|
||||
<field x="39.75" y="10.25" type="Numero" align="right" width="10" id="2000" pattern="1" hide_zero="1" text="#####@,@@@">
|
||||
<font face="Courier New" bold="1" size="8" />
|
||||
<source>#210+#220+#230+#240+#250+#260+#270+#280+#290+#299</source>
|
||||
<prescript description="F0.2000 PRESCRIPT">#THIS @
|
||||
1000 F;
|
||||
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="10.25" type="Valuta" align="right" width="10" id="3000" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<field x="82" y="10.37" type="Valuta" hidden="1" align="right" width="10" id="3000" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<font face="Courier New" bold="1" size="8" />
|
||||
<source>#310+#320+#330+#340+#350+#360+#370+#380+#390+#399</source>
|
||||
</field>
|
||||
<field x="53" y="10.25" type="Valuta" align="right" width="5" id="4000" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<font face="Courier New" bold="1" size="8" />
|
||||
<prescript description="F0.4000 PRESCRIPT">#340 @
|
||||
#240 @
|
||||
<prescript description="F0.4000 PRESCRIPT">#3000 @
|
||||
#2000 @
|
||||
F;
|
||||
ROUND 2
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="70.75" y="10.25" type="Numero" align="right" width="10" id="5000" pattern="1" hide_zero="1" text="#####@,@@@">
|
||||
<font face="Courier New" bold="1" size="8" />
|
||||
<source>#510+#520+#530+#540+#550+#560+#570+#580+#590+#599</source>
|
||||
<prescript description="F0.5000 PRESCRIPT">#THIS @
|
||||
1000 F;
|
||||
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="25" y="12.25" type="Numero" align="right" width="55" id="6000" pattern="1" text="LETTERE">
|
||||
<prescript description="F0.6000 PRESCRIPT">#3000 @
|
||||
<field x="60.5" y="10.25" type="Valuta" align="right" width="10" id="6000" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<font face="Courier New" bold="1" size="8" />
|
||||
<prescript description="F0.6000 PRESCRIPT">#2000 @
|
||||
#4000 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="25" y="12.25" type="Numero" align="right" width="55" id="7000" pattern="1" text="LETTERE">
|
||||
<prescript description="F0.7000 PRESCRIPT">#6000 @
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
</section>
|
||||
|
118
tp/tp0900al.rep
118
tp/tp0900al.rep
@ -3,6 +3,7 @@
|
||||
<description>Dichiarazione CONAI alluminio 6.1</description>
|
||||
<font face="Courier New" size="10" />
|
||||
<section type="Head">
|
||||
<font face="Arial Narrow" size="10" />
|
||||
<field x="18.5" y="9.25" type="Array" hidden="1" width="1" pattern="1">
|
||||
<source>#PERIODO</source>
|
||||
<list>
|
||||
@ -16,6 +17,7 @@
|
||||
<source>IF(#PERIODO="1","X","")</source>
|
||||
</field>
|
||||
<field x="60.5" y="9.75" type="Numero" align="right" width="5" pattern="1">
|
||||
<font face="Arial" size="10" />
|
||||
<source>#ANNO</source>
|
||||
</field>
|
||||
<field x="19.5" y="10.25" type="Stringa" valign="center" align="center" width="1" pattern="1">
|
||||
@ -191,28 +193,24 @@
|
||||
<prescript description="B1.101 PRESCRIPT">#THIS @
|
||||
#20 @
|
||||
+!</prescript>
|
||||
<postscript description="B1.101 POSTSCRIPT">MESSAGE ADD,F0.1000</postscript>
|
||||
</field>
|
||||
<field x="30" type="Numero" hidden="1" align="right" width="10" id="102" pattern="1">
|
||||
<source>N</source>
|
||||
<prescript description="B1.102 PRESCRIPT">#THIS @
|
||||
#30 @
|
||||
+!</prescript>
|
||||
<postscript description="B1.102 POSTSCRIPT">MESSAGE ADD,F0.2000</postscript>
|
||||
</field>
|
||||
<field x="50" type="Valuta" hidden="1" align="right" width="10" id="103" pattern="1" text="#########,@@">
|
||||
<source>O</source>
|
||||
<prescript description="B1.103 PRESCRIPT">#THIS @
|
||||
#40 @
|
||||
+!</prescript>
|
||||
<postscript description="B1.103 POSTSCRIPT">MESSAGE ADD,F0.3000</postscript>
|
||||
</field>
|
||||
<field x="70" type="Numero" hidden="1" align="right" width="10" id="104" pattern="1" hide_zero="1">
|
||||
<source>P</source>
|
||||
<prescript description="B1.104 PRESCRIPT">#THIS @
|
||||
#50 @
|
||||
+!</prescript>
|
||||
<postscript description="B1.104 POSTSCRIPT">MESSAGE ADD,F0.5000</postscript>
|
||||
</field>
|
||||
</section>
|
||||
<section y="26" type="Foot">
|
||||
@ -341,74 +339,84 @@
|
||||
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="0.25" type="Valuta" align="right" width="10" id="310" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="60.5" y="1.25" type="Valuta" align="right" width="10" id="320" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="60.5" y="2.25" type="Valuta" align="right" width="10" id="330" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="60.5" y="3.25" type="Valuta" align="right" width="10" id="340" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="60.5" y="4.25" type="Valuta" align="right" width="10" id="350" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="60.5" y="5.25" type="Valuta" align="right" width="10" id="360" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="60.5" y="6.25" type="Valuta" align="right" width="10" id="370" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="60.5" y="7.25" type="Valuta" align="right" width="10" id="380" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="60.5" y="8.25" type="Valuta" align="right" width="10" id="390" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="60.5" y="9.25" type="Valuta" align="right" width="10" id="399" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="82.37" y="0.37" type="Valuta" hidden="1" align="right" width="10" id="310" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="82.37" y="1.37" type="Valuta" hidden="1" align="right" width="10" id="320" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="82.37" y="2.37" type="Valuta" hidden="1" align="right" width="10" id="330" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="82.37" y="3.37" type="Valuta" hidden="1" align="right" width="10" id="340" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="82.37" y="4.37" type="Valuta" hidden="1" align="right" width="10" id="350" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="82.37" y="5.37" type="Valuta" hidden="1" align="right" width="10" id="360" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="82.37" y="6.37" type="Valuta" hidden="1" align="right" width="10" id="370" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="82.37" y="7.37" type="Valuta" hidden="1" align="right" width="10" id="380" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="82.37" y="8.37" type="Valuta" hidden="1" align="right" width="10" id="390" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="82.37" y="9.37" type="Valuta" hidden="1" align="right" width="10" id="399" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="53" y="0.25" type="Valuta" align="right" width="5" id="410" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.410 PRESCRIPT">#310 @
|
||||
#210 @
|
||||
F;
|
||||
ROUND 2
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="53" y="1.25" type="Valuta" align="right" width="5" id="420" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.420 PRESCRIPT">#320 @
|
||||
#220 @
|
||||
F;
|
||||
ROUND 2
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="53" y="2.25" type="Valuta" align="right" width="5" id="430" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.430 PRESCRIPT">#330 @
|
||||
#230 @
|
||||
F;
|
||||
ROUND 2
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="53" y="3.25" type="Valuta" align="right" width="5" id="440" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.440 PRESCRIPT">#340 @
|
||||
#240 @
|
||||
F;
|
||||
ROUND 2
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="53" y="4.25" type="Valuta" align="right" width="5" id="450" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.450 PRESCRIPT">#350 @
|
||||
#250 @
|
||||
F;
|
||||
ROUND 2
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="53" y="5.25" type="Valuta" align="right" width="5" id="460" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.460 PRESCRIPT">#360 @
|
||||
#260 @
|
||||
F;
|
||||
ROUND 2
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="53" y="6.25" type="Valuta" align="right" width="5" id="470" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.470 PRESCRIPT">#370 @
|
||||
#270 @
|
||||
F;
|
||||
ROUND 2
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="53" y="7.25" type="Valuta" align="right" width="5" id="480" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.480 PRESCRIPT">#380 @
|
||||
#280 @
|
||||
F;
|
||||
ROUND 2
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="53" y="8.25" type="Valuta" align="right" width="5" id="490" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.490 PRESCRIPT">#390 @
|
||||
#290 @
|
||||
F;
|
||||
ROUND 2
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="53" y="9.25" type="Valuta" align="right" width="5" id="499" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.499 PRESCRIPT">#399 @
|
||||
#299 @
|
||||
F;
|
||||
ROUND 2
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="70.75" y="0.25" type="Numero" align="right" width="10" id="510" pattern="1" hide_zero="1" text="#####@,@@@">
|
||||
@ -469,10 +477,71 @@
|
||||
<prescript description="F0.599 PRESCRIPT">#THIS @
|
||||
1000 F;
|
||||
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="0.25" type="Valuta" align="right" width="10" id="610" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.610 PRESCRIPT">#210 @
|
||||
#410 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="1.25" type="Valuta" align="right" width="10" id="620" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.620 PRESCRIPT">#220 @
|
||||
#420 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="2.25" type="Valuta" align="right" width="10" id="630" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.630 PRESCRIPT">#230 @
|
||||
#430 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="3.25" type="Valuta" align="right" width="10" id="640" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.640 PRESCRIPT">#240 @
|
||||
#440 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="4.25" type="Valuta" align="right" width="10" id="650" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.650 PRESCRIPT">#250 @
|
||||
#450 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="5.25" type="Valuta" align="right" width="10" id="660" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.660 PRESCRIPT">#260 @
|
||||
#460 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="6.25" type="Valuta" align="right" width="10" id="670" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.670 PRESCRIPT">#270 @
|
||||
#470 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="7.25" type="Valuta" align="right" width="10" id="680" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.680 PRESCRIPT">#280 @
|
||||
#480 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="8.25" type="Valuta" align="right" width="10" id="690" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.690 PRESCRIPT">#290 @
|
||||
#490 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="9.25" type="Valuta" align="right" width="10" id="699" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.699 PRESCRIPT">#299 @
|
||||
#499 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="29.25" y="10.25" type="Numero" align="right" width="10" id="1000" pattern="1" hide_zero="1" text="#####@,@@@">
|
||||
<font face="Courier New" bold="1" size="8" />
|
||||
<source>#110+#120+#130+#140+#150+#160+#170+#180+#190+#199</source>
|
||||
<prescript description="F0.1000 PRESCRIPT">#THIS @
|
||||
1000 F;
|
||||
|
||||
@ -480,30 +549,41 @@
|
||||
</field>
|
||||
<field x="39.75" y="10.25" type="Numero" align="right" width="10" id="2000" pattern="1" hide_zero="1" text="#####@,@@@">
|
||||
<font face="Courier New" bold="1" size="8" />
|
||||
<source>#210+#220+#230+#240+#250+#260+#270+#280+#290+#299</source>
|
||||
<prescript description="F0.2000 PRESCRIPT">#THIS @
|
||||
1000 F;
|
||||
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="10.25" type="Valuta" align="right" width="10" id="3000" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<field x="82.37" y="10.37" type="Valuta" hidden="1" align="right" width="10" id="3000" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<font face="Courier New" bold="1" size="8" />
|
||||
<source>#310+#320+#330+#340+#350+#360+#370+#380+#390+#399</source>
|
||||
</field>
|
||||
<field x="53" y="10.25" type="Valuta" align="right" width="5" id="4000" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<font face="Courier New" bold="1" size="8" />
|
||||
<prescript description="F0.4000 PRESCRIPT">#340 @
|
||||
#240 @
|
||||
<prescript description="F0.4000 PRESCRIPT">#3000 @
|
||||
#2000 @
|
||||
F;
|
||||
ROUND 2
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="70.75" y="10.25" type="Numero" align="right" width="10" id="5000" pattern="1" hide_zero="1" text="#####@,@@@">
|
||||
<font face="Courier New" bold="1" size="8" />
|
||||
<source>#510+#520+#530+#540+#550+#560+#570+#580+#590+#599</source>
|
||||
<prescript description="F0.5000 PRESCRIPT">#THIS @
|
||||
1000 F;
|
||||
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="25" y="12.25" type="Numero" align="right" width="55" id="6000" pattern="1" text="LETTERE">
|
||||
<prescript description="F0.6000 PRESCRIPT">#3000 @
|
||||
<field x="60.5" y="10.25" type="Valuta" align="right" width="10" id="6000" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<font face="Courier New" bold="1" size="8" />
|
||||
<prescript description="F0.6000 PRESCRIPT">#2000 @
|
||||
#4000 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="25" y="12.25" type="Numero" align="right" width="55" id="7000" pattern="1" text="LETTERE">
|
||||
<prescript description="F0.7000 PRESCRIPT">#6000 @
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
</section>
|
||||
|
118
tp/tp0900ca.rep
118
tp/tp0900ca.rep
@ -3,6 +3,7 @@
|
||||
<description>Dichiarazione CONAI carta 6.1</description>
|
||||
<font face="Courier New" size="10" />
|
||||
<section type="Head">
|
||||
<font face="Arial Narrow" size="10" />
|
||||
<field x="18.5" y="9.25" type="Array" hidden="1" width="1" pattern="1">
|
||||
<source>#PERIODO</source>
|
||||
<list>
|
||||
@ -16,6 +17,7 @@
|
||||
<source>IF(#PERIODO="1","X","")</source>
|
||||
</field>
|
||||
<field x="60.5" y="9.75" type="Numero" align="right" width="5" pattern="1">
|
||||
<font face="Arial" size="10" />
|
||||
<source>#ANNO</source>
|
||||
</field>
|
||||
<field x="19.5" y="10.25" type="Stringa" valign="center" align="center" width="1" pattern="1">
|
||||
@ -191,28 +193,24 @@
|
||||
<prescript description="B1.101 PRESCRIPT">#THIS @
|
||||
#20 @
|
||||
+!</prescript>
|
||||
<postscript description="B1.101 POSTSCRIPT">MESSAGE ADD,F0.1000</postscript>
|
||||
</field>
|
||||
<field x="30" type="Numero" hidden="1" align="right" width="10" id="102" pattern="1">
|
||||
<source>N</source>
|
||||
<prescript description="B1.102 PRESCRIPT">#THIS @
|
||||
#30 @
|
||||
+!</prescript>
|
||||
<postscript description="B1.102 POSTSCRIPT">MESSAGE ADD,F0.2000</postscript>
|
||||
</field>
|
||||
<field x="50" type="Valuta" hidden="1" align="right" width="10" id="103" pattern="1" text="#########,@@">
|
||||
<source>O</source>
|
||||
<prescript description="B1.103 PRESCRIPT">#THIS @
|
||||
#40 @
|
||||
+!</prescript>
|
||||
<postscript description="B1.103 POSTSCRIPT">MESSAGE ADD,F0.3000</postscript>
|
||||
</field>
|
||||
<field x="70" type="Numero" hidden="1" align="right" width="10" id="104" pattern="1" hide_zero="1">
|
||||
<source>P</source>
|
||||
<prescript description="B1.104 PRESCRIPT">#THIS @
|
||||
#50 @
|
||||
+!</prescript>
|
||||
<postscript description="B1.104 POSTSCRIPT">MESSAGE ADD,F0.5000</postscript>
|
||||
</field>
|
||||
</section>
|
||||
<section y="26" type="Foot">
|
||||
@ -341,74 +339,84 @@
|
||||
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="0.25" type="Valuta" align="right" width="10" id="310" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="60.5" y="1.25" type="Valuta" align="right" width="10" id="320" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="60.5" y="2.25" type="Valuta" align="right" width="10" id="330" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="60.5" y="3.25" type="Valuta" align="right" width="10" id="340" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="60.5" y="4.25" type="Valuta" align="right" width="10" id="350" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="60.5" y="5.25" type="Valuta" align="right" width="10" id="360" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="60.5" y="6.25" type="Valuta" align="right" width="10" id="370" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="60.5" y="7.25" type="Valuta" align="right" width="10" id="380" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="60.5" y="8.25" type="Valuta" align="right" width="10" id="390" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="60.5" y="9.25" type="Valuta" align="right" width="10" id="399" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="82.12" y="0.37" type="Valuta" hidden="1" align="right" width="10" id="310" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="82.12" y="1.37" type="Valuta" hidden="1" align="right" width="10" id="320" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="82.12" y="2.37" type="Valuta" hidden="1" align="right" width="10" id="330" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="82.12" y="3.37" type="Valuta" hidden="1" align="right" width="10" id="340" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="82.12" y="4.37" type="Valuta" hidden="1" align="right" width="10" id="350" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="82.12" y="5.37" type="Valuta" hidden="1" align="right" width="10" id="360" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="82.12" y="6.37" type="Valuta" hidden="1" align="right" width="10" id="370" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="82.12" y="7.37" type="Valuta" hidden="1" align="right" width="10" id="380" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="82.12" y="8.37" type="Valuta" hidden="1" align="right" width="10" id="390" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="82.12" y="9.37" type="Valuta" hidden="1" align="right" width="10" id="399" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="53" y="0.25" type="Valuta" align="right" width="5" id="410" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.410 PRESCRIPT">#310 @
|
||||
#210 @
|
||||
F;
|
||||
2 ROUND
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="53" y="1.25" type="Valuta" align="right" width="5" id="420" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.420 PRESCRIPT">#320 @
|
||||
#220 @
|
||||
F;
|
||||
2 ROUND
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="53" y="2.25" type="Valuta" align="right" width="5" id="430" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.430 PRESCRIPT">#330 @
|
||||
#230 @
|
||||
F;
|
||||
2 ROUND
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="53" y="3.25" type="Valuta" align="right" width="5" id="440" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.440 PRESCRIPT">#340 @
|
||||
#240 @
|
||||
F;
|
||||
2 ROUND
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="53" y="4.25" type="Valuta" align="right" width="5" id="450" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.450 PRESCRIPT">#350 @
|
||||
#250 @
|
||||
F;
|
||||
2 ROUND
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="53" y="5.25" type="Valuta" align="right" width="5" id="460" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.460 PRESCRIPT">#360 @
|
||||
#260 @
|
||||
F;
|
||||
2 ROUND
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="53" y="6.25" type="Valuta" align="right" width="5" id="470" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.470 PRESCRIPT">#370 @
|
||||
#270 @
|
||||
F;
|
||||
2 ROUND
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="53" y="7.25" type="Valuta" align="right" width="5" id="480" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.480 PRESCRIPT">#380 @
|
||||
#280 @
|
||||
F;
|
||||
2 ROUND
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="53" y="8.25" type="Valuta" align="right" width="5" id="490" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.490 PRESCRIPT">#390 @
|
||||
#290 @
|
||||
F;
|
||||
2 ROUND
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="53" y="9.25" type="Valuta" align="right" width="5" id="499" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.499 PRESCRIPT">#399 @
|
||||
#299 @
|
||||
F;
|
||||
2 ROUND
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="70.75" y="0.25" type="Numero" align="right" width="10" id="510" pattern="1" hide_zero="1" text="#####@,@@@">
|
||||
@ -469,10 +477,71 @@
|
||||
<prescript description="F0.599 PRESCRIPT">#THIS @
|
||||
1000 F;
|
||||
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="0.25" type="Valuta" align="right" width="10" id="610" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.610 PRESCRIPT">#210 @
|
||||
#410 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="1.25" type="Valuta" align="right" width="10" id="620" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.620 PRESCRIPT">#220 @
|
||||
#420 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="2.25" type="Valuta" align="right" width="10" id="630" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.630 PRESCRIPT">#230 @
|
||||
#430 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="3.25" type="Valuta" align="right" width="10" id="640" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.640 PRESCRIPT">#240 @
|
||||
#440 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="4.25" type="Valuta" align="right" width="10" id="650" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.650 PRESCRIPT">#250 @
|
||||
#450 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="5.25" type="Valuta" align="right" width="10" id="660" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.660 PRESCRIPT">#260 @
|
||||
#460 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="6.25" type="Valuta" align="right" width="10" id="670" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.670 PRESCRIPT">#270 @
|
||||
#470 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="7.25" type="Valuta" align="right" width="10" id="680" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.680 PRESCRIPT">#280 @
|
||||
#480 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="8.25" type="Valuta" align="right" width="10" id="690" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.690 PRESCRIPT">#290 @
|
||||
#490 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="9.25" type="Valuta" align="right" width="10" id="699" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.699 PRESCRIPT">#299 @
|
||||
#499 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="29.25" y="10.25" type="Numero" align="right" width="10" id="1000" pattern="1" hide_zero="1" text="#####@,@@@">
|
||||
<font face="Courier New" bold="1" size="8" />
|
||||
<source>#110+#120+#130+#140+#150+#160+#170+#180+#190+#199</source>
|
||||
<prescript description="F0.1000 PRESCRIPT">#THIS @
|
||||
1000 F;
|
||||
|
||||
@ -480,30 +549,41 @@
|
||||
</field>
|
||||
<field x="39.75" y="10.25" type="Numero" align="right" width="10" id="2000" pattern="1" hide_zero="1" text="#####@,@@@">
|
||||
<font face="Courier New" bold="1" size="8" />
|
||||
<source>#210+#220+#230+#240+#250+#260+#270+#280+#290+#299</source>
|
||||
<prescript description="F0.2000 PRESCRIPT">#THIS @
|
||||
1000 F;
|
||||
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="10.25" type="Valuta" align="right" width="10" id="3000" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<field x="82.12" y="10.37" type="Valuta" hidden="1" align="right" width="10" id="3000" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<font face="Courier New" bold="1" size="8" />
|
||||
<source>#310+#320+#330+#340+#350+#360+#370+#380+#390+#399</source>
|
||||
</field>
|
||||
<field x="53" y="10.25" type="Valuta" align="right" width="5" id="4000" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<font face="Courier New" bold="1" size="8" />
|
||||
<prescript description="F0.4000 PRESCRIPT">#340 @
|
||||
#240 @
|
||||
<prescript description="F0.4000 PRESCRIPT">#3000 @
|
||||
#2000 @
|
||||
F;
|
||||
2 ROUND
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="70.75" y="10.25" type="Numero" align="right" width="10" id="5000" pattern="1" hide_zero="1" text="#####@,@@@">
|
||||
<font face="Courier New" bold="1" size="8" />
|
||||
<source>#510+#520+#530+#540+#550+#560+#570+#580+#590+#599</source>
|
||||
<prescript description="F0.5000 PRESCRIPT">#THIS @
|
||||
1000 F;
|
||||
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="25" y="12.25" type="Numero" align="right" width="55" id="6000" pattern="1" text="LETTERE">
|
||||
<prescript description="F0.6000 PRESCRIPT">#3000 @
|
||||
<field x="60.5" y="10.25" type="Valuta" align="right" width="10" id="6000" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<font face="Courier New" bold="1" size="8" />
|
||||
<prescript description="F0.6000 PRESCRIPT">#2000 @
|
||||
#4000 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="25" y="12.25" type="Numero" align="right" width="55" id="7000" pattern="1" text="LETTERE">
|
||||
<prescript description="F0.7000 PRESCRIPT">#6000 @
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
</section>
|
||||
|
@ -3,6 +3,7 @@
|
||||
<description>Scheda Esenzione CONAI 6.3</description>
|
||||
<font face="Courier New" size="10" />
|
||||
<section type="Head" height="26">
|
||||
<font face="Arial Narrow" size="10" />
|
||||
<field x="18.5" y="12.3" type="Array" hidden="1" width="1" pattern="1">
|
||||
<source>#PERIODO</source>
|
||||
<list>
|
||||
@ -16,6 +17,7 @@
|
||||
<source>IF(#PERIODO="1","X","")</source>
|
||||
</field>
|
||||
<field x="60" y="12.75" type="Numero" align="right" width="5" pattern="1">
|
||||
<font face="Arial" size="10" />
|
||||
<source>#ANNO</source>
|
||||
</field>
|
||||
<field x="19.6" y="13.3" type="Stringa" valign="center" align="center" width="1" pattern="1">
|
||||
@ -238,10 +240,6 @@
|
||||
</field>
|
||||
<field x="50.5" type="Numero" align="right" width="10" id="103" pattern="1" hide_zero="1" text="##.###,@@@">
|
||||
<font face="Courier New" bold="1" size="10" />
|
||||
<prescript description="F1.103 PRESCRIPT">#THIS @
|
||||
3 ROUND
|
||||
#THIS !
|
||||
</prescript>
|
||||
</field>
|
||||
<field x="60.5" type="Numero" align="right" width="10" id="104" pattern="1" hide_zero="1" text="##.###,@@@">
|
||||
<font face="Courier New" bold="1" size="10" />
|
||||
@ -272,45 +270,21 @@ THEN
|
||||
<field border="1" x="11.5" y="1" type="Linea" width="80" height="0" pattern="1" />
|
||||
<field x="13" type="Stringa" width="16" id="40" pattern="1" />
|
||||
<field x="29.5" type="Numero" align="right" width="10" id="101" pattern="1" hide_zero="1" text="##.###,@@@">
|
||||
<prescript description="F2.101 PRESCRIPT">#THIS @
|
||||
3 ROUND
|
||||
#THIS !
|
||||
</prescript>
|
||||
<postscript description="F2.101 POSTSCRIPT">MESSAGE ADD,F1.101</postscript>
|
||||
</field>
|
||||
<field x="40" type="Numero" align="right" width="10" id="102" pattern="1" hide_zero="1" text="##.###,@@@">
|
||||
<prescript description="F2.102 PRESCRIPT">#THIS @
|
||||
3 ROUND
|
||||
#THIS !
|
||||
</prescript>
|
||||
<postscript description="F2.102 POSTSCRIPT">MESSAGE ADD,F1.102</postscript>
|
||||
</field>
|
||||
<field x="50.5" type="Numero" align="right" width="10" id="103" pattern="1" hide_zero="1" text="##.###,@@@">
|
||||
<prescript description="F2.103 PRESCRIPT">#THIS @
|
||||
3 ROUND
|
||||
#THIS !
|
||||
</prescript>
|
||||
<postscript description="F2.103 POSTSCRIPT">MESSAGE ADD,F1.103</postscript>
|
||||
</field>
|
||||
<field x="60.5" type="Numero" align="right" width="10" id="104" pattern="1" hide_zero="1" text="##.###,@@@">
|
||||
<prescript description="F2.104 PRESCRIPT">#THIS @
|
||||
3 ROUND
|
||||
#THIS !
|
||||
</prescript>
|
||||
<postscript description="F2.104 POSTSCRIPT">MESSAGE ADD,F1.104</postscript>
|
||||
</field>
|
||||
<field x="71" type="Numero" align="right" width="10" id="105" pattern="1" hide_zero="1" text="##.###,@@@">
|
||||
<prescript description="F2.105 PRESCRIPT">#THIS @
|
||||
3 ROUND
|
||||
#THIS !
|
||||
</prescript>
|
||||
<postscript description="F2.105 POSTSCRIPT">MESSAGE ADD,F1.105</postscript>
|
||||
</field>
|
||||
<field x="81.5" type="Numero" align="right" width="10" id="106" pattern="1" hide_zero="1" text="##.###,@@@">
|
||||
<prescript description="F2.106 PRESCRIPT">#THIS @
|
||||
3 ROUND
|
||||
#THIS !
|
||||
</prescript>
|
||||
<postscript description="F2.106 POSTSCRIPT">MESSAGE ADD,F1.106</postscript>
|
||||
</field>
|
||||
</section>
|
||||
|
100
tp/tp0900le.rep
100
tp/tp0900le.rep
@ -3,6 +3,7 @@
|
||||
<description>Dichiarazione CONAI legno 6.1</description>
|
||||
<font face="Courier New" size="10" />
|
||||
<section type="Head">
|
||||
<font face="Arial Narrow" size="10" />
|
||||
<field x="18.5" y="9.25" type="Array" hidden="1" width="1" pattern="1">
|
||||
<source>#PERIODO</source>
|
||||
<list>
|
||||
@ -16,6 +17,7 @@
|
||||
<source>IF(#PERIODO="1","X","")</source>
|
||||
</field>
|
||||
<field x="60.5" y="9.75" type="Numero" align="right" width="5" pattern="1">
|
||||
<font face="Arial" size="10" />
|
||||
<source>#ANNO</source>
|
||||
</field>
|
||||
<field x="19.5" y="10.25" type="Stringa" valign="center" align="center" width="1" pattern="1">
|
||||
@ -191,28 +193,24 @@
|
||||
<prescript description="B1.101 PRESCRIPT">#THIS @
|
||||
#20 @
|
||||
+!</prescript>
|
||||
<postscript description="B1.101 POSTSCRIPT">MESSAGE ADD,F0.1000</postscript>
|
||||
</field>
|
||||
<field x="30" type="Numero" hidden="1" align="right" width="10" id="102" pattern="1">
|
||||
<source>N</source>
|
||||
<prescript description="B1.102 PRESCRIPT">#THIS @
|
||||
#30 @
|
||||
+!</prescript>
|
||||
<postscript description="B1.102 POSTSCRIPT">MESSAGE ADD,F0.2000</postscript>
|
||||
</field>
|
||||
<field x="50" type="Valuta" hidden="1" align="right" width="10" id="103" pattern="1" text="#########,@@">
|
||||
<source>O</source>
|
||||
<prescript description="B1.103 PRESCRIPT">#THIS @
|
||||
#40 @
|
||||
+!</prescript>
|
||||
<postscript description="B1.103 POSTSCRIPT">MESSAGE ADD,F0.3000</postscript>
|
||||
</field>
|
||||
<field x="70" type="Numero" hidden="1" align="right" width="10" id="104" pattern="1" hide_zero="1">
|
||||
<source>P</source>
|
||||
<prescript description="B1.104 PRESCRIPT">#THIS @
|
||||
#50 @
|
||||
+!</prescript>
|
||||
<postscript description="B1.104 POSTSCRIPT">MESSAGE ADD,F0.5000</postscript>
|
||||
</field>
|
||||
</section>
|
||||
<section y="26" type="Foot">
|
||||
@ -317,60 +315,68 @@
|
||||
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="0.25" type="Valuta" align="right" width="10" id="310" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="60.5" y="1.25" type="Valuta" align="right" width="10" id="320" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="60.5" y="2.25" type="Valuta" align="right" width="10" id="330" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="60.5" y="3.25" type="Valuta" align="right" width="10" id="340" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="60.5" y="4.25" type="Valuta" align="right" width="10" id="350" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="60.5" y="5.25" type="Valuta" align="right" width="10" height="1.5" id="360" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="60.5" y="6.75" type="Valuta" align="right" width="10" height="1.75" id="370" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="60.5" y="8.5" type="Valuta" align="right" width="10" id="399" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="83.37" y="0.37" type="Valuta" hidden="1" align="right" width="10" id="310" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="83.37" y="1.37" type="Valuta" hidden="1" align="right" width="10" id="320" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="83.37" y="2.37" type="Valuta" hidden="1" align="right" width="10" id="330" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="83.37" y="3.37" type="Valuta" hidden="1" align="right" width="10" id="340" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="83.37" y="4.37" type="Valuta" hidden="1" align="right" width="10" id="350" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="83.37" y="5.37" type="Valuta" hidden="1" align="right" width="10" height="1.5" id="360" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="83.37" y="6.87" type="Valuta" hidden="1" align="right" width="10" height="1.75" id="370" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="83.37" y="8.62" type="Valuta" hidden="1" align="right" width="10" id="399" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="53" y="0.25" type="Valuta" align="right" width="5" id="410" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.410 PRESCRIPT">#310 @
|
||||
#210 @
|
||||
F;
|
||||
ROUND 2
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="53" y="1.25" type="Valuta" align="right" width="5" id="420" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.420 PRESCRIPT">#320 @
|
||||
#220 @
|
||||
F;
|
||||
ROUND 2
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="53" y="2.25" type="Valuta" align="right" width="5" id="430" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.430 PRESCRIPT">#330 @
|
||||
#230 @
|
||||
F;
|
||||
ROUND 2
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="53" y="3.25" type="Valuta" align="right" width="5" id="440" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.440 PRESCRIPT">#340 @
|
||||
#240 @
|
||||
F;
|
||||
ROUND 2
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="53" y="4.25" type="Valuta" align="right" width="5" id="450" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.450 PRESCRIPT">#350 @
|
||||
#250 @
|
||||
F;
|
||||
ROUND 2
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="53" y="5.25" type="Valuta" align="right" width="5" height="1.5" id="460" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.460 PRESCRIPT">#360 @
|
||||
#260 @
|
||||
F;
|
||||
ROUND 2
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="53" y="6.75" type="Valuta" align="right" width="5" height="1.75" id="470" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.470 PRESCRIPT">#370 @
|
||||
#270 @
|
||||
F;
|
||||
ROUND 2
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="53" y="8.5" type="Valuta" align="right" width="5" id="499" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.499 PRESCRIPT">#399 @
|
||||
#299 @
|
||||
F;
|
||||
ROUND 2
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="70.75" y="0.25" type="Numero" align="right" width="10" id="510" pattern="1" hide_zero="1" text="#####@,@@@">
|
||||
@ -419,10 +425,59 @@
|
||||
<prescript description="F0.599 PRESCRIPT">#THIS @
|
||||
1000 F;
|
||||
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="0.25" type="Valuta" align="right" width="10" id="610" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.610 PRESCRIPT">#210 @
|
||||
#410 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="1.25" type="Valuta" align="right" width="10" id="620" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.620 PRESCRIPT">#220 @
|
||||
#420 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="2.25" type="Valuta" align="right" width="10" id="630" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.630 PRESCRIPT">#230 @
|
||||
#430 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="3.25" type="Valuta" align="right" width="10" id="640" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.640 PRESCRIPT">#240 @
|
||||
#440 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="4.25" type="Valuta" align="right" width="10" id="650" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.650 PRESCRIPT">#250 @
|
||||
#450 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="5.25" type="Valuta" align="right" width="10" height="1.5" id="660" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.660 PRESCRIPT">#260 @
|
||||
#460 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="6.75" type="Valuta" align="right" width="10" height="1.75" id="670" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.670 PRESCRIPT">#270 @
|
||||
#470 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="8.5" type="Valuta" align="right" width="10" id="699" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.699 PRESCRIPT">#299 @
|
||||
#499 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="29.25" y="9.5" type="Numero" align="right" width="10" id="1000" pattern="1" hide_zero="1" text="#####@,@@@">
|
||||
<font face="Courier New" bold="1" size="8" />
|
||||
<source>#110+#120+#130+#140+#150+#160+#170+#199</source>
|
||||
<prescript description="F0.1000 PRESCRIPT">#THIS @
|
||||
1000 F;
|
||||
|
||||
@ -430,30 +485,41 @@
|
||||
</field>
|
||||
<field x="39.75" y="9.5" type="Numero" align="right" width="10" id="2000" pattern="1" hide_zero="1" text="#####@,@@@">
|
||||
<font face="Courier New" bold="1" size="8" />
|
||||
<source>#210+#220+#230+#240+#250+#260+#270+#299</source>
|
||||
<prescript description="F0.2000 PRESCRIPT">#THIS @
|
||||
1000 F;
|
||||
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="9.5" type="Valuta" align="right" width="10" id="3000" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<field x="83.37" y="9.62" type="Valuta" hidden="1" align="right" width="10" id="3000" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<font face="Courier New" bold="1" size="8" />
|
||||
<source>#310+#320+#330+#340+#350+#360+#370+#399</source>
|
||||
</field>
|
||||
<field x="53" y="9.5" type="Valuta" align="right" width="5" id="4000" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<font face="Courier New" bold="1" size="8" />
|
||||
<prescript description="F0.4000 PRESCRIPT">#340 @
|
||||
#240 @
|
||||
<prescript description="F0.4000 PRESCRIPT">#3000 @
|
||||
#2000 @
|
||||
F;
|
||||
ROUND 2
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="70.75" y="9.5" type="Numero" align="right" width="10" id="5000" pattern="1" hide_zero="1" text="#####@,@@@">
|
||||
<font face="Courier New" bold="1" size="8" />
|
||||
<source>#510+#520+#530+#540+#550+#560+#570+#599</source>
|
||||
<prescript description="F0.5000 PRESCRIPT">#THIS @
|
||||
1000 F;
|
||||
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="25" y="11.5" type="Numero" align="right" width="55" id="6000" pattern="1" text="LETTERE">
|
||||
<prescript description="F0.6000 PRESCRIPT">#3000 @
|
||||
<field x="60.5" y="9.5" type="Valuta" align="right" width="10" id="6000" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<font face="Courier New" bold="1" size="8" />
|
||||
<prescript description="F0.6000 PRESCRIPT">#2000 @
|
||||
#4000 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="25" y="11.5" type="Numero" align="right" width="55" id="7000" pattern="1" text="LETTERE">
|
||||
<prescript description="F0.7000 PRESCRIPT">#6000 @
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
</section>
|
||||
|
150
tp/tp0900pl.rep
150
tp/tp0900pl.rep
@ -3,6 +3,7 @@
|
||||
<description>Dichiarazione CONAI plastica 6.1</description>
|
||||
<font face="Courier New" size="10" />
|
||||
<section type="Head">
|
||||
<font face="Arial Narrow" size="10" />
|
||||
<field x="18.5" y="9.25" type="Array" hidden="1" width="1" pattern="1">
|
||||
<source>#PERIODO</source>
|
||||
<list>
|
||||
@ -16,6 +17,7 @@
|
||||
<source>IF(#PERIODO="1","X","")</source>
|
||||
</field>
|
||||
<field x="60.5" y="9.75" type="Numero" align="right" width="5" pattern="1">
|
||||
<font face="Arial" size="10" />
|
||||
<source>#ANNO</source>
|
||||
</field>
|
||||
<field x="19.75" y="10.5" type="Stringa" valign="center" align="center" width="1" pattern="1">
|
||||
@ -191,28 +193,24 @@
|
||||
<prescript description="B1.101 PRESCRIPT">#THIS @
|
||||
#20 @
|
||||
+!</prescript>
|
||||
<postscript description="B1.101 POSTSCRIPT">MESSAGE ADD,F0.1000</postscript>
|
||||
</field>
|
||||
<field x="30" type="Numero" hidden="1" align="right" width="10" id="102" pattern="1">
|
||||
<source>N</source>
|
||||
<prescript description="B1.102 PRESCRIPT">#THIS @
|
||||
#30 @
|
||||
+!</prescript>
|
||||
<postscript description="B1.102 POSTSCRIPT">MESSAGE ADD,F0.2000</postscript>
|
||||
</field>
|
||||
<field x="50" type="Valuta" hidden="1" align="right" width="10" id="103" pattern="1" text="#########,@@">
|
||||
<source>O</source>
|
||||
<prescript description="B1.103 PRESCRIPT">#THIS @
|
||||
#40 @
|
||||
+!</prescript>
|
||||
<postscript description="B1.103 POSTSCRIPT">MESSAGE ADD,F0.3000</postscript>
|
||||
</field>
|
||||
<field x="70" type="Numero" hidden="1" align="right" width="10" id="104" pattern="1" hide_zero="1">
|
||||
<source>P</source>
|
||||
<prescript description="B1.104 PRESCRIPT">#THIS @
|
||||
#50 @
|
||||
+!</prescript>
|
||||
<postscript description="B1.104 POSTSCRIPT">MESSAGE ADD,F0.5000</postscript>
|
||||
</field>
|
||||
</section>
|
||||
<section y="26" type="Foot">
|
||||
@ -389,102 +387,116 @@
|
||||
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="7.25" type="Valuta" align="right" width="10" id="310" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="60.5" y="1.25" type="Valuta" align="right" width="10" id="312" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="60.5" y="2.25" type="Valuta" align="right" width="10" id="313" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="60.5" y="3.25" type="Valuta" align="right" width="10" id="314" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="60.5" y="4.25" type="Valuta" align="right" width="10" id="315" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="60.5" y="6.25" type="Valuta" align="right" width="10" id="316" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="60.5" y="9.75" type="Valuta" align="right" width="10" id="317" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="60.5" y="0.25" type="Valuta" align="right" width="10" id="320" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="60.5" y="11.75" type="Valuta" valign="center" align="right" width="10" height="1.75" id="322" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="60.5" y="13.5" type="Valuta" align="right" width="10" id="323" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="60.5" y="5.25" type="Valuta" align="right" width="10" id="330" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="60.5" y="10.75" type="Valuta" align="right" width="10" id="340" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="60.5" y="8.25" type="Valuta" valign="center" align="right" width="10" height="1.5" id="350" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="60.5" y="14.5" type="Valuta" align="right" width="10" id="399" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="83.37" y="7.31" type="Valuta" hidden="1" align="right" width="10" id="310" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="83.37" y="1.31" type="Valuta" hidden="1" align="right" width="10" id="312" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="83.37" y="2.31" type="Valuta" hidden="1" align="right" width="10" id="313" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="83.37" y="3.31" type="Valuta" hidden="1" align="right" width="10" id="314" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="83.37" y="4.31" type="Valuta" hidden="1" align="right" width="10" id="315" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="83.37" y="6.31" type="Valuta" hidden="1" align="right" width="10" id="316" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="83.37" y="9.81" type="Valuta" hidden="1" align="right" width="10" id="317" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="83.37" y="0.31" type="Valuta" hidden="1" align="right" width="10" id="320" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="83.37" y="11.81" type="Valuta" valign="center" hidden="1" align="right" width="10" height="1.75" id="322" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="83.37" y="13.56" type="Valuta" hidden="1" align="right" width="10" id="323" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="83.37" y="5.31" type="Valuta" hidden="1" align="right" width="10" id="330" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="83.37" y="10.81" type="Valuta" hidden="1" align="right" width="10" id="340" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="83.37" y="8.31" type="Valuta" valign="center" hidden="1" align="right" width="10" height="1.5" id="350" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="83.37" y="14.56" type="Valuta" hidden="1" align="right" width="10" id="399" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="53" y="7.25" type="Valuta" align="right" width="5" id="410" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.410 PRESCRIPT">#310 @
|
||||
#210 @
|
||||
F;
|
||||
ROUND 2
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="53" y="1.25" type="Valuta" align="right" width="5" id="412" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.412 PRESCRIPT">#312 @
|
||||
#212 @
|
||||
F;
|
||||
ROUND 2
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="53" y="2.25" type="Valuta" align="right" width="5" id="413" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.413 PRESCRIPT">#313 @
|
||||
#213 @
|
||||
F;
|
||||
ROUND 2
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="53" y="3.25" type="Valuta" align="right" width="5" id="414" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.414 PRESCRIPT">#314 @
|
||||
#214 @
|
||||
F;
|
||||
ROUND 2
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="53" y="4.25" type="Valuta" align="right" width="5" id="415" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.415 PRESCRIPT">#315 @
|
||||
#215 @
|
||||
F;
|
||||
ROUND 2
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="53" y="6.25" type="Valuta" align="right" width="5" id="416" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.416 PRESCRIPT">#316 @
|
||||
#216 @
|
||||
F;
|
||||
ROUND 2
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="53" y="9.75" type="Valuta" align="right" width="5" id="417" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.417 PRESCRIPT">#317 @
|
||||
#217 @
|
||||
F;
|
||||
ROUND 2
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="53" y="0.25" type="Valuta" align="right" width="5" id="420" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.420 PRESCRIPT">#320 @
|
||||
#220 @
|
||||
F;
|
||||
ROUND 2
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="53" y="11.75" type="Valuta" valign="center" align="right" width="5" height="1.75" id="422" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.422 PRESCRIPT">#322 @
|
||||
#222 @
|
||||
F;
|
||||
ROUND 2
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="53" y="13.5" type="Valuta" align="right" width="5" id="423" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.423 PRESCRIPT">#323 @
|
||||
#223 @
|
||||
F;
|
||||
ROUND 2
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="53" y="5.25" type="Valuta" align="right" width="5" id="430" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.430 PRESCRIPT">#330 @
|
||||
#230 @
|
||||
F;
|
||||
ROUND 2
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="53" y="10.75" type="Valuta" align="right" width="5" id="440" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.440 PRESCRIPT">#340 @
|
||||
#240 @
|
||||
F;
|
||||
ROUND 2
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="53" y="8.25" type="Valuta" valign="center" align="right" width="5" height="1.5" id="450" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.450 PRESCRIPT">#350 @
|
||||
#250 @
|
||||
F;
|
||||
ROUND 2
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="53" y="14.5" type="Valuta" align="right" width="5" id="499" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.499 PRESCRIPT">#399 @
|
||||
#299 @
|
||||
F;
|
||||
ROUND 2
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="70.75" y="7.25" type="Numero" align="right" width="10" id="510" pattern="1" hide_zero="1" text="#####@,@@@">
|
||||
@ -569,10 +581,95 @@
|
||||
<prescript description="F0.599 PRESCRIPT">#THIS @
|
||||
1000 F;
|
||||
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="7.25" type="Valuta" align="right" width="10" id="610" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.610 PRESCRIPT">#210 @
|
||||
#410 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="1.25" type="Valuta" align="right" width="10" id="612" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.612 PRESCRIPT">#212 @
|
||||
#412 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="2.25" type="Valuta" align="right" width="10" id="613" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.613 PRESCRIPT">#213 @
|
||||
#413 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="3.25" type="Valuta" align="right" width="10" id="614" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.614 PRESCRIPT">#214 @
|
||||
#414 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="4.25" type="Valuta" align="right" width="10" id="615" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.615 PRESCRIPT">#215 @
|
||||
#415 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="6.25" type="Valuta" align="right" width="10" id="616" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.616 PRESCRIPT">#216 @
|
||||
#416 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="9.75" type="Valuta" align="right" width="10" id="617" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.617 PRESCRIPT">#217 @
|
||||
#417 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="0.25" type="Valuta" align="right" width="10" id="620" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.620 PRESCRIPT">#220 @
|
||||
#420 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="11.75" type="Valuta" valign="center" align="right" width="10" height="1.75" id="622" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.622 PRESCRIPT">#222 @
|
||||
#422 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="13.5" type="Valuta" align="right" width="10" id="623" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.623 PRESCRIPT">#223 @
|
||||
#423 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="5.25" type="Valuta" align="right" width="10" id="630" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.630 PRESCRIPT">#230 @
|
||||
#430 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="10.75" type="Valuta" align="right" width="10" id="640" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.640 PRESCRIPT">#240 @
|
||||
#440 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="8.25" type="Valuta" valign="center" align="right" width="10" height="1.5" id="650" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.650 PRESCRIPT">#250 @
|
||||
#450 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="14.5" type="Valuta" align="right" width="10" id="699" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.699 PRESCRIPT">#299 @
|
||||
#499 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="29.25" y="15.5" type="Numero" align="right" width="10" id="1000" pattern="1" hide_zero="1" text="#####@,@@@">
|
||||
<font face="Courier New" bold="1" size="8" />
|
||||
<source>#120+#112+#113+#114+#115+#130+#116+#110+#150+#117+#140+#122+#123+#199</source>
|
||||
<prescript description="F0.1000 PRESCRIPT">#THIS @
|
||||
1000 F;
|
||||
|
||||
@ -580,30 +677,41 @@
|
||||
</field>
|
||||
<field x="39.75" y="15.5" type="Numero" align="right" width="10" id="2000" pattern="1" hide_zero="1" text="#####@,@@@">
|
||||
<font face="Courier New" bold="1" size="8" />
|
||||
<source>#220+#212+#213+#214+#215+#230+#216+#210+#250+#217+#240+#222+#223+#299</source>
|
||||
<prescript description="F0.2000 PRESCRIPT">#THIS @
|
||||
1000 F;
|
||||
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="15.5" type="Valuta" align="right" width="10" id="3000" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<field x="83.37" y="15.56" type="Valuta" hidden="1" align="right" width="10" id="3000" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<font face="Courier New" bold="1" size="8" />
|
||||
<source>#320+#312+#313+#314+#315+#330+#316+#310+#350+#317+#340+#322+#323+#399</source>
|
||||
</field>
|
||||
<field x="53" y="15.5" type="Valuta" align="right" width="5" id="4000" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<font face="Courier New" bold="1" size="8" />
|
||||
<prescript description="F0.4000 PRESCRIPT">#3000 @
|
||||
#2000 @
|
||||
F;
|
||||
ROUND 2
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="70.75" y="15.5" type="Numero" align="right" width="10" id="5000" pattern="1" hide_zero="1" text="#####@,@@@">
|
||||
<font face="Courier New" bold="1" size="8" />
|
||||
<source>#520+#512+#513+#514+#515+#530+#516+#510+#550+#517+#540+#522+#523+#599</source>
|
||||
<prescript description="F0.5000 PRESCRIPT">#THIS @
|
||||
1000 F;
|
||||
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="25" y="17.5" type="Numero" align="right" width="55" id="6000" pattern="1" text="LETTERE">
|
||||
<prescript description="F0.6000 PRESCRIPT">#3000 @
|
||||
<field x="60.5" y="15.5" type="Valuta" align="right" width="10" id="6000" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<font face="Courier New" bold="1" size="8" />
|
||||
<prescript description="F0.6000 PRESCRIPT">#2000 @
|
||||
#4000 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="25" y="17.5" type="Numero" align="right" width="55" id="7000" pattern="1" text="LETTERE">
|
||||
<prescript description="F0.7000 PRESCRIPT">#6000 @
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
</section>
|
||||
|
@ -3,6 +3,7 @@
|
||||
<description>Allegato Mod. 6.1</description>
|
||||
<font face="Courier New" size="10" />
|
||||
<section type="Head" height="28">
|
||||
<font face="Arial Narrow" size="10" />
|
||||
<field x="51" y="0.25" type="Testo" valign="center" fg_color="#005A94" width="2" height="1.5" pattern="1" text="F;">
|
||||
<font face="Arial Narrow" size="18" />
|
||||
</field>
|
||||
@ -31,6 +32,7 @@
|
||||
<source>IF(#PERIODO="1","X","")</source>
|
||||
</field>
|
||||
<field x="60" y="14.5" type="Numero" align="right" width="5" pattern="1">
|
||||
<font face="Arial" size="10" />
|
||||
<source>#ANNO</source>
|
||||
</field>
|
||||
<field x="19.6" y="15.3" type="Stringa" valign="center" align="center" width="1" pattern="1">
|
||||
@ -150,7 +152,7 @@
|
||||
<field x="54.25" y="23.75" type="Stringa" width="16" pattern="1">
|
||||
<source>#TEL</source>
|
||||
</field>
|
||||
<field x="76" y="23.75" type="Stringa" width="18" pattern="1">
|
||||
<field x="76" y="23.75" type="Stringa" width="20" pattern="1">
|
||||
<font face="Arial Narrow" size="8" />
|
||||
<source>#EMAIL</source>
|
||||
</field>
|
||||
|
@ -3,6 +3,7 @@
|
||||
<description>Dichiarazione CONAI vetro 6.1</description>
|
||||
<font face="Courier New" size="10" />
|
||||
<section type="Head">
|
||||
<font face="Arial Narrow" size="10" />
|
||||
<field x="18.5" y="9.25" type="Array" hidden="1" width="1" pattern="1">
|
||||
<source>#PERIODO</source>
|
||||
<list>
|
||||
@ -16,6 +17,7 @@
|
||||
<source>IF(#PERIODO="1","X","")</source>
|
||||
</field>
|
||||
<field x="60.5" y="9.75" type="Numero" align="right" width="5" pattern="1">
|
||||
<font face="Arial" size="10" />
|
||||
<source>#ANNO</source>
|
||||
</field>
|
||||
<field x="19.5" y="10.25" type="Stringa" valign="center" align="center" width="1" pattern="1">
|
||||
@ -191,28 +193,24 @@
|
||||
<prescript description="B1.101 PRESCRIPT">#THIS @
|
||||
#20 @
|
||||
+!</prescript>
|
||||
<postscript description="B1.101 POSTSCRIPT">MESSAGE ADD,F0.1000</postscript>
|
||||
</field>
|
||||
<field x="30" type="Numero" hidden="1" align="right" width="10" id="102" pattern="1">
|
||||
<source>N</source>
|
||||
<prescript description="B1.102 PRESCRIPT">#THIS @
|
||||
#30 @
|
||||
+!</prescript>
|
||||
<postscript description="B1.102 POSTSCRIPT">MESSAGE ADD,F0.2000</postscript>
|
||||
</field>
|
||||
<field x="50" type="Valuta" hidden="1" align="right" width="10" id="103" pattern="1" text="#########,@@">
|
||||
<source>O</source>
|
||||
<prescript description="B1.103 PRESCRIPT">#THIS @
|
||||
#40 @
|
||||
+!</prescript>
|
||||
<postscript description="B1.103 POSTSCRIPT">MESSAGE ADD,F0.3000</postscript>
|
||||
</field>
|
||||
<field x="70" type="Numero" hidden="1" align="right" width="10" id="104" pattern="1" hide_zero="1">
|
||||
<source>P</source>
|
||||
<prescript description="B1.104 PRESCRIPT">#THIS @
|
||||
#50 @
|
||||
+!</prescript>
|
||||
<postscript description="B1.104 POSTSCRIPT">MESSAGE ADD,F0.5000</postscript>
|
||||
</field>
|
||||
</section>
|
||||
<section y="26" type="Foot">
|
||||
@ -305,53 +303,60 @@
|
||||
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="0.25" type="Valuta" align="right" width="10" id="310" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="60.5" y="1.25" type="Valuta" align="right" width="10" id="320" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="60.5" y="2.25" type="Valuta" align="right" width="10" id="330" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="60.5" y="3.25" type="Valuta" align="right" width="10" id="340" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="60.5" y="4.25" type="Valuta" align="right" width="10" id="350" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="60.5" y="5.25" type="Valuta" align="right" width="10" id="360" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="60.5" y="6.25" type="Valuta" align="right" width="10" id="399" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="83.12" y="0.43" type="Valuta" hidden="1" align="right" width="10" id="310" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="83.12" y="1.43" type="Valuta" hidden="1" align="right" width="10" id="320" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="83.12" y="2.43" type="Valuta" hidden="1" align="right" width="10" id="330" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="83.12" y="3.43" type="Valuta" hidden="1" align="right" width="10" id="340" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="83.12" y="4.43" type="Valuta" hidden="1" align="right" width="10" id="350" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="83.12" y="5.43" type="Valuta" hidden="1" align="right" width="10" id="360" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="83.12" y="6.43" type="Valuta" hidden="1" align="right" width="10" id="399" pattern="1" hide_zero="1" text="#########,@@" />
|
||||
<field x="53" y="0.25" type="Valuta" align="right" width="5" id="410" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.410 PRESCRIPT">#310 @
|
||||
#210 @
|
||||
F;
|
||||
ROUND 2
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="53" y="1.25" type="Valuta" align="right" width="5" id="420" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.420 PRESCRIPT">#320 @
|
||||
#220 @
|
||||
F;
|
||||
ROUND 2
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="53" y="2.25" type="Valuta" align="right" width="5" id="430" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.430 PRESCRIPT">#330 @
|
||||
#230 @
|
||||
F;
|
||||
ROUND 2
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="53" y="3.25" type="Valuta" align="right" width="5" id="440" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.440 PRESCRIPT">#340 @
|
||||
#240 @
|
||||
F;
|
||||
ROUND 2
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="53" y="4.25" type="Valuta" align="right" width="5" id="450" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.450 PRESCRIPT">#350 @
|
||||
#250 @
|
||||
F;
|
||||
ROUND 2
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="53" y="5.25" type="Valuta" align="right" width="5" id="460" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.460 PRESCRIPT">#360 @
|
||||
#260 @
|
||||
F;
|
||||
ROUND 2
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="53" y="6.25" type="Valuta" align="right" width="5" id="499" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.499 PRESCRIPT">#399 @
|
||||
#299 @
|
||||
F;
|
||||
ROUND 2
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="70.75" y="0.25" type="Numero" align="right" width="10" id="510" pattern="1" hide_zero="1" text="#####@,@@@">
|
||||
@ -394,10 +399,53 @@
|
||||
<prescript description="F0.599 PRESCRIPT">#THIS @
|
||||
1000 F;
|
||||
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="0.25" type="Valuta" align="right" width="10" id="610" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.610 PRESCRIPT">#210 @
|
||||
#410 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="1.25" type="Valuta" align="right" width="10" id="620" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.620 PRESCRIPT">#220 @
|
||||
#420 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="2.25" type="Valuta" align="right" width="10" id="630" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.630 PRESCRIPT">#230 @
|
||||
#430 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="3.25" type="Valuta" align="right" width="10" id="640" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.640 PRESCRIPT">#240 @
|
||||
#440 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="4.25" type="Valuta" align="right" width="10" id="650" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.650 PRESCRIPT">#250 @
|
||||
#450 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="5.25" type="Valuta" align="right" width="10" id="660" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.660 PRESCRIPT">#260 @
|
||||
#460 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="6.25" type="Valuta" align="right" width="10" id="699" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<prescript description="F0.699 PRESCRIPT">#299 @
|
||||
#499 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="29.25" y="7.25" type="Numero" align="right" width="10" id="1000" pattern="1">
|
||||
<font face="Courier New" bold="1" size="8" />
|
||||
<source>#110+#120+#130+#140+#150+#160+#199</source>
|
||||
<prescript description="F0.1000 PRESCRIPT">#THIS @
|
||||
1000 F;
|
||||
|
||||
@ -405,30 +453,41 @@
|
||||
</field>
|
||||
<field x="39.75" y="7.25" type="Numero" align="right" width="10" id="2000" pattern="1" hide_zero="1" text="#####@,@@@">
|
||||
<font face="Courier New" bold="1" size="8" />
|
||||
<source>#210+#220+#230+#240+#250+#260+#299</source>
|
||||
<prescript description="F0.2000 PRESCRIPT">#THIS @
|
||||
1000 F;
|
||||
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="60.5" y="7.25" type="Valuta" align="right" width="10" id="3000" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<field x="83.12" y="7.43" type="Valuta" hidden="1" align="right" width="10" id="3000" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<font face="Courier New" bold="1" size="8" />
|
||||
<source>#310+#320+#330+#340+#350+#360+#399</source>
|
||||
</field>
|
||||
<field x="53" y="7.25" type="Valuta" align="right" width="5" id="4000" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<font face="Courier New" bold="1" size="8" />
|
||||
<prescript description="F0.4000 PRESCRIPT">#340 @
|
||||
#240 @
|
||||
<prescript description="F0.4000 PRESCRIPT">#3000 @
|
||||
#2000 @
|
||||
F;
|
||||
ROUND 2
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="70.75" y="7.25" type="Numero" align="right" width="10" id="5000" pattern="1" hide_zero="1" text="#####@,@@@">
|
||||
<font face="Courier New" bold="1" size="8" />
|
||||
<source>#510+#520+#530+#540+#550+#560+#599</source>
|
||||
<prescript description="F0.5000 PRESCRIPT">#THIS @
|
||||
1000 F;
|
||||
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="25" y="9.25" type="Numero" align="right" width="55" id="6000" pattern="1" text="LETTERE">
|
||||
<prescript description="F0.6000 PRESCRIPT">#3000 @
|
||||
<field x="60.5" y="7.25" type="Valuta" align="right" width="10" id="6000" pattern="1" hide_zero="1" text="#########,@@">
|
||||
<font face="Courier New" bold="1" size="8" />
|
||||
<prescript description="F0.6000 PRESCRIPT">#2000 @
|
||||
#4000 @
|
||||
*
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
<field x="25" y="9.25" type="Numero" align="right" width="55" id="7000" pattern="1" text="LETTERE">
|
||||
<prescript description="F0.7000 PRESCRIPT">#6000 @
|
||||
#THIS !</prescript>
|
||||
</field>
|
||||
</section>
|
||||
|
Loading…
x
Reference in New Issue
Block a user