Patch level : 12.0 370

Files correlati     : tc3.exe tcmenu.men tc3100a.uml tc3800a.uml tctbrca.uml
                      tctbrco.uml tctbriv.uml tctbrpg.uml tctbrre.uml tctbrvl.uml

POrgramma di ricezione da Ericsoft versione 0


git-svn-id: svn://10.65.10.50/branches/R_10_00@23696 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
bonazzi 2017-03-21 15:45:23 +00:00
parent 463b3a5010
commit e2e23b10de
3 changed files with 51 additions and 27 deletions

View File

@ -1,28 +1,28 @@
<report name="bagn010a" lpi="6">
<description>Log di elaborazione</description>
<font face="Courier New" size="10" />
<section type="Head" />
<section type="Head" level="1">
<field type="Stringa" valign="center" align="center" width="80" height="3" pattern="1">
<font face="Arial" bold="1" size="24" />
<source>#TITLE</source>
</field>
</section>
<section type="Body" />
<section type="Body" level="1">
<field type="Array" width="10" pattern="1">
<source>A</source>
<list>
<li Value=" " Code="0" />
<li Value="-" Code="1" />
<li Value="!" Code="2" />
</list>
</field>
<field x="4" type="Stringa" dynamic_height="1" width="80" height="4" pattern="1">
<source>B</source>
</field>
</section>
<section type="Foot" />
<section type="Foot" level="1" />
<?xml version="1.0" encoding="UTF-8" ?>
<report name="bagn010a" lpi="6">
<description>Log di elaborazione</description>
<font face="Courier New" size="10" />
<section type="Head" pattern="1" />
<section type="Head" level="1" pattern="1">
<field type="Stringa" valign="center" align="center" width="80" height="3" pattern="1">
<font face="Arial" bold="1" size="24" />
<source>#TITLE</source>
</field>
</section>
<section type="Body" pattern="1" />
<section type="Body" level="1" pattern="1">
<field type="Array" width="10" pattern="1">
<source>A</source>
<list>
<li Value=" " Code="0" />
<li Value="-" Code="1" />
<li Value="!" Code="2" />
</list>
</field>
<field x="4" type="Stringa" dynamic_height="1" width="80" height="4" pattern="1">
<source>B</source>
</field>
</section>
<section type="Foot" pattern="1" />
<section type="Foot" level="1" pattern="1" />
</report>

View File

@ -53,6 +53,7 @@
#define MOV_NOLEGGIO "NOLEGGIO"
#define MOV_INVIOFE "INVIOFE"
#define MOV_CONTSEP "CONTSEP"
#define MOV_TNUMREG "TNUMREG"
#define NUMREG_PROVVISORIO 999999L

View File

@ -429,6 +429,29 @@ public:
};
class TString40 : public TFixed_string
{
char _str40[48];
protected:
virtual TObject* dup() const { return new TString40(_str40); }
public:
TString40(const char* s = "") : TFixed_string(_str40, 21)
{ set(s); }
TString40(const TString& s) : TFixed_string(_str40, 21)
{ set(s); }
TString40(const TString20& s) : TFixed_string(_str40, 21)
{ set(s); }
const TString& operator =(const char* s)
{ return set(s); }
const TString& operator =(const TString& s)
{ return set((const char*)s); }
const TString& operator =(const TString20& s)
{ return set((const char*)s); }
};
// @doc EXTERNAL
// @class TString80 | Definisce le stringhe di 80 caratteri