Files correlati : Ricompilazione Demo : [ ] Commento : Riportata la versione 3.1 patch 873 git-svn-id: svn://10.65.10.50/trunk@15151 c028cbd2-c16b-5b4b-a496-9718f37d4682
		
			
				
	
	
		
			528 lines
		
	
	
		
			15 KiB
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			528 lines
		
	
	
		
			15 KiB
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
#include <form.h>
 | 
						||
#include <mask.h>
 | 
						||
#include <printapp.h>
 | 
						||
 | 
						||
#include "soggetti.h"
 | 
						||
#include "sezioni.h"
 | 
						||
#include <comuni.h>
 | 
						||
 | 
						||
#include "at2.h"
 | 
						||
#include "at2600a.h"
 | 
						||
#include "atlib.h"
 | 
						||
 | 
						||
#define ALIAS_LCPDOM	100		// localita' postale di domicilio
 | 
						||
#define ALIAS_COMDOM 	501		// comune di domicilio
 | 
						||
#define ALIAS_CTD	700		// categoria donatori
 | 
						||
 | 
						||
#define ISCRITTI 'I'
 | 
						||
enum ts { undefined = 0, elenco = 1, etichette = 2, stampasufile = 3, completo = 4 };
 | 
						||
 | 
						||
// 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() {};
 | 
						||
};
 | 
						||
 | 
						||
class TStampaIscritti : public TPrintapp
 | 
						||
{
 | 
						||
  TRelation*					_rel;
 | 
						||
  TMask*      				_msk;
 | 
						||
  TEti_iscritti_form*	_form_eti;
 | 
						||
	TExternisamfile*  	_fileiscr;
 | 
						||
  TAssoc_array				_categorie;
 | 
						||
  TParagraph_string 	_cognome_nome, _dencom;
 | 
						||
  TDate 							_data_stampa;
 | 
						||
	ts 	      					_tipostampa;
 | 
						||
  int 								_contatore, _totale;
 | 
						||
	TString16						_codsez, _codsot;
 | 
						||
	char								_tipo_iscdim;	// iscritti o dimessi
 | 
						||
	TDate								_dataini, _datafin;
 | 
						||
  int									_etlarghezza, _etcolonne;
 | 
						||
  bool								_attuale;
 | 
						||
  int									_numdon;
 | 
						||
 | 
						||
  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);
 | 
						||
  virtual print_action postprocess_print(int file, int counter);
 | 
						||
 | 
						||
public:
 | 
						||
  void crea_intestazione();
 | 
						||
  void filtra_sezioni();
 | 
						||
  void header_sezione(const TString16 codsez, const TString16 codsot);
 | 
						||
  void footer_sezione();
 | 
						||
  void fine_stampa();
 | 
						||
  TMask& app_mask() { return *_msk; }
 | 
						||
  TStampaIscritti() : _data_stampa(TODAY), _cognome_nome("",25), _dencom("",30) {}
 | 
						||
};
 | 
						||
 | 
						||
HIDDEN inline TStampaIscritti& app() { return (TStampaIscritti&) main_app(); }
 | 
						||
 | 
						||
TCursor* TEti_iscritti_form::cursor() const { return app().current_cursor(); }
 | 
						||
 | 
						||
TRelation* TEti_iscritti_form::relation() const { return cursor()->relation(); }
 | 
						||
 | 
						||
void TStampaIscritti::filtra_sezioni()
 | 
						||
{
 | 
						||
 	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);
 | 
						||
}	
 | 
						||
 | 
						||
void TStampaIscritti::set_page(int file, int cnt)
 | 
						||
{
 | 
						||
	// costruzione etichette
 | 
						||
	switch (_tipostampa)
 | 
						||
	{
 | 
						||
		case etichette:
 | 
						||
		{ 
 | 
						||
			TPrint_section& corpo = _form_eti->get_body();
 | 
						||
			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());
 | 
						||
				}					
 | 
						||
			}				
 | 
						||
		}
 | 
						||
		break;
 | 
						||
		case elenco:
 | 
						||
		{
 | 
						||
			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));
 | 
						||
			set_row(1,"@71g@8,rs", FLD(LF_SOGGETTI,SOG_TESSAVIS));
 | 
						||
		}
 | 
						||
		break;
 | 
						||
		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;
 | 
						||
	}					
 | 
						||
}
 | 
						||
 | 
						||
