1997-03-20 10:33:28 +00:00
|
|
|
|
#include <form.h>
|
|
|
|
|
#include <mask.h>
|
|
|
|
|
#include <printapp.h>
|
|
|
|
|
|
|
|
|
|
#include "soggetti.h"
|
|
|
|
|
#include "sezioni.h"
|
2005-08-02 11:36:08 +00:00
|
|
|
|
#include <comuni.h>
|
|
|
|
|
|
1997-03-20 10:33:28 +00:00
|
|
|
|
#include "at2.h"
|
|
|
|
|
#include "at2600a.h"
|
1999-01-26 14:06:50 +00:00
|
|
|
|
#include "atlib.h"
|
1997-03-20 10:33:28 +00:00
|
|
|
|
|
2005-08-02 11:36:08 +00:00
|
|
|
|
#define ALIAS_LCPDOM 100 // localita' postale di domicilio
|
|
|
|
|
#define ALIAS_COMDOM 501 // comune di domicilio
|
1998-05-15 14:31:23 +00:00
|
|
|
|
#define ALIAS_CTD 700 // categoria donatori
|
2009-12-30 15:45:28 +00:00
|
|
|
|
#define ALIAS_GAZ 300 // gruppi aziendale
|
1997-03-20 10:33:28 +00:00
|
|
|
|
|
|
|
|
|
#define ISCRITTI 'I'
|
2005-08-02 11:36:08 +00:00
|
|
|
|
enum ts { undefined = 0, elenco = 1, etichette = 2, stampasufile = 3, completo = 4 };
|
1997-03-20 10:33:28 +00:00
|
|
|
|
|
|
|
|
|
// definizione form per etichette
|
|
|
|
|
class TEti_iscritti_form : public TForm
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
|
|
virtual TCursor* cursor() const;
|
|
|
|
|
virtual TRelation* relation() const;
|
|
|
|
|
TPrint_section& get_body() { return section('B'); } ;
|
|
|
|
|
TEti_iscritti_form(): TForm() {};
|
|
|
|
|
TEti_iscritti_form(const char* form, const char * code = "", int editlevel = 0, const char* desc = "")
|
|
|
|
|
: TForm(form,code,editlevel,desc) {};
|
|
|
|
|
virtual ~TEti_iscritti_form() {};
|
|
|
|
|
};
|
|
|
|
|
|
1997-08-01 14:49:53 +00:00
|
|
|
|
class TStampaIscritti : public TPrintapp
|
1997-03-20 10:33:28 +00:00
|
|
|
|
{
|
|
|
|
|
TRelation* _rel;
|
|
|
|
|
TMask* _msk;
|
|
|
|
|
TEti_iscritti_form* _form_eti;
|
2004-01-07 10:10:41 +00:00
|
|
|
|
TExternisamfile* _fileiscr;
|
1997-03-20 10:33:28 +00:00
|
|
|
|
TAssoc_array _categorie;
|
2005-08-02 11:36:08 +00:00
|
|
|
|
TParagraph_string _cognome_nome, _dencom;
|
1997-03-20 10:33:28 +00:00
|
|
|
|
TDate _data_stampa;
|
1997-12-05 16:26:15 +00:00
|
|
|
|
ts _tipostampa;
|
2000-10-10 08:08:04 +00:00
|
|
|
|
int _contatore, _totale;
|
1997-03-20 10:33:28 +00:00
|
|
|
|
TString16 _codsez, _codsot;
|
2009-12-30 15:45:28 +00:00
|
|
|
|
TString16 _gruppoazie, _gruppoold;
|
|
|
|
|
bool _pergruppo;
|
1997-03-20 10:33:28 +00:00
|
|
|
|
char _tipo_iscdim; // iscritti o dimessi
|
|
|
|
|
TDate _dataini, _datafin;
|
1997-12-05 16:26:15 +00:00
|
|
|
|
int _etlarghezza, _etcolonne;
|
2001-01-05 09:59:47 +00:00
|
|
|
|
bool _attuale;
|
2001-10-22 09:07:33 +00:00
|
|
|
|
int _numdon;
|
1997-03-20 10:33:28 +00:00
|
|
|
|
|
|
|
|
|
static bool filter_func_iscritti(const TRelation* rel);
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
virtual bool user_create();
|
|
|
|
|
virtual bool user_destroy();
|
|
|
|
|
virtual bool set_print(int m);
|
|
|
|
|
virtual void set_page(int file, int cnt);
|
|
|
|
|
virtual bool preprocess_page(int file, int counter);
|
1998-02-11 14:43:51 +00:00
|
|
|
|
virtual print_action postprocess_print(int file, int counter);
|
1997-03-20 10:33:28 +00:00
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
void crea_intestazione();
|
|
|
|
|
void filtra_sezioni();
|
|
|
|
|
void header_sezione(const TString16 codsez, const TString16 codsot);
|
1998-02-11 14:43:51 +00:00
|
|
|
|
void footer_sezione();
|
2009-12-30 15:45:28 +00:00
|
|
|
|
void header_gruppo(const TString16 gruppo);
|
|
|
|
|
void footer_gruppo();
|
2000-10-10 08:08:04 +00:00
|
|
|
|
void fine_stampa();
|
1997-03-20 10:33:28 +00:00
|
|
|
|
TMask& app_mask() { return *_msk; }
|
2005-08-02 11:36:08 +00:00
|
|
|
|
TStampaIscritti() : _data_stampa(TODAY), _cognome_nome("",25), _dencom("",30) {}
|
1997-03-20 10:33:28 +00:00
|
|
|
|
};
|
|
|
|
|
|
1997-08-01 14:49:53 +00:00
|
|
|
|
HIDDEN inline TStampaIscritti& app() { return (TStampaIscritti&) main_app(); }
|
1997-03-20 10:33:28 +00:00
|
|
|
|
|
|
|
|
|
TCursor* TEti_iscritti_form::cursor() const { return app().current_cursor(); }
|
|
|
|
|
|
|
|
|
|
TRelation* TEti_iscritti_form::relation() const { return cursor()->relation(); }
|
|
|
|
|
|
1997-08-01 14:49:53 +00:00
|
|
|
|
void TStampaIscritti::filtra_sezioni()
|
1997-03-20 10:33:28 +00:00
|
|
|
|
{
|
|
|
|
|
const TString16 sezini = _msk->get(F_SEZINI);
|
|
|
|
|
const TString16 sotini = _msk->get(F_SOTINI);
|
|
|
|
|
const TString16 sezfin = _msk->get(F_SEZFIN);
|
|
|
|
|
const TString16 sotfin = _msk->get(F_SOTFIN);
|
|
|
|
|
TRectype da(LF_SOGGETTI);
|
|
|
|
|
TRectype a(LF_SOGGETTI);
|
|
|
|
|
if (sezini.not_empty())
|
|
|
|
|
da.put(SOG_CODSEZ, sezini);
|
|
|
|
|
if (sotini.not_empty())
|
|
|
|
|
da.put(SOG_CODSOT, sotini);
|
|
|
|
|
if (sezfin.not_empty())
|
|
|
|
|
a.put(SOG_CODSEZ, sezfin);
|
|
|
|
|
if (sotfin.not_empty())
|
|
|
|
|
a.put(SOG_CODSOT, sotfin);
|
|
|
|
|
current_cursor()->setregion(da, a);
|
|
|
|
|
}
|
|
|
|
|
|
1997-08-01 14:49:53 +00:00
|
|
|
|
void TStampaIscritti::set_page(int file, int cnt)
|
1997-03-20 10:33:28 +00:00
|
|
|
|
{
|
|
|
|
|
// costruzione etichette
|
1997-12-05 16:26:15 +00:00
|
|
|
|
switch (_tipostampa)
|
1997-03-20 10:33:28 +00:00
|
|
|
|
{
|
|
|
|
|
case etichette:
|
1997-12-05 16:26:15 +00:00
|
|
|
|
{
|
1997-03-20 10:33:28 +00:00
|
|
|
|
TPrint_section& corpo = _form_eti->get_body();
|
1997-12-05 16:26:15 +00:00
|
|
|
|
for (int r=1;r<=_etcolonne;r++)
|
|
|
|
|
{
|
|
|
|
|
if (current_cursor()->pos()<current_cursor()->items())
|
|
|
|
|
{
|
|
|
|
|
force_setpage(TRUE);
|
|
|
|
|
corpo.update();
|
|
|
|
|
for (word i = 0; i < corpo.height(); i++)
|
|
|
|
|
{
|
|
|
|
|
TPrintrow& riga = corpo.row(i);
|
|
|
|
|
TString256 riga1 = riga.row();
|
|
|
|
|
riga1.cut(_etlarghezza);
|
|
|
|
|
int colonna = ((r-1)*_etlarghezza);
|
|
|
|
|
TString16 formato;
|
|
|
|
|
formato << '@' << colonna << "g";
|
|
|
|
|
riga1.insert(formato,0);
|
|
|
|
|
set_row(i+1,riga1);
|
|
|
|
|
}
|
|
|
|
|
if (r < _etcolonne)
|
|
|
|
|
++(*current_cursor());
|
|
|
|
|
}
|
|
|
|
|
}
|
1997-03-20 10:33:28 +00:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case elenco:
|
|
|
|
|
{
|
1998-09-29 15:04:31 +00:00
|
|
|
|
set_row(1,"@0g@pn", FLD(LF_SOGGETTI,SOG_CODICE,"########"));
|
|
|
|
|
set_row(1,"@9g@S", FLD(LF_SOGGETTI,SOG_CATDON));
|
|
|
|
|
set_row(1,"@12g#a", &_cognome_nome);
|
|
|
|
|
set_row(1,"@38g@ld", FLD(LF_SOGGETTI,SOG_DATANASC));
|
|
|
|
|
set_row(1,"@49g@ld", FLD(LF_SOGGETTI,SOG_DATAISC));
|
|
|
|
|
set_row(1,"@60g@ld", FLD(LF_SOGGETTI,SOG_DATADIM));
|
2000-03-03 11:47:59 +00:00
|
|
|
|
set_row(1,"@71g@8,rs", FLD(LF_SOGGETTI,SOG_TESSAVIS));
|
1997-03-20 10:33:28 +00:00
|
|
|
|
}
|
|
|
|
|
break;
|
2005-08-02 11:36:08 +00:00
|
|
|
|
case completo:
|
|
|
|
|
{
|
|
|
|
|
set_row(1,"@0g@pn", FLD(LF_SOGGETTI,SOG_CODICE,"########"));
|
|
|
|
|
set_row(2,"@0g@8,rs", FLD(LF_SOGGETTI,SOG_TESSAVIS));
|
|
|
|
|
set_row(3,"@0g@8,rs", FLD(LF_SOGGETTI,SOG_CATDON));
|
|
|
|
|
set_row(1,"@9g#a", &_cognome_nome);
|
|
|
|
|
set_row(3,"@9g@ld", FLD(LF_SOGGETTI,SOG_DATANASC));
|
|
|
|
|
set_row(1,"@35g@S", FLD(LF_SOGGETTI,SOG_DOM_INDIR));
|
|
|
|
|
set_row(2,"@35g#a", &_dencom);
|
|
|
|
|
set_row(1,"@67g@S", FLD(LF_SOGGETTI,SOG_TELABI));
|
|
|
|
|
set_row(2,"@67g@S", FLD(LF_SOGGETTI,SOG_TELLAV));
|
|
|
|
|
set_row(3,"@67g@S", FLD(LF_SOGGETTI,SOG_TELALT));
|
|
|
|
|
set_row(1,"@82g@ld", FLD(LF_SOGGETTI,SOG_DATASTATO));
|
|
|
|
|
set_row(2,"@86g@S", FLD(LF_SOGGETTI,SOG_STATO));
|
|
|
|
|
set_row(3,"@82g@S", FLD(LF_SOGGETTI,SOG_IDON1));
|
|
|
|
|
set_row(3,"@85g@S", FLD(LF_SOGGETTI,SOG_IDON2));
|
|
|
|
|
set_row(3,"@88g@S", FLD(LF_SOGGETTI,SOG_IDON3));
|
|
|
|
|
set_row(3,"@91g@S", FLD(LF_SOGGETTI,SOG_IDON4));
|
|
|
|
|
set_row(4,"");
|
|
|
|
|
}
|
|
|
|
|
break;
|
1997-03-20 10:33:28 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1997-08-01 14:49:53 +00:00
|
|
|
|
bool TStampaIscritti::filter_func_iscritti(const TRelation * rel)
|
1997-03-20 10:33:28 +00:00
|
|
|
|
{
|
|
|
|
|
bool filtrato = TRUE;
|
|
|
|
|
TLocalisamfile& sog = rel->lfile();
|
|
|
|
|
// filtro per categorie
|
|
|
|
|
TAssoc_array& categorie = app()._categorie;
|
|
|
|
|
if (categorie.items() != 0)
|
|
|
|
|
{
|
|
|
|
|
const TString16 cat = sog.get(SOG_CATDON);
|
|
|
|
|
filtrato = categorie.is_key((const char*) cat);
|
2001-01-05 09:59:47 +00:00
|
|
|
|
if ((!filtrato) && (!app()._attuale))
|
1998-05-15 14:31:23 +00:00
|
|
|
|
{
|
|
|
|
|
const TString16 catcoll = rel->lfile(-ALIAS_CTD).get("S6");
|
|
|
|
|
filtrato = categorie.is_key((const char*) catcoll);
|
|
|
|
|
}
|
1997-03-20 10:33:28 +00:00
|
|
|
|
}
|
1997-08-01 14:49:53 +00:00
|
|
|
|
// filtro per date iscrizione/dimissione
|
1997-03-20 10:33:28 +00:00
|
|
|
|
if (filtrato)
|
|
|
|
|
{
|
|
|
|
|
if (app()._tipo_iscdim == ISCRITTI)
|
|
|
|
|
{
|
2001-01-05 09:59:47 +00:00
|
|
|
|
const TDate dataisc = sog.get_date(SOG_DATAISC);
|
1997-03-20 10:33:28 +00:00
|
|
|
|
filtrato = (dataisc >= app()._dataini && dataisc <= app()._datafin);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
const TDate datadim = sog.get(SOG_DATADIM);
|
|
|
|
|
filtrato = (datadim >= app()._dataini && datadim <= app()._datafin);
|
|
|
|
|
}
|
|
|
|
|
}
|
2001-10-22 09:07:33 +00:00
|
|
|
|
if (app()._numdon > 0 && filtrato)
|
|
|
|
|
{
|
|
|
|
|
const int totdon = sog.get_int(SOG_TOTDON);
|
|
|
|
|
filtrato = (totdon >= app()._numdon);
|
|
|
|
|
}
|
1997-03-20 10:33:28 +00:00
|
|
|
|
return filtrato;
|
|
|
|
|
}
|
|
|
|
|
|
1997-08-01 14:49:53 +00:00
|
|
|
|
bool TStampaIscritti::preprocess_page(int file, int counter)
|
1997-03-20 10:33:28 +00:00
|
|
|
|
{
|
2004-01-07 10:10:41 +00:00
|
|
|
|
TRectype& recsog = current_cursor()->curr();
|
2005-08-02 11:36:08 +00:00
|
|
|
|
if (_tipostampa == elenco || _tipostampa == completo)
|
|
|
|
|
{
|
1997-06-17 15:50:08 +00:00
|
|
|
|
TString80 nome = recsog.get(SOG_COGNOME);
|
2005-08-02 11:36:08 +00:00
|
|
|
|
nome << ' ';
|
1997-06-17 15:50:08 +00:00
|
|
|
|
nome << recsog.get(SOG_NOME);
|
1997-03-20 10:33:28 +00:00
|
|
|
|
_cognome_nome = nome;
|
2005-08-02 11:36:08 +00:00
|
|
|
|
TString256 localita = "";
|
|
|
|
|
localita << recsog.get(SOG_DOM_CAP);
|
|
|
|
|
localita << " ";
|
|
|
|
|
if (!recsog.get(SOG_DOM_CODLOC).blank())
|
|
|
|
|
localita << current_cursor()->curr(-ALIAS_LCPDOM).get("S0");
|
|
|
|
|
else
|
|
|
|
|
localita << current_cursor()->curr(LF_COMUNI).get(COM_DENCOM);
|
|
|
|
|
localita << ' ' << current_cursor()->curr(LF_COMUNI).get(COM_PROVCOM);
|
|
|
|
|
localita.trim();
|
|
|
|
|
_dencom = localita;
|
2009-12-30 15:45:28 +00:00
|
|
|
|
// salto pagina se cambio sezione o gruppo
|
|
|
|
|
if (_pergruppo)
|
1997-03-20 10:33:28 +00:00
|
|
|
|
{
|
2009-12-30 15:45:28 +00:00
|
|
|
|
TString16 grupponew = current_cursor()->curr(LF_SOGGETTI).get(SOG_GRUPPOAZIE);
|
|
|
|
|
if (grupponew != _gruppoold )
|
|
|
|
|
{
|
|
|
|
|
if (_gruppoold != "**")
|
|
|
|
|
footer_gruppo();
|
|
|
|
|
_contatore = 0;
|
|
|
|
|
_gruppoold = grupponew;
|
|
|
|
|
header_gruppo(grupponew);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
const TString16 codsez = recsog.get(SOG_CODSEZ);
|
|
|
|
|
const TString16 codsot = recsog.get(SOG_CODSOT);
|
|
|
|
|
if ((_codsez!=codsez)||(_codsot!=codsot))
|
|
|
|
|
{
|
|
|
|
|
if (_codsez != "**")
|
|
|
|
|
footer_sezione();
|
|
|
|
|
_contatore = 0;
|
|
|
|
|
_codsez = codsez;
|
|
|
|
|
_codsot = codsot;
|
|
|
|
|
header_sezione(codsez, codsot);
|
|
|
|
|
}
|
1997-03-20 10:33:28 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
1997-12-05 16:26:15 +00:00
|
|
|
|
if (_tipostampa==etichette)
|
|
|
|
|
if (printer().rows_left() < _form_eti->get_body().height())
|
|
|
|
|
printer().formfeed();
|
2004-01-07 10:10:41 +00:00
|
|
|
|
if (_tipostampa==stampasufile)
|
|
|
|
|
{
|
|
|
|
|
_fileiscr->zero();
|
|
|
|
|
_fileiscr->put("COGNOME",recsog.get(SOG_COGNOME));
|
|
|
|
|
_fileiscr->put("NOME",recsog.get(SOG_NOME));
|
|
|
|
|
_fileiscr->put("INDIRIZZO",recsog.get(SOG_DOM_INDIR));
|
2005-05-17 11:13:19 +00:00
|
|
|
|
TString16 cap = recsog.get(SOG_DOM_CAP);
|
|
|
|
|
_fileiscr->put("CAP", cap);
|
|
|
|
|
TString80 localita;
|
2004-01-07 10:10:41 +00:00
|
|
|
|
if (recsog.get(SOG_DOM_CODLOC).not_empty())
|
2005-08-02 11:36:08 +00:00
|
|
|
|
localita = current_cursor()->curr(-ALIAS_LCPDOM).get("S0");
|
2004-01-07 10:10:41 +00:00
|
|
|
|
else
|
2005-05-17 11:13:19 +00:00
|
|
|
|
localita = current_cursor()->curr(LF_COMUNI).get(COM_DENCOM);
|
|
|
|
|
_fileiscr->put("COMUNE",localita);
|
|
|
|
|
TString16 provincia = current_cursor()->curr(LF_COMUNI).get(COM_PROVCOM);
|
|
|
|
|
_fileiscr->put("PROVINCIA", provincia);
|
|
|
|
|
localita << ' ' << provincia;
|
|
|
|
|
cap << ' ';
|
|
|
|
|
localita.insert(cap);
|
2004-01-07 10:10:41 +00:00
|
|
|
|
localita.trim();
|
|
|
|
|
_fileiscr->put("LOCALITA",localita);
|
|
|
|
|
_fileiscr->put("TELABI",recsog.get(SOG_TELABI));
|
|
|
|
|
_fileiscr->put("TELLAV",recsog.get(SOG_TELLAV));
|
|
|
|
|
_fileiscr->put("TELALT",recsog.get(SOG_TELALT));
|
|
|
|
|
_fileiscr->put("DATAULTDON",recsog.get(SOG_DATAULTDON));
|
|
|
|
|
_fileiscr->put("TOTDON",recsog.get(SOG_TOTDON));
|
|
|
|
|
_fileiscr->put("CATDON",recsog.get(SOG_CATDON));
|
2004-01-26 09:43:22 +00:00
|
|
|
|
_fileiscr->put("DATANASC",recsog.get(SOG_DATANASC));
|
2005-05-17 11:13:19 +00:00
|
|
|
|
_fileiscr->put("CODSEZ",recsog.get(SOG_CODSEZ));
|
|
|
|
|
_fileiscr->put("CODSOT",recsog.get(SOG_CODSOT));
|
|
|
|
|
TString80 sezione = current_cursor()->curr(LF_SEZIONI).get(SEZ_DENSEZ);
|
|
|
|
|
sezione << '/';
|
|
|
|
|
sezione << current_cursor()->curr(LF_SEZIONI).get(SEZ_DENSOT);
|
|
|
|
|
_fileiscr->put("SEZIONE", sezione);
|
|
|
|
|
const char sesso = recsog.get(SOG_SESSO)[0];
|
|
|
|
|
if (sesso == '1')
|
|
|
|
|
_fileiscr->put("SESSO",'M');
|
|
|
|
|
else if (sesso == '2')
|
|
|
|
|
_fileiscr->put("SESSO",'F');
|
2004-01-07 10:10:41 +00:00
|
|
|
|
_fileiscr->write();
|
|
|
|
|
do_events();
|
|
|
|
|
}
|
2000-10-10 08:08:04 +00:00
|
|
|
|
_contatore++;
|
|
|
|
|
_totale++;
|
1997-03-20 10:33:28 +00:00
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
1998-02-11 14:43:51 +00:00
|
|
|
|
print_action TStampaIscritti::postprocess_print(int file, int counter)
|
|
|
|
|
{
|
|
|
|
|
if (_contatore > 0)
|
2009-12-30 15:45:28 +00:00
|
|
|
|
{
|
|
|
|
|
if (_pergruppo)
|
|
|
|
|
footer_gruppo();
|
|
|
|
|
else
|
1998-02-11 14:43:51 +00:00
|
|
|
|
footer_sezione();
|
2009-12-30 15:45:28 +00:00
|
|
|
|
}
|
2000-10-10 08:08:04 +00:00
|
|
|
|
fine_stampa();
|
1998-02-11 14:43:51 +00:00
|
|
|
|
return NEXT_PAGE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TStampaIscritti::footer_sezione()
|
|
|
|
|
{
|
|
|
|
|
// stampa totale soggetti appartenenti alla sezione
|
2005-08-02 11:36:08 +00:00
|
|
|
|
if (_tipostampa==elenco || _tipostampa==completo)
|
2000-10-10 08:08:04 +00:00
|
|
|
|
{
|
|
|
|
|
reset_footer();
|
|
|
|
|
TString sep(80);
|
|
|
|
|
sep.fill('-');
|
|
|
|
|
set_footer(2, (const char *) sep);
|
|
|
|
|
set_footer(3,"TOTALE SOGGETTI STAMPATI %d", _contatore);
|
|
|
|
|
printer().formfeed();
|
|
|
|
|
reset_footer();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2009-12-30 15:45:28 +00:00
|
|
|
|
void TStampaIscritti::footer_gruppo()
|
|
|
|
|
{
|
|
|
|
|
// stampa totale soggetti appartenenti alla sezione
|
|
|
|
|
if (_tipostampa==elenco || _tipostampa==completo)
|
|
|
|
|
{
|
|
|
|
|
reset_footer();
|
|
|
|
|
TString sep(80);
|
|
|
|
|
sep.fill('-');
|
|
|
|
|
set_footer(2, (const char *) sep);
|
|
|
|
|
set_footer(3,"TOTALE SOGGETTI STAMPATI %d", _contatore);
|
|
|
|
|
printer().formfeed();
|
|
|
|
|
reset_footer();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-10-10 08:08:04 +00:00
|
|
|
|
void TStampaIscritti::fine_stampa()
|
|
|
|
|
{
|
|
|
|
|
// stampa totale soggetti a fine stampa
|
2005-08-02 11:36:08 +00:00
|
|
|
|
if (_tipostampa==elenco || _tipostampa==completo)
|
2000-10-10 08:08:04 +00:00
|
|
|
|
{
|
|
|
|
|
reset_footer();
|
|
|
|
|
TString sep(80);
|
|
|
|
|
sep.fill('-');
|
|
|
|
|
set_footer(2, (const char *) sep);
|
|
|
|
|
if (_totale > 0 && _totale != _contatore)
|
|
|
|
|
{
|
|
|
|
|
set_footer(3,"TOTALE SOGGETTI STAMPATI %d", _totale);
|
|
|
|
|
printer().formfeed();
|
|
|
|
|
}
|
|
|
|
|
reset_footer();
|
|
|
|
|
}
|
1998-02-11 14:43:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
1997-08-01 14:49:53 +00:00
|
|
|
|
void TStampaIscritti::header_sezione(const TString16 codsez, const TString16 codsot)
|
1997-03-20 10:33:28 +00:00
|
|
|
|
{
|
|
|
|
|
const TString80 densez = current_cursor()->curr(LF_SEZIONI).get(SEZ_DENSEZ);
|
|
|
|
|
const TString80 densot = current_cursor()->curr(LF_SEZIONI).get(SEZ_DENSOT);
|
2000-03-03 11:47:59 +00:00
|
|
|
|
TString intestazione(80);
|
1997-03-20 10:33:28 +00:00
|
|
|
|
intestazione = "Sezione: ";
|
|
|
|
|
intestazione << codsez;
|
|
|
|
|
intestazione << "/";
|
|
|
|
|
intestazione << codsot;
|
|
|
|
|
intestazione << " ";
|
|
|
|
|
intestazione << densez;
|
2000-10-10 08:08:04 +00:00
|
|
|
|
if (densot.not_empty())
|
1997-03-20 10:33:28 +00:00
|
|
|
|
{
|
|
|
|
|
intestazione << "/";
|
|
|
|
|
intestazione << densot;
|
|
|
|
|
}
|
|
|
|
|
intestazione.center_just();
|
|
|
|
|
set_header(1,"@0g%s", (const char*) intestazione);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2009-12-30 15:45:28 +00:00
|
|
|
|
void TStampaIscritti::header_gruppo(const TString16 gruppo)
|
|
|
|
|
{
|
|
|
|
|
TString intestazione(132);
|
|
|
|
|
intestazione = "GRUPPO AZIENDALE ";
|
|
|
|
|
intestazione << gruppo;
|
|
|
|
|
intestazione << " - ";
|
|
|
|
|
intestazione << current_cursor()->curr(-ALIAS_GAZ).get("S0");
|
|
|
|
|
intestazione.center_just(80);
|
|
|
|
|
set_header(1,"@0g%s", (const char*) intestazione);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1997-08-01 14:49:53 +00:00
|
|
|
|
bool TStampaIscritti::set_print(int m)
|
1997-03-20 10:33:28 +00:00
|
|
|
|
{
|
1999-01-26 14:06:50 +00:00
|
|
|
|
TPrinter& p = printer();
|
|
|
|
|
p.read_configuration();
|
1997-12-05 16:26:15 +00:00
|
|
|
|
_tipostampa = undefined;
|
1997-03-20 10:33:28 +00:00
|
|
|
|
KEY tasto;
|
|
|
|
|
tasto = _msk->run();
|
|
|
|
|
switch (tasto)
|
|
|
|
|
{
|
|
|
|
|
case F_ELENCO:
|
1999-01-26 14:06:50 +00:00
|
|
|
|
{
|
1997-12-05 16:26:15 +00:00
|
|
|
|
_tipostampa = elenco;
|
1997-03-20 10:33:28 +00:00
|
|
|
|
_codsez = "**";
|
|
|
|
|
_codsot = "**";
|
2009-12-30 15:45:28 +00:00
|
|
|
|
_gruppoold = "**";
|
1998-02-11 14:43:51 +00:00
|
|
|
|
_contatore = 0;
|
2000-10-10 08:08:04 +00:00
|
|
|
|
_totale = 0;
|
1999-01-26 14:06:50 +00:00
|
|
|
|
}
|
|
|
|
|
break;
|
2005-08-02 11:36:08 +00:00
|
|
|
|
case F_COMPLETO:
|
|
|
|
|
{
|
|
|
|
|
_tipostampa = completo;
|
|
|
|
|
_codsez = "**";
|
|
|
|
|
_codsot = "**";
|
2009-12-30 15:45:28 +00:00
|
|
|
|
_gruppoold = "**";
|
2005-08-02 11:36:08 +00:00
|
|
|
|
_contatore = 0;
|
|
|
|
|
_totale = 0;
|
|
|
|
|
}
|
|
|
|
|
break;
|
1997-03-20 10:33:28 +00:00
|
|
|
|
case F_ETICHETTE:
|
1999-01-26 14:06:50 +00:00
|
|
|
|
_tipostampa = (configura_stampante(p, "AT_ETICHETTE", "etichette")) ? etichette : undefined;
|
|
|
|
|
break;
|
2004-01-07 10:10:41 +00:00
|
|
|
|
case F_FILE:
|
|
|
|
|
{
|
|
|
|
|
_tipostampa = stampasufile;
|
|
|
|
|
_fileiscr->zap();
|
1997-03-20 10:33:28 +00:00
|
|
|
|
}
|
2004-01-07 10:10:41 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
1997-12-05 16:26:15 +00:00
|
|
|
|
if (_tipostampa != undefined)
|
1997-03-20 10:33:28 +00:00
|
|
|
|
{
|
|
|
|
|
reset_files();
|
|
|
|
|
add_file(LF_SOGGETTI);
|
|
|
|
|
// filtro per sezioni
|
|
|
|
|
filtra_sezioni();
|
|
|
|
|
// filtro per categorie
|
1998-02-04 13:46:27 +00:00
|
|
|
|
_categorie.destroy();
|
1997-03-20 10:33:28 +00:00
|
|
|
|
const TString16 catpri = _msk->get(F_CAT1);
|
|
|
|
|
const TString16 catsec = _msk->get(F_CAT2);
|
|
|
|
|
const TString16 catter = _msk->get(F_CAT3);
|
|
|
|
|
const TString16 catqua = _msk->get(F_CAT4);
|
|
|
|
|
const TString16 catqui = _msk->get(F_CAT5);
|
|
|
|
|
const TString16 catses = _msk->get(F_CAT6);
|
2000-10-10 08:08:04 +00:00
|
|
|
|
if (catpri.not_empty())
|
1997-03-20 10:33:28 +00:00
|
|
|
|
_categorie.add((const char*) catpri);
|
2000-10-10 08:08:04 +00:00
|
|
|
|
if (catsec.not_empty())
|
1997-03-20 10:33:28 +00:00
|
|
|
|
_categorie.add((const char*) catsec);
|
2000-10-10 08:08:04 +00:00
|
|
|
|
if (catter.not_empty())
|
1997-03-20 10:33:28 +00:00
|
|
|
|
_categorie.add((const char*) catter);
|
2000-10-10 08:08:04 +00:00
|
|
|
|
if (catqua.not_empty())
|
1997-03-20 10:33:28 +00:00
|
|
|
|
_categorie.add((const char*) catqua);
|
2000-10-10 08:08:04 +00:00
|
|
|
|
if (catqui.not_empty())
|
1997-03-20 10:33:28 +00:00
|
|
|
|
_categorie.add((const char*) catqui);
|
2000-10-10 08:08:04 +00:00
|
|
|
|
if (catses.not_empty())
|
1997-03-20 10:33:28 +00:00
|
|
|
|
_categorie.add((const char*) catses);
|
|
|
|
|
// filtro per iscritti/dimessi e date
|
|
|
|
|
_tipo_iscdim = _msk->get(F_TIPO)[0];
|
|
|
|
|
_dataini = _msk->get(F_DATAINI);
|
|
|
|
|
_datafin = _msk->get(F_DATAFIN);
|
2001-01-05 09:59:47 +00:00
|
|
|
|
_attuale = _msk->get_bool(F_ATTUALE);
|
2005-01-13 13:27:32 +00:00
|
|
|
|
bool notiziario = _msk->get_bool(F_NOTIZIARIO);
|
2001-10-22 09:07:33 +00:00
|
|
|
|
_numdon = _msk->get_int(F_NUMDON);
|
2009-12-30 15:45:28 +00:00
|
|
|
|
_pergruppo = _msk->get_bool(F_PERGRUPPO);
|
|
|
|
|
TString256 chiave = "";
|
|
|
|
|
if (_pergruppo)
|
|
|
|
|
{
|
|
|
|
|
_gruppoazie = _msk->get(F_GRUPPOAZIE);
|
|
|
|
|
if (_gruppoazie.empty())
|
|
|
|
|
chiave << "90->GRUPPOAZIE|UPPER(90->COGNOME)|UPPER(90->NOME)";
|
|
|
|
|
}
|
|
|
|
|
TString256 filtro = "";
|
|
|
|
|
if (_pergruppo)
|
|
|
|
|
{
|
|
|
|
|
if (_gruppoazie.not_empty())
|
|
|
|
|
filtro.format("(90->GRUPPOAZIE == \"%s\")",(const char*)_gruppoazie);
|
|
|
|
|
else
|
|
|
|
|
filtro.format("(90->GRUPPOAZIE != \"\")");
|
|
|
|
|
}
|
|
|
|
|
|
2005-01-13 13:27:32 +00:00
|
|
|
|
if (notiziario)
|
|
|
|
|
{
|
2009-12-30 15:45:28 +00:00
|
|
|
|
if (filtro.not_empty())
|
|
|
|
|
filtro = "(90->NOTIZIARIO == \"X\")";
|
|
|
|
|
}
|
|
|
|
|
current_cursor()->setfilter(filtro, FALSE);
|
|
|
|
|
((TSorted_cursor*)current_cursor())->change_order(chiave);
|
1998-05-15 14:31:23 +00:00
|
|
|
|
current_cursor()->set_filterfunction(filter_func_iscritti, TRUE);
|
1997-03-20 10:33:28 +00:00
|
|
|
|
reset_print();
|
1998-09-02 14:06:20 +00:00
|
|
|
|
printer().footerlen(0);
|
1997-03-20 10:33:28 +00:00
|
|
|
|
crea_intestazione();
|
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
1997-08-01 14:49:53 +00:00
|
|
|
|
void TStampaIscritti::crea_intestazione()
|
1997-03-20 10:33:28 +00:00
|
|
|
|
{
|
|
|
|
|
reset_header();
|
2005-08-02 11:36:08 +00:00
|
|
|
|
if (_tipostampa == elenco || _tipostampa == completo)
|
1997-03-20 10:33:28 +00:00
|
|
|
|
{
|
2000-03-03 11:47:59 +00:00
|
|
|
|
TString sep(80);
|
|
|
|
|
sep = "";
|
1997-03-20 10:33:28 +00:00
|
|
|
|
if (_tipo_iscdim == ISCRITTI)
|
|
|
|
|
sep << "ISCRITTI";
|
|
|
|
|
else
|
|
|
|
|
sep << "DIMESSI";
|
|
|
|
|
if (_dataini.ok())
|
|
|
|
|
{
|
2000-03-03 11:47:59 +00:00
|
|
|
|
sep << " DAL ";
|
1997-03-20 10:33:28 +00:00
|
|
|
|
sep << _dataini.string();
|
|
|
|
|
}
|
|
|
|
|
if (_datafin.ok())
|
|
|
|
|
{
|
2000-03-03 11:47:59 +00:00
|
|
|
|
sep << " AL ";
|
1997-03-20 10:33:28 +00:00
|
|
|
|
sep << _datafin.string();
|
|
|
|
|
}
|
|
|
|
|
sep.center_just();
|
|
|
|
|
set_header(2, "@0g%s", (const char*) sep);
|
|
|
|
|
const TString16 data_stampa = _data_stampa.string();
|
|
|
|
|
set_header(2,"@0g%10s", (const char*) data_stampa);
|
|
|
|
|
sep = "";
|
|
|
|
|
sep << "Pag. @#";
|
2000-03-03 11:47:59 +00:00
|
|
|
|
set_header(2, "@70g%s", (const char*) sep);
|
1997-03-20 10:33:28 +00:00
|
|
|
|
sep = "";
|
|
|
|
|
sep.fill('-');
|
|
|
|
|
set_header(3, (const char *) sep);
|
2005-08-02 11:36:08 +00:00
|
|
|
|
if (_tipostampa == elenco)
|
|
|
|
|
{
|
|
|
|
|
set_header(4,"@0gCodice@9gC.@12gCognome e nome@38gNato il@49gData isc.@60gData dim.@71gTessera");
|
|
|
|
|
set_header(5,"@0g--------@9g--@12g-------------------------@38g----------@49g----------@60g----------@71g-------");
|
|
|
|
|
printer().footerlen(3);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
_dencom.set_width(30);
|
|
|
|
|
set_header(4,"@0gCodice@9gCognome e nome@35gIndirizzo@67gTelefono abit.@82gData stato");
|
|
|
|
|
set_header(5,"@0gTessera@35gCAP/Localit<69>/Comune/Prov.@67gTelefono lav.@82gStato");
|
|
|
|
|
set_header(6,"@0gCat.don.@9gData nascita@67gTelefono altro@82gIdoneit<69>");
|
|
|
|
|
set_header(7,"@0g--------@9g-------------------------@35g------------------------------@67g--------------@82g-----------");
|
|
|
|
|
printer().footerlen(3);
|
|
|
|
|
}
|
|
|
|
|
|
1997-03-20 10:33:28 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1997-08-01 14:49:53 +00:00
|
|
|
|
bool TStampaIscritti::user_create()
|
1997-03-20 10:33:28 +00:00
|
|
|
|
{
|
2010-01-05 14:03:30 +00:00
|
|
|
|
//lettura della configurazione
|
|
|
|
|
TConfig config(CONFIG_STUDIO);
|
|
|
|
|
TString16 etformato = config.get("EtFormato");
|
|
|
|
|
//crea il form di stampa
|
|
|
|
|
if (!controlla_esistenza_form(etformato, "ate10x36"))
|
|
|
|
|
return false;
|
|
|
|
|
_form_eti = new TEti_iscritti_form(etformato);
|
|
|
|
|
|
|
|
|
|
_etlarghezza = config.get_int("EtLarghezza");
|
|
|
|
|
_etcolonne = config.get_int("EtColonne");
|
|
|
|
|
|
|
|
|
|
//file di appoggio
|
|
|
|
|
TFilename iscrname, iscrtrr;
|
|
|
|
|
if (!controlla_esistenza_trr("at2600", iscrname, iscrtrr))
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
_fileiscr = new TExternisamfile(iscrname, iscrtrr, false);
|
|
|
|
|
|
|
|
|
|
//relazione
|
1997-03-20 10:33:28 +00:00
|
|
|
|
_rel = new TRelation(LF_SOGGETTI);
|
1998-05-15 14:31:23 +00:00
|
|
|
|
_rel->add("CTD", "CODTAB==CATDON",1,0,ALIAS_CTD);
|
1997-03-20 10:33:28 +00:00
|
|
|
|
_rel->add(LF_SEZIONI, "CODSEZ==CODSEZ|CODSOT==CODSOT");
|
2005-08-02 11:36:08 +00:00
|
|
|
|
_rel->add("LCP", "CODTAB==DOM_CODLOC",1,0,ALIAS_LCPDOM);
|
2009-12-30 15:45:28 +00:00
|
|
|
|
_rel->add("GAZ", "CODTAB==GRUPPOAZIE",1,0,ALIAS_GAZ);
|
2005-08-02 11:36:08 +00:00
|
|
|
|
_rel->add(LF_COMUNI, "COM==DOM_CODCOM",1,0,ALIAS_COMDOM);
|
2009-12-30 15:45:28 +00:00
|
|
|
|
add_cursor(new TSorted_cursor(_rel,"SOG_CODSEZ|SOG_CODSOT","",3));
|
2007-03-06 16:37:44 +00:00
|
|
|
|
|
2010-01-05 14:03:30 +00:00
|
|
|
|
//maschera
|
|
|
|
|
_msk = new TMask("at2600a");
|
2006-04-13 17:56:02 +00:00
|
|
|
|
|
2010-01-05 14:03:30 +00:00
|
|
|
|
return true;
|
1997-03-20 10:33:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
1997-08-01 14:49:53 +00:00
|
|
|
|
bool TStampaIscritti::user_destroy()
|
1997-03-20 10:33:28 +00:00
|
|
|
|
{
|
2006-07-11 13:10:51 +00:00
|
|
|
|
delete _fileiscr;
|
1998-08-07 09:53:58 +00:00
|
|
|
|
delete _form_eti;
|
1997-03-20 10:33:28 +00:00
|
|
|
|
delete _msk;
|
|
|
|
|
delete _rel;
|
2010-01-05 14:03:30 +00:00
|
|
|
|
return true;
|
1997-03-20 10:33:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int at2600(int argc, char* argv[])
|
|
|
|
|
{
|
1997-08-01 14:49:53 +00:00
|
|
|
|
TStampaIscritti a;
|
1998-08-07 09:53:58 +00:00
|
|
|
|
a.run(argc, argv, "Iscritti/dimessi");
|
1997-03-20 10:33:28 +00:00
|
|
|
|
return 0;
|
2009-12-30 15:45:28 +00:00
|
|
|
|
}
|