#include #include #include #include #include #include #include "cm0.h" #include "cm0100a.h" #include "cm0100.h" #include "rmov.h" #include "pconti.h" class TForm_contixcdc : public TForm { public: virtual bool validate(TForm_item &cf, TToken_string &s); void set_testata() {set_header(1,TRUE);} TPrint_section& get_body() {return section('B', odd_page);} TPrint_section& get_section(char s, pagetype pos) {return section(s, pos);} TForm_contixcdc(); virtual ~TForm_contixcdc(); }; TForm_contixcdc::TForm_contixcdc() :TForm("cm0100a") //costruttore { } TForm_contixcdc::~TForm_contixcdc() //distruttore { } 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,{|} // dove: è un riferimento alla relazione di gestione dei dati della ditta (es. 113@->DENCOM è la denominazione del comune di residenza della ditta) // è 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 // nota: la relazione della ditta è così strutturata: // %NDITTE (9) Dati ditte // + %ANAGR (6) Anagrafica generale (indirizzo, ecc.) // + %COMUNI (113@) Comune di residenza // + %COMUNI (213@) Comune di residenza fiscale TLocalisamfile firm(LF_NDITTE); TLocalisamfile anag(LF_ANAG); firm.put("CODDITTA",main_app().get_firm()); firm.read(); anag.put("TIPOA",firm.get("TIPOA")); anag.put("CODANAGR",firm.get("CODANAGR")); anag.read(); TString in(s.get()); if (in[0]!='!') { cf.set(firm.curr().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 } 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(field(F_DATAINI).get()); if (dataini.ok()) { TDate datainies = cache().get("ESC", field(F_ANNO).get(), "D0"); if (dataini < datainies && datainies.ok()) return error_box("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(field(F_DATAFIN).get()); if (datafin.ok()) { TDate datafines = cache().get("ESC", field(F_ANNO).get(), "D1"); if (datafin > datafines && datafines.ok()) return error_box("La data finale non può essere successiva alla data fine esercizio %s", (const char*) datafines.string()); TDate dataini(field(F_DATAINI).get()); if (dataini > datafin) return error_box("La data iniziale non può essere successiva alla data finale"); } } 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_gruppo, _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; 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_body(const TTotali& tot); //riempie il campo body con tutti i totali void print_body(); //stampa effettivamente il body void set_field(int id, const real& val); //mette in un campo del body odd un valore numerico void set_field(int id, const char* val); //mette in un campo del body odd una stringa void print_specialsection(char s, pagetype pos); // stampa una sezione qualunque ( void aggiorna_totali(const TImporto importo, const TDate data); public: TContixCdc() {} }; bool TContixCdc::create() { _mask = new TContixcdc_mask; _form = new TForm_contixcdc; open_files(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(FR_GRUPPO, _oldgruppo); set_field(FR_CONTO, _oldconto); set_field(FR_SOTTOC, _oldsottoc); set_field(FR_D_SOTTOC, pcon.get(PCN_DESCR)); fill_body(_t_sottoc); print_body(); _t_gruppo += _t_sottoc; _t_fsc += _t_sottoc; _t_cms += _t_sottoc; } _oldsottoc = _currsottoc; _t_sottoc.azzera(); } void TContixCdc::print_footer_gruppo() { if (!_t_gruppo._tot_periodo.is_zero()) { TString16 key; key.format("%d|%d", _oldgruppo, _oldconto); TString tmp; const TRectype& pcon = cache().get(LF_PCON, key); tmp.format("TOTALE %d %d %s", _oldgruppo, _oldconto, (const char*) pcon.get(PCN_DESCR)); set_field(FR_GRUPPO, ""); set_field(FR_CONTO, ""); set_field(FR_SOTTOC, ""); set_field(FR_D_SOTTOC, tmp); fill_body(_t_gruppo); print_body(); } _oldgruppo = _currgruppo; _oldconto = _currconto; _t_gruppo.azzera(); } void TContixCdc::print_footer_cms() { if (!_t_cms._tot_periodo.is_zero()) { TString tmp; tmp.format("TOTALE COMMESSA %s", (const char*) _oldcms); set_field(FR_D_SOTTOC, tmp); fill_body(_t_cms); print_body(); 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("TOTALE FASE %s", (const char*) _oldfsc); set_field(FR_D_SOTTOC, tmp); fill_body(_t_fsc); print_body(); } _oldfsc = _currfsc; _t_fsc.azzera(); _headerfsc = TRUE; } void TContixCdc::print_header_cms() { _form->find_field('H', odd_page, FR_CMS).set(_oldcms); _form->find_field('H', odd_page, FR_D_CMS).set(cache().get("CMS", _oldcms).get("S0")); print_specialsection('H', odd_page); } void TContixCdc::print_header_fsc() { _form->find_field('H', last_page, FR_FSC).set(_oldfsc); _form->find_field('H', last_page, FR_D_FSC).set(cache().get("FSC", _oldfsc).get("S0")); print_specialsection('H', last_page); } void TContixCdc::set_intestazione() { // scrive l'header first, contenente i dati della ditta e dell'esercizio e le selezioni di stampa _form->find_field('H', first_page, FR_ESERCIZIO).set(_mask->get(F_ANNO)); _form->find_field('H', first_page, FR_DATAINI).set(_mask->get(F_DATAINI)); _form->find_field('H', first_page, FR_DATAFIN).set(_mask->get(F_DATAFIN)); _form->find_field('H', first_page, FR_DACDC).set(_mask->get(F_DACDC)); _form->find_field('H', first_page, FR_DAFSC).set(_mask->get(F_DAFSC)); _form->find_field('H', first_page, FR_ACDC).set(_mask->get(F_ACDC)); _form->find_field('H', first_page, FR_AFSC).set(_mask->get(F_AFSC)); _form->set_testata(); } void TContixCdc::print_body() { TPrint_section& body = _form->get_body(); body.update(); if (body.height() > printer().rows_left()) printer().formfeed(); for (word i = 0; i < body.height(); i++) // stampa le righe del body printer().print(body.row(i)); } void TContixCdc::print_specialsection(char s, pagetype pos) { TPrint_section& sec = _form->get_section(s, 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::set_field(int id, const real& val) { _form->find_field('B', odd_page, id).set(val.string()); } void TContixCdc::set_field(int id, const char* val) { _form->find_field('B', odd_page, id).set(val); } void TContixCdc::fill_body(const TTotali& tot) { // riempie il body odd, contenente i totali; lo fa chiamando la set_field per ogni campo set_field(FR_PROGPREC, tot._tot_progprec.valore()); set_field(FR_PERIODO, tot._tot_periodo.valore()); real tempval1 = tot._tot_progprec.valore()+tot._tot_periodo.valore(); set_field(FR_PROG, tempval1); set_field(FR_SALDOATT, tot._tot_saldoatt.valore()); } 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() { while (_mask->run() == K_ENTER) { _saltopagina = _mask->get_bool(F_SALTOPAGINA); // salto pagina a fine commessa _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()) _dataini = cache().get("ESC", _mask->get(F_ANNO)).get_date("D0"); if (_datafin.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.zero(); arec.zero(); 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_gruppo.azzera(); _t_sottoc.azzera(); _headercms = TRUE; _headerfsc = (ctrlfsc) ? TRUE : FALSE; for (sortcur=0; sortcur.pos() 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,"Stampa conti per CDC/Commessa"); return 0; }