bool TStampaIscritti::filter_func_iscritti(const TRelation * rel)
 | 
						||
{   
 | 
						||
	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);
 | 
						||
		if ((!filtrato) && (!app()._attuale))
 | 
						||
		{
 | 
						||
			const TString16 catcoll = rel->lfile(-ALIAS_CTD).get("S6");
 | 
						||
			filtrato = categorie.is_key((const char*) catcoll);
 | 
						||
		}
 | 
						||
	}	
 | 
						||
	// filtro per date iscrizione/dimissione
 | 
						||
	if (filtrato)
 | 
						||
	{
 | 
						||
		if (app()._tipo_iscdim == ISCRITTI)
 | 
						||
		{
 | 
						||
			const TDate dataisc = sog.get_date(SOG_DATAISC);
 | 
						||
			filtrato = (dataisc >= app()._dataini && dataisc <= app()._datafin);
 | 
						||
		}
 | 
						||
		else
 | 
						||
		{
 | 
						||
			const TDate datadim = sog.get(SOG_DATADIM);
 | 
						||
			filtrato = (datadim >= app()._dataini && datadim <= app()._datafin);
 | 
						||
		}				
 | 
						||
	}
 | 
						||
	if (app()._numdon > 0 && filtrato)
 | 
						||
	{
 | 
						||
		const int totdon = sog.get_int(SOG_TOTDON);
 | 
						||
		filtrato = (totdon >= app()._numdon);
 | 
						||
	}	
 | 
						||
  return filtrato;
 | 
						||
}
 | 
						||
 | 
						||
bool TStampaIscritti::preprocess_page(int file, int counter)
 | 
						||
{
 | 
						||
	TRectype& recsog = current_cursor()->curr();
 | 
						||
	if (_tipostampa == elenco || _tipostampa == completo)
 | 
						||
	{                                       
 | 
						||
		TString80 nome = recsog.get(SOG_COGNOME);
 | 
						||
		nome << ' ';
 | 
						||
		nome << recsog.get(SOG_NOME);
 | 
						||
		_cognome_nome = nome;
 | 
						||
		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;
 | 
						||
		// salto pagina se cambio sezione
 | 
						||
		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);
 | 
						||
		}
 | 
						||
	}		
 | 
						||
	if (_tipostampa==etichette)		
 | 
						||
		if (printer().rows_left() < _form_eti->get_body().height())
 | 
						||
			printer().formfeed();
 | 
						||
	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)); 
 | 
						||
		TString16 cap = recsog.get(SOG_DOM_CAP);
 | 
						||
		_fileiscr->put("CAP", cap); 
 | 
						||
		TString80 localita;
 | 
						||
		if (recsog.get(SOG_DOM_CODLOC).not_empty())
 | 
						||
			localita = current_cursor()->curr(-ALIAS_LCPDOM).get("S0");
 | 
						||
		else
 | 
						||
			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);
 | 
						||
		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)); 
 | 
						||
		_fileiscr->put("DATANASC",recsog.get(SOG_DATANASC)); 
 | 
						||
		_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');
 | 
						||
		_fileiscr->write();	
 | 
						||
		do_events();	
 | 
						||
	}		
 | 
						||
	_contatore++;
 | 
						||
	_totale++;			
 | 
						||
  return TRUE;
 | 
						||
}
 | 
						||
 | 
						||
print_action TStampaIscritti::postprocess_print(int file, int counter)
 | 
						||
{ 
 | 
						||
	if (_contatore > 0)
 | 
						||
			footer_sezione();
 | 
						||
	fine_stampa();	
 | 
						||
	return NEXT_PAGE;
 | 
						||
}
 | 
						||
 | 
						||
void TStampaIscritti::footer_sezione()
 | 
						||
{
 | 
						||
	// 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();
 | 
						||
	}	
 | 
						||
}
 | 
						||
 | 
						||
void TStampaIscritti::fine_stampa()
 | 
						||
{
 | 
						||
	// stampa totale soggetti a fine stampa
 | 
						||
  if (_tipostampa==elenco || _tipostampa==completo)
 | 
						||
	{
 | 
						||
		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(); 
 | 
						||
	}	
 | 
						||
}
 | 
						||
 | 
						||
