Files correlati : Ricompilazione Demo : [ ] Commento : git-svn-id: svn://10.65.10.50/trunk@11662 c028cbd2-c16b-5b4b-a496-9718f37d4682
555 lines
16 KiB
C++
Executable File
555 lines
16 KiB
C++
Executable File
#include <applicat.h>
|
|
#include <automask.h>
|
|
#include <form.h>
|
|
#include <printer.h>
|
|
#include <recarray.h>
|
|
#include <utility.h>
|
|
|
|
#include "cm0.h"
|
|
|
|
#include "cm0100a.h"
|
|
#include "cm0100.h"
|
|
|
|
#include "rmov.h"
|
|
#include "pconti.h"
|
|
|
|
///////////////////////////////////////////////////////////
|
|
// TForm_contixcdc
|
|
///////////////////////////////////////////////////////////
|
|
|
|
class TForm_contixcdc : public TForm
|
|
{
|
|
public:
|
|
virtual bool validate(TForm_item &cf, TToken_string &s);
|
|
void set_testata() { set_header(1, false); set_header(1, true); }
|
|
void set_pedata() { set_footer(1, false); set_footer(1, true); }
|
|
TPrint_section& get_section(char s, pagetype pos);
|
|
|
|
TForm_contixcdc();
|
|
virtual ~TForm_contixcdc();
|
|
};
|
|
|
|
TPrint_section& TForm_contixcdc::get_section(char s, pagetype pos)
|
|
{
|
|
if (!exist(s, pos))
|
|
{
|
|
s = 'B';
|
|
pos = odd_page;
|
|
}
|
|
return section(s, pos);
|
|
}
|
|
|
|
bool TForm_contixcdc::validate(TForm_item &cf, TToken_string &s)
|
|
{
|
|
const TString code(s.get(0)); // prende il primo parametro, il codice del messaggio
|
|
TString valore;
|
|
if (code== "_DITTA")
|
|
{
|
|
// lettura dei dati della ditta
|
|
// sintassi: _DITTA,{<campo relazione>|<macro>}
|
|
// dove: <campo relazione> è un riferimento alla relazione di gestione dei dati della ditta (es. 113@->DENCOM è la denominazione del comune di residenza della ditta)
|
|
// <macro> è uno delle macro seguenti:
|
|
// !RAGSOC ragione sociale
|
|
// !IND indirizzo (fiscale se c'è, oppure di residenza)
|
|
// !NUM numero civico (fiscale se c'è, oppure di residenza)
|
|
// !CAP CAP (fiscale se c'è, oppure di residenza)
|
|
// !COM comune (fiscale se c'è, oppure di residenza)
|
|
// !PROV provincia (fiscale se c'è, oppure di residenza)
|
|
// !IVA partita iva
|
|
// !CF codice fiscale
|
|
// !TEL numero di telefono (con prefisso)
|
|
// !FAX numero di fax (con prefisso)
|
|
// !REGSOC numero di registrazione presso il Tribunale
|
|
// !CCIAA numero di registrazione presso la camera di commercio
|
|
|
|
TString in(s.get());
|
|
if (in[0]!='!')
|
|
{
|
|
const TRectype & firm = cache().get(LF_NDITTE, main_app().get_firm());
|
|
|
|
cf.set(firm.get(in));
|
|
return TRUE;
|
|
}
|
|
else
|
|
return TForm::validate(cf, s); // se il codice del messaggio non è identificato viene passato alla funzione standard
|
|
} // fine _DITTA
|
|
return TForm::validate(cf, s); // se il codice del messaggio non è identificato viene passato alla funzione standard
|
|
}
|
|
|
|
TForm_contixcdc::TForm_contixcdc() :TForm("cm0100a") //costruttore
|
|
{
|
|
}
|
|
|
|
TForm_contixcdc::~TForm_contixcdc() //distruttore
|
|
{
|
|
}
|
|
|
|
///////////////////////////////////////////////////////////
|
|
// TContixcdc_mask
|
|
///////////////////////////////////////////////////////////
|
|
|
|
class TContixcdc_mask : public TAutomask
|
|
{
|
|
TRelation * _rel;
|
|
TCursor * _cur;
|
|
|
|
protected:
|
|
bool on_field_event(TOperable_field& o, TField_event e, long jolly);
|
|
public:
|
|
|
|
TContixcdc_mask();
|
|
|
|
virtual ~TContixcdc_mask(){};
|
|
};
|
|
|
|
TContixcdc_mask::TContixcdc_mask() :TAutomask ("cm0100a")
|
|
{
|
|
}
|
|
|
|
bool TContixcdc_mask::on_field_event(TOperable_field& o, TField_event e, long jolly)
|
|
{
|
|
switch (o.dlg())
|
|
{
|
|
case F_DACDC:
|
|
case F_ACDC:
|
|
if (e == fe_modify)
|
|
{
|
|
const bool on = !(field(F_DACDC).empty() && field(F_ACDC).empty());
|
|
if (!on)
|
|
{
|
|
reset(F_DAFSC);
|
|
reset(F_AFSC);
|
|
}
|
|
enable(F_DAFSC, on);
|
|
enable(F_AFSC, on);
|
|
}
|
|
break;
|
|
case F_DATAINI:
|
|
if (e == fe_modify || e == fe_close)
|
|
{
|
|
TDate dataini(get(F_DATAINI));
|
|
if (dataini.ok() && !field(F_ANNO).empty())
|
|
{
|
|
const TDate datainies = cache().get("ESC", get(F_ANNO), "D0");
|
|
if (dataini < datainies && datainies.ok())
|
|
return error_box(TR("La data iniziale non può essere precedente alla data inizio esercizio %s"), (const char*) datainies.string());
|
|
}
|
|
}
|
|
break;
|
|
case F_DATAFIN:
|
|
if (e == fe_modify || fe_close)
|
|
{
|
|
TDate datafin(get(F_DATAFIN));
|
|
if (datafin.ok() && !field(F_ANNO).empty())
|
|
{
|
|
const TDate datafines = cache().get("ESC", get(F_ANNO), "D1");
|
|
if (datafin > datafines && datafines.ok())
|
|
return error_box(FR("La data finale non può essere successiva alla data fine esercizio %s"), (const char*) datafines.string());
|
|
}
|
|
}
|
|
break;
|
|
default: break;
|
|
}
|
|
return TRUE;
|
|
}
|
|
|
|
struct TTotali : public TObject
|
|
{
|
|
TImporto _tot_progprec, _tot_periodo, _tot_saldoatt;
|
|
void azzera();
|
|
TTotali& operator += (const TTotali& t);
|
|
};
|
|
|
|
void TTotali::azzera()
|
|
{
|
|
_tot_progprec = 0;
|
|
_tot_periodo = 0;
|
|
_tot_saldoatt = 0;
|
|
}
|
|
|
|
TTotali& TTotali::operator += (const TTotali& t)
|
|
{
|
|
_tot_progprec += t._tot_progprec;
|
|
_tot_periodo += t._tot_periodo;
|
|
_tot_saldoatt += t._tot_saldoatt;
|
|
|
|
return *this; //ritorna se stesso, quindi i valori dei totali
|
|
}
|
|
|
|
class TContixCdc : public TSkeleton_application
|
|
{
|
|
TContixcdc_mask* _mask;
|
|
TForm_contixcdc* _form;
|
|
int _codes;
|
|
TDate _dataini, _datafin;
|
|
TTotali _t_conto, _t_sottoc, _t_fsc, _t_cms; //sono i tre set di totali (gruppo/conto, sottoconto, commessa)
|
|
int _currgruppo, _currconto, _oldgruppo, _oldconto;
|
|
long _currsottoc, _oldsottoc;
|
|
TString _currcms, _currfsc, _oldcms, _oldfsc;
|
|
bool _saltopagina, _headercms, _headerfsc;
|
|
bool _stampa_totconti, _stampa_totcms, _stampa_dettagli;
|
|
|
|
protected:
|
|
virtual bool create();
|
|
virtual bool destroy();
|
|
virtual void main_loop();
|
|
|
|
void print_sottoc();
|
|
void print_footer_gruppo();
|
|
void print_footer_cms();
|
|
void print_header_cms();
|
|
void print_footer_fsc();
|
|
void print_header_fsc();
|
|
void set_intestazione();
|
|
|
|
void fill_importo(const TImporto& imp, pagetype pt, short id_imp, short id_sez);
|
|
void fill_body(pagetype pt, const TTotali& tot); //riempie il campo body con tutti i totali
|
|
void set_field(pagetype pt, int id, const real& val); //mette in un campo del body odd un valore numerico
|
|
void set_field(pagetype pt, int id, const char* val); //mette in un campo del body odd una stringa
|
|
void aggiorna_totali(const TImporto& importo, const TDate& data);
|
|
|
|
void print_special_section(char type, pagetype pos);
|
|
void print_body(pagetype pt); //stampa effettivamente il body
|
|
|
|
public:
|
|
TContixCdc() {}
|
|
};
|
|
|
|
bool TContixCdc::create()
|
|
{
|
|
_mask = new TContixcdc_mask;
|
|
_form = new TForm_contixcdc;
|
|
open_files(LF_TAB, LF_PCON, LF_RMOV, 0);
|
|
return TSkeleton_application::create();
|
|
}
|
|
|
|
bool TContixCdc::destroy()
|
|
{
|
|
delete _mask;
|
|
delete _form;
|
|
return TSkeleton_application::destroy();
|
|
}
|
|
|
|
void TContixCdc::print_sottoc()
|
|
{
|
|
if (!_t_sottoc._tot_periodo.is_zero())
|
|
{
|
|
if (_headercms)
|
|
{
|
|
print_header_cms();
|
|
_headercms = FALSE;
|
|
}
|
|
if (_headerfsc)
|
|
{
|
|
print_header_fsc();
|
|
_headerfsc = FALSE;
|
|
}
|
|
TString16 key;
|
|
key.format("%d|%d|%ld", _oldgruppo, _oldconto, _oldsottoc);
|
|
const TRectype& pcon = cache().get(LF_PCON, key);
|
|
set_field(odd_page, FR_GRUPPO, _oldgruppo);
|
|
set_field(odd_page, FR_CONTO, _oldconto);
|
|
set_field(odd_page, FR_SOTTOC, _oldsottoc);
|
|
set_field(odd_page, FR_D_SOTTOC, pcon.get(PCN_DESCR));
|
|
fill_body(odd_page, _t_sottoc);
|
|
if (_stampa_dettagli)
|
|
print_body(odd_page);
|
|
_t_conto += _t_sottoc;
|
|
_t_fsc += _t_sottoc;
|
|
_t_cms += _t_sottoc;
|
|
}
|
|
_oldsottoc = _currsottoc;
|
|
_t_sottoc.azzera();
|
|
}
|
|
|
|
void TContixCdc::print_footer_gruppo()
|
|
{
|
|
if (!_t_conto._tot_periodo.is_zero() && _stampa_totconti)
|
|
{
|
|
TString16 key;
|
|
key.format("%d|%d", _oldgruppo, _oldconto);
|
|
TString tmp;
|
|
const TRectype& pcon = cache().get(LF_PCON, key);
|
|
set_field(first_page, FR_GRUPPO, _oldgruppo);
|
|
set_field(first_page, FR_CONTO, _oldconto);
|
|
set_field(first_page, FR_SOTTOC, "");
|
|
set_field(first_page, FR_D_SOTTOC, pcon.get(PCN_DESCR));
|
|
fill_body(first_page, _t_conto);
|
|
print_body(first_page);
|
|
}
|
|
_oldgruppo = _currgruppo;
|
|
_oldconto = _currconto;
|
|
_t_conto.azzera();
|
|
}
|
|
|
|
void TContixCdc::print_footer_cms()
|
|
{
|
|
if (!_t_cms._tot_periodo.is_zero() && _stampa_totcms)
|
|
{
|
|
TString tmp;
|
|
tmp.format(FR("TOTALE COMMESSA %s"), (const char*)_oldcms);
|
|
set_field(last_page, FR_GRUPPO, "");
|
|
set_field(last_page, FR_CONTO, "");
|
|
set_field(last_page, FR_SOTTOC, "");
|
|
set_field(last_page, FR_D_SOTTOC, tmp);
|
|
fill_body(last_page, _t_cms);
|
|
print_body(last_page);
|
|
if (_saltopagina)
|
|
printer().formfeed();
|
|
}
|
|
_t_cms.azzera();
|
|
_oldcms = _currcms;
|
|
_headercms = TRUE;
|
|
}
|
|
|
|
void TContixCdc::print_footer_fsc()
|
|
{
|
|
if (!_t_fsc._tot_periodo.is_zero())
|
|
{
|
|
TString tmp;
|
|
tmp.format(FR("TOTALE FASE %s"), (const char*) _oldfsc);
|
|
set_field(even_page, FR_D_SOTTOC, tmp);
|
|
fill_body(even_page, _t_fsc);
|
|
print_body(even_page);
|
|
}
|
|
_oldfsc = _currfsc;
|
|
_t_fsc.azzera();
|
|
_headerfsc = TRUE;
|
|
}
|
|
|
|
void TContixCdc::print_header_cms()
|
|
{
|
|
TPrint_section& h = _form->get_section('H', odd_page);
|
|
h.find_field(FR_CMS).set(_oldcms);
|
|
h.find_field(FR_D_CMS).set(cache().get("CMS", _oldcms).get("S0"));
|
|
print_special_section('H', odd_page);
|
|
}
|
|
|
|
void TContixCdc::print_header_fsc()
|
|
{
|
|
TPrint_section& h = _form->get_section('H', last_page);
|
|
h.find_field(FR_FSC).set(_oldfsc);
|
|
h.find_field(FR_D_FSC).set(cache().get("FSC", _oldfsc).get("S0"));
|
|
print_special_section('H', last_page);
|
|
}
|
|
|
|
void TContixCdc::set_intestazione()
|
|
{
|
|
// scrive l'header first, contenente i dati della ditta e dell'esercizio e le selezioni di stampa
|
|
TPrint_section& h = _form->get_section('H', first_page);
|
|
h.find_field(FR_ESERCIZIO).set(_mask->get(F_ANNO));
|
|
h.find_field(FR_DATAINI).set(_mask->get(F_DATAINI));
|
|
h.find_field(FR_DATAFIN).set(_mask->get(F_DATAFIN));
|
|
h.find_field(FR_DACDC).set(_mask->get(F_DACDC));
|
|
h.find_field(FR_DAFSC).set(_mask->get(F_DAFSC));
|
|
h.find_field(FR_ACDC).set(_mask->get(F_ACDC));
|
|
h.find_field(FR_AFSC).set(_mask->get(F_AFSC));
|
|
_form->set_testata();
|
|
_form->set_pedata();
|
|
}
|
|
|
|
void TContixCdc::print_special_section(char type, pagetype pos)
|
|
{
|
|
TPrint_section& sec = _form->get_section(type, pos);
|
|
sec.update();
|
|
if (sec.height() > printer().rows_left())
|
|
printer().formfeed();
|
|
for (word i = 0; i < sec.height(); i++) // stampa le righe del body
|
|
printer().print(sec.row(i));
|
|
}
|
|
|
|
void TContixCdc::print_body(pagetype pos)
|
|
{
|
|
print_special_section('B', pos);
|
|
}
|
|
|
|
void TContixCdc::set_field(pagetype pos, int id, const real& val)
|
|
{
|
|
TPrint_section& ps = _form->get_section('B', pos);
|
|
ps.find_field(id).set(val.string());
|
|
}
|
|
|
|
void TContixCdc::set_field(pagetype pos, int id, const char* val)
|
|
{
|
|
TPrint_section& ps = _form->get_section('B', pos);
|
|
ps.find_field(id).set(val);
|
|
}
|
|
|
|
void TContixCdc::fill_importo(const TImporto& importo, pagetype pos, short id_imp, short id_sez)
|
|
{
|
|
if (!importo.is_zero())
|
|
{
|
|
TImporto imp(importo);
|
|
imp.normalize();
|
|
set_field(pos, id_imp, imp.valore());
|
|
char sez[2] = { imp.sezione(), '\0' };
|
|
set_field(pos, id_sez, sez);
|
|
}
|
|
else
|
|
{
|
|
set_field(pos, id_imp, "");
|
|
set_field(pos, id_sez, "");
|
|
}
|
|
}
|
|
|
|
void TContixCdc::fill_body(pagetype pos, const TTotali& tot)
|
|
{
|
|
// riempie il body odd, contenente i totali; lo fa chiamando la set_field per ogni campo
|
|
fill_importo(tot._tot_progprec, pos, FR_PROGPREC, FR_SEGNO_PROGPREC);
|
|
fill_importo(tot._tot_periodo, pos, FR_PERIODO, FR_SEGNO_PERIODO);
|
|
|
|
TImporto tempval = tot._tot_progprec; tempval += tot._tot_periodo;
|
|
fill_importo(tempval, pos, FR_PROG, FR_SEGNO_PROG);
|
|
|
|
fill_importo(tot._tot_saldoatt, pos, FR_SALDOATT, FR_SEGNO_SALDOATT);
|
|
}
|
|
|
|
void TContixCdc::aggiorna_totali(const TImporto& importo, const TDate& data)
|
|
{
|
|
if (data < _dataini)
|
|
_t_sottoc._tot_progprec+=importo;
|
|
else if (data <= _datafin)
|
|
_t_sottoc._tot_periodo+=importo;
|
|
_t_sottoc._tot_saldoatt+=importo;
|
|
}
|
|
|
|
void TContixCdc::main_loop()
|
|
{
|
|
_mask->set(F_DETTAGLI, "X"); // Attiva stampa dettagli
|
|
_mask->set(F_TOTCONTI, "X"); // Attiva stampa totali per conto
|
|
_mask->set(F_TOTCMS, "X"); // Attiva stampa totali per commessa
|
|
|
|
while (_mask->run() == K_ENTER)
|
|
{
|
|
_codes = _mask->get_int(F_ANNO); // esercizio
|
|
_dataini = _mask->get_date(F_DATAINI); // data iniziale
|
|
_datafin = _mask->get_date(F_DATAFIN); // data finale
|
|
if (_dataini.empty() && !_mask->field(F_ANNO).empty())
|
|
_dataini = cache().get("ESC", _mask->get(F_ANNO)).get_date("D0");
|
|
if (_datafin.empty() && !_mask->field(F_ANNO).empty())
|
|
_datafin = cache().get("ESC", _mask->get(F_ANNO)).get_date("D1");
|
|
TString80 dacdc = _mask->get(F_DACDC); // cdc/commessa iniziale
|
|
TString80 dafsc = _mask->get(F_DAFSC); // fase iniziale
|
|
TString80 acdc = _mask->get(F_ACDC); // cdc/commessa finale
|
|
TString80 afsc = _mask->get(F_AFSC); // fase finale
|
|
TRelation relrmov(LF_RMOV);
|
|
TString filtro = "";
|
|
if (_codes > 0)
|
|
filtro.format("ANNOES==%d", _codes);
|
|
if (dacdc.not_empty())
|
|
{
|
|
if (filtro.not_empty())
|
|
filtro << " && ";
|
|
filtro << "(CODCMS>=\"" << dacdc << "\")";
|
|
}
|
|
if (dafsc.not_empty())
|
|
{
|
|
if (filtro.not_empty())
|
|
filtro << " && ";
|
|
filtro << "(FASCMS>=\"" << dafsc << "\")";
|
|
}
|
|
if (acdc.not_empty())
|
|
{
|
|
if (filtro.not_empty())
|
|
filtro << " && ";
|
|
filtro << "(CODCMS<=\"" << acdc << "\")";
|
|
}
|
|
if (afsc.not_empty())
|
|
|
|
{
|
|
if (filtro.not_empty())
|
|
filtro << " && ";
|
|
filtro << "(FASCMS<=\"" << afsc << "\")";
|
|
}
|
|
if (filtro.empty())
|
|
filtro.format("(CODCMS!=\"\")");
|
|
else
|
|
if (dacdc.empty() && acdc.empty())
|
|
filtro << " && " << "(CODCMS!=\"\")";
|
|
TRectype darec(LF_RMOV), arec(LF_RMOV);
|
|
darec.put(RMV_GRUPPO, _mask->get_int(F_GRUPPOINI));
|
|
darec.put(RMV_CONTO, _mask->get_int(F_CONTOINI));
|
|
darec.put(RMV_SOTTOCONTO, _mask->get_long(F_SOTTOCINI));
|
|
arec.put(RMV_GRUPPO, _mask->get_int(F_GRUPPOFIN));
|
|
arec.put(RMV_CONTO, _mask->get_int(F_CONTOFIN));
|
|
arec.put(RMV_SOTTOCONTO, _mask->get_long(F_SOTTOCFIN));
|
|
TString ordin = "GRUPPO|CONTO|SOTTOCONTO|DATAREG|NUMREG|NUMRIG";
|
|
bool ctrlfsc = TRUE;
|
|
if (dafsc.empty() && afsc.empty())
|
|
{
|
|
ctrlfsc = FALSE;
|
|
ordin.insert("CODCMS|");
|
|
}
|
|
else
|
|
ordin.insert("CODCMS|FASCMS|");
|
|
TSorted_cursor sortcur (&relrmov, ordin, filtro, 2, &darec, &arec);
|
|
sortcur.setregion(darec,arec);
|
|
sortcur.setfilter(filtro,TRUE);
|
|
long num = sortcur.items();
|
|
sortcur.freeze();
|
|
printer().open();
|
|
set_intestazione();
|
|
TRectype currrec(LF_RMOV);
|
|
_oldcms = "@@";
|
|
_oldfsc = (ctrlfsc) ? "@@" : "";
|
|
_oldsottoc = -1;
|
|
_oldgruppo = -1;
|
|
_oldconto = -1;
|
|
_t_cms.azzera();
|
|
_t_fsc.azzera();
|
|
_t_conto.azzera();
|
|
_t_sottoc.azzera();
|
|
_headercms = TRUE;
|
|
_headerfsc = (ctrlfsc) ? TRUE : FALSE;
|
|
|
|
_saltopagina = _mask->get_bool(F_SALTOPAGINA); // salto pagina a fine commessa
|
|
_stampa_dettagli = _mask->get_bool(F_DETTAGLI);
|
|
_stampa_totconti = _mask->get_bool(F_TOTCONTI);
|
|
_stampa_totcms = _mask->get_bool(F_TOTCMS);
|
|
|
|
for (sortcur=0; sortcur.pos()<num; ++sortcur) //scansione su tutte le righe di movimento
|
|
{
|
|
const TRectype rmovrec = sortcur.curr();
|
|
_currcms = rmovrec.get(RMV_CODCMS);
|
|
_currfsc = (ctrlfsc) ? rmovrec.get(RMV_FASCMS) : "";
|
|
_currsottoc = rmovrec.get_long(RMV_SOTTOCONTO);
|
|
_currgruppo = rmovrec.get_int(RMV_GRUPPO);
|
|
_currconto = rmovrec.get_int(RMV_CONTO);
|
|
TDate datareg = rmovrec.get_date(RMV_DATAREG);
|
|
const TImporto importo(rmovrec.get_char(RMV_SEZIONE), rmovrec.get_real(RMV_IMPORTO));
|
|
if ((_oldcms != _currcms) || (_oldfsc != _currfsc) || (_oldgruppo != _currgruppo) || (_oldconto != _currconto) || (_oldsottoc != _currsottoc))
|
|
{
|
|
print_sottoc();
|
|
if ((_oldcms != _currcms) || (_oldfsc != _currfsc) || (_oldgruppo != _currgruppo) || (_oldconto != _currconto) )
|
|
{
|
|
print_footer_gruppo();
|
|
if ((_oldcms != _currcms) || (_oldfsc != _currfsc))
|
|
{
|
|
if (ctrlfsc)
|
|
print_footer_fsc();
|
|
if (_oldcms != _currcms)
|
|
print_footer_cms();
|
|
}
|
|
}
|
|
}
|
|
aggiorna_totali(importo, datareg);
|
|
}
|
|
if (num > 0)
|
|
{
|
|
print_sottoc();
|
|
print_footer_gruppo();
|
|
if (ctrlfsc)
|
|
print_footer_fsc();
|
|
print_footer_cms();
|
|
printer().formfeed();
|
|
}
|
|
printer().close();
|
|
}
|
|
}
|
|
|
|
int cm0100(int argc, char* argv[])
|
|
{
|
|
TContixCdc a;
|
|
a.run(argc,argv,TR("Stampa conti per CDC/Commessa"));
|
|
return 0;
|
|
} |