void TStampaIscritti::header_sezione(const TString16 codsez, const TString16 codsot)
 | 
						||
{
 | 
						||
	const TString80 densez = current_cursor()->curr(LF_SEZIONI).get(SEZ_DENSEZ);
 | 
						||
	const TString80 densot = current_cursor()->curr(LF_SEZIONI).get(SEZ_DENSOT);
 | 
						||
	TString intestazione(80);
 | 
						||
	intestazione = "Sezione: ";
 | 
						||
	intestazione << codsez;
 | 
						||
	intestazione << "/";
 | 
						||
	intestazione << codsot;
 | 
						||
	intestazione << " ";
 | 
						||
	intestazione << densez;
 | 
						||
	if (densot.not_empty())
 | 
						||
	{
 | 
						||
		intestazione << "/";
 | 
						||
		intestazione << densot;
 | 
						||
	}		
 | 
						||
	intestazione.center_just();
 | 
						||
	set_header(1,"@0g%s", (const char*) intestazione);
 | 
						||
	return;
 | 
						||
}
 | 
						||
 | 
						||
bool TStampaIscritti::set_print(int m)
 | 
						||
{ 
 | 
						||
  TPrinter& p = printer();
 | 
						||
	p.read_configuration();
 | 
						||
	_tipostampa = undefined;
 | 
						||
  KEY tasto;
 | 
						||
  tasto = _msk->run();
 | 
						||
  switch (tasto)
 | 
						||
  {
 | 
						||
  case F_ELENCO:
 | 
						||
  {
 | 
						||
  	_tipostampa = elenco;
 | 
						||
  	_codsez = "**";
 | 
						||
  	_codsot = "**";
 | 
						||
  	_contatore = 0;
 | 
						||
  	_totale = 0;
 | 
						||
  }	
 | 
						||
  break;
 | 
						||
  case F_COMPLETO:
 | 
						||
  {
 | 
						||
  	_tipostampa = completo;
 | 
						||
  	_codsez = "**";
 | 
						||
  	_codsot = "**";
 | 
						||
  	_contatore = 0;
 | 
						||
  	_totale = 0;
 | 
						||
  }	
 | 
						||
  break;
 | 
						||
  case F_ETICHETTE:
 | 
						||
  	_tipostampa = (configura_stampante(p, "AT_ETICHETTE", "etichette")) ? etichette : undefined;
 | 
						||
  break;
 | 
						||
  case F_FILE:
 | 
						||
  {
 | 
						||
  	_tipostampa = stampasufile;
 | 
						||
		_fileiscr->zap();
 | 
						||
  }	
 | 
						||
  break;
 | 
						||
  }
 | 
						||
	if (_tipostampa != undefined)
 | 
						||
  {
 | 
						||
    reset_files(); 
 | 
						||
    add_file(LF_SOGGETTI);
 | 
						||
    // filtro per sezioni
 | 
						||
	  filtra_sezioni();
 | 
						||
    // filtro per categorie
 | 
						||
    _categorie.destroy();    
 | 
						||
		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);
 | 
						||
	  if (catpri.not_empty())
 | 
						||
	  	_categorie.add((const char*) catpri);
 | 
						||
	  if (catsec.not_empty())
 | 
						||
	  	_categorie.add((const char*) catsec);
 | 
						||
	  if (catter.not_empty())
 | 
						||
	  	_categorie.add((const char*) catter);
 | 
						||
	  if (catqua.not_empty())
 | 
						||
	  	_categorie.add((const char*) catqua);
 | 
						||
	  if (catqui.not_empty())
 | 
						||
	  	_categorie.add((const char*) catqui);
 | 
						||
	  if (catses.not_empty())
 | 
						||
	  	_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);    
 | 
						||
		_attuale      = _msk->get_bool(F_ATTUALE);    
 | 
						||
		bool notiziario = _msk->get_bool(F_NOTIZIARIO);
 | 
						||
		_numdon 			= _msk->get_int(F_NUMDON);    
 | 
						||
		if (notiziario)
 | 
						||
		{
 | 
						||
			TString80 filtro;
 | 
						||
			filtro = "(90->NOTIZIARIO == \"X\")";
 | 
						||
			current_cursor()->setfilter(filtro, TRUE);
 | 
						||
		}	
 | 
						||
		else
 | 
						||
			current_cursor()->setfilter("", TRUE);
 | 
						||
		current_cursor()->set_filterfunction(filter_func_iscritti, TRUE);
 | 
						||
		reset_print();
 | 
						||
		printer().footerlen(0);		
 | 
						||
		crea_intestazione();
 | 
						||
    return TRUE;
 | 
						||
  }
 | 
						||
  else
 | 
						||
    return FALSE;
 | 
						||
}
 | 
						||
 | 
						||
void TStampaIscritti::crea_intestazione()
 | 
						||
{
 | 
						||
  reset_header();
 | 
						||
  if (_tipostampa == elenco || _tipostampa == completo)
 | 
						||
  {
 | 
						||
  	TString sep(80);
 | 
						||
  	sep = "";
 | 
						||
  	if (_tipo_iscdim == ISCRITTI)
 | 
						||
  		sep << "ISCRITTI";
 | 
						||
		else  		
 | 
						||
  		sep << "DIMESSI";
 | 
						||
  	if (_dataini.ok())
 | 
						||
  	{
 | 
						||
  		sep << " DAL ";
 | 
						||
  		sep << _dataini.string();
 | 
						||
		}
 | 
						||
  	if (_datafin.ok())
 | 
						||
  	{
 | 
						||
  		sep << " AL ";
 | 
						||
  		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. @#";
 | 
						||
  	set_header(2, "@70g%s", (const char*) sep);  
 | 
						||
  	sep = "";
 | 
						||
  	sep.fill('-');
 | 
						||
  	set_header(3, (const char *) sep);
 | 
						||
  	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);
 | 
						||
  	}
 | 
						||
  		
 | 
						||
	}  	
 | 
						||
}
 | 
						||
 | 
						||
bool TStampaIscritti::user_create()
 | 
						||
{
 | 
						||
  _rel = new TRelation(LF_SOGGETTI);
 | 
						||
  _rel->add("CTD", "CODTAB==CATDON",1,0,ALIAS_CTD);
 | 
						||
  _rel->add(LF_SEZIONI, "CODSEZ==CODSEZ|CODSOT==CODSOT");
 | 
						||
  _rel->add("LCP", "CODTAB==DOM_CODLOC",1,0,ALIAS_LCPDOM);
 | 
						||
  _rel->add(LF_COMUNI, "COM==DOM_CODCOM",1,0,ALIAS_COMDOM);
 | 
						||
 | 
						||
  add_cursor(new TCursor(_rel, "", 3));
 | 
						||
  _msk = new TMask("at2600a");
 | 
						||
  TConfig config(CONFIG_STUDIO);
 | 
						||
  TString16 etformato = config.get("EtFormato");
 | 
						||
  _etlarghezza = config.get_int("EtLarghezza");
 | 
						||
  _etcolonne = config.get_int("EtColonne");
 | 
						||
	_form_eti = new TEti_iscritti_form(etformato);
 | 
						||
 | 
						||
  TFilename iscrname = "iscritti";
 | 
						||
  iscrname.ext("dbf");
 | 
						||
	TFilename iscrtrr = "iscritti"; 
 | 
						||
	iscrtrr.ext("trr");
 | 
						||
  if (!iscrtrr.custom_path())
 | 
						||
	{
 | 
						||
		iscrtrr = "recdesc/iscritti"; 
 | 
						||
		iscrtrr.ext("trr");
 | 
						||
	}
 | 
						||
 | 
						||
  _fileiscr = new TExternisamfile(iscrname, iscrtrr, false);
 | 
						||
 | 
						||
  return true;
 | 
						||
}
 | 
						||
 | 
						||
bool TStampaIscritti::user_destroy()
 | 
						||
{
 | 
						||
  delete _fileiscr;
 | 
						||
  delete _form_eti;
 | 
						||
  delete _msk;
 | 
						||
  delete _rel;
 | 
						||
  return TRUE;
 | 
						||
}
 | 
						||
 | 
						||
int at2600(int argc, char* argv[])
 | 
						||
{
 | 
						||
  TStampaIscritti a;
 | 
						||
  a.run(argc, argv, "Iscritti/dimessi");
 | 
						||
  return 0;
 | 
						||
} |