campo-sirio/cg/cg3700.cpp
alex 22adfa73ba Patch level :
Files correlati     :
Ricompilazione Demo : [ ]
Commento            : Riportata la versione 98.01.03pl015


git-svn-id: svn://10.65.10.50/trunk@6582 c028cbd2-c16b-5b4b-a496-9718f37d4682
1998-04-30 15:59:34 +00:00

873 lines
24 KiB
C++
Executable File

//
//Lista fatture:
// CG3 -6 I ==> Lista fatture con iva indetrabile
// CG3 -6 C ==> Lista fatture per tipo costo/ricavo
// CG3 -6 N ==> Lista fatture intracomunitarie
//
#include <printapp.h>
#include <tabutil.h>
#include <mask.h>
#include <sheet.h>
#include <urldefid.h>
#include <prefix.h>
#include "cg3.h"
#include "cg3700a.h"
#include <nditte.h>
#include <causali.h>
#include <clifo.h>
#include <mov.h>
#include <rmoviva.h>
class _Iva_item : public TObject
{
real _impv,_ivav,_impa,_ivaa;
public:
real& impv() { return _impv;} // Imponibile ven.
real& ivav() { return _ivav;} // Iva ven.
real& impa() { return _impa;} // Imponibile acq.
real& ivaa() { return _ivaa;} // Iva acq.
void zero(){ _impv = 0.0; _ivav = 0.0; _impa = 0.0; _ivaa = 0.0; }
virtual TObject* dup() const { return new _Iva_item(*this); }
_Iva_item() { zero(); }
~_Iva_item() {};
};
// Tipo di stampa
enum tipo_st
{
indetraibile,
costo_ricavo,
intra
};
class TLista_fatture : public TPrintapp
{
TLocalisamfile *_nditte; // File delle ditte
TTable *_reg,
*_iva;
TRelation* _rel; // Relazione principale
int _cur1,
_cur2,
_cur3; // Cursori della TPrintapp
int _tipodetprec,
_tipocrprec; // Variabili per sapere quando stampare i totali parz.
long _numregprec; // Per la stampa di piu' righe di uno stesso documento
tipo_st _tipo; // Tipo di stampa
TArray_sheet* _ditte; // Sheet di selezione ditte
TAssoc_array _intra_items;// Array ordinato (per codice IVA) dei totali per fatture INTRA
long _from_cf, // Estremi selezione clienti/fornitori
_to_cf;
TString _from_reg, // Estremi selezione registri
_to_reg,
_from_cau, // Estremi selezione causali
_to_cau;
TPrintrow _pr;
TString _ragsoc;
TDate _date_from,
_date_to; // Estremi data
real _tot_doc, //Non ha senso tenere il totale documenti visto che la stampa rappresenta le righe:
//infatti uno stesso documento puo' comparire per piu' tipi indetraibilita' o tipi costo/ricavo diversi
_tot_imp,
_tot_iva, // Totali complessivi della stampa
_tp_doc,
_tp_imp,
_tp_iva; // Totali parziali della stampa
bool _one_printed,
_print_all; // Flags per il controllo della stampa totali/parziali e righe multiple
static bool filter_func1(const TRelation *); // Funzione di filtro per cursore 1
static bool filter_func2(const TRelation *); // Funzione di filtro per cursore 3
protected:
long select_firm_range(long from, long to);
int tiporeg(const TString& );
static bool mix_handler(TMask_field&, KEY);
static bool date_handler(TMask_field&, KEY);
static bool to_ditt_handler(TMask_field&, KEY);
static bool fr_ditt_handler(TMask_field&, KEY);
static bool select_button(TMask_field&, KEY);
static bool reset_button(TMask_field&, KEY);
void reset_choices(TMask&);
void set_choice_limits(TMask&);
void build_ditte_sheet();
virtual bool preprocess_page(int,int);
virtual bool preprocess_print(int,int) { repeat_print(); return TRUE;} // Per stampare tutte le ditte in un unico botto
virtual print_action postprocess_page(int,int) {return NEXT_PAGE;}
virtual print_action postprocess_print(int,int);
void set_the_header();
virtual void set_page(int,int);
virtual bool set_print(int);
public:
virtual bool user_create();
virtual bool user_destroy();
TArray_sheet* get_ditte_sheet() { return _ditte; }
TLista_fatture() : _ditte(NULL) {}
virtual ~TLista_fatture() {}
};
inline TLista_fatture& app() { return (TLista_fatture&) main_app(); }
int TLista_fatture::tiporeg(const TString& reg)
{
TString s(12); s << _date_from.year(); s.format("%4d%-3s",_date_from.year(),(const char*)reg);
_reg->put("CODTAB",s);
if (_reg->read() == NOERR)
return _reg->get_int("I0");
return 0;
}
bool TLista_fatture::filter_func1(const TRelation *r)
{
TLocalisamfile& cau = r->lfile(LF_CAUSALI);
TLocalisamfile& mov = r->lfile(LF_MOV);
TLocalisamfile& riv = r->lfile();
TDate& from_d = app()._date_from;
TDate& to_d = app()._date_to;
TString& from_reg = app()._from_reg;
TString& to_reg = app()._to_reg;
long& from_cf = app()._from_cf;
long& to_cf = app()._to_cf;
TString rg = mov.get(MOV_REG);
TDate data = mov.get_date(MOV_DATAREG);
if (data < from_d || data > to_d)
return FALSE;
if (rg < from_reg || rg > to_reg)
return FALSE;
const long cod = mov.get_long(MOV_CODCF);
const int tiporeg = app().tiporeg(rg);
if (app()._tipo == indetraibile)
{
if (riv.get_int(RMI_TIPODET) == 0)
return FALSE;
if (tiporeg == 2 && cod >= from_cf && cod <= to_cf)
return TRUE;
}
else // Tipo costo/ricavo
{
if (riv.get_int(RMI_TIPOCR) == 0)
return FALSE;
if (cod >= from_cf && cod <= to_cf)
return TRUE;
}
return FALSE;
}
bool TLista_fatture::filter_func2(const TRelation *r)
{
TString& from_cau = app()._from_cau;
TString& to_cau = app()._to_cau;
TDate& from_d = app()._date_from;
TDate& to_d = app()._date_to;
TLocalisamfile& mov = r->lfile(LF_MOV);
TString cau = mov.get(MOV_CODCAUS);
TDate data = mov.get_date(MOV_DATAREG);
if (data < from_d || data > to_d)
return FALSE;
const bool is_intra = r->lfile().get_bool(RMI_INTRA);
if (cau >= from_cau && cau <= to_cau && is_intra)
return TRUE;
return FALSE;
}
bool TLista_fatture::date_handler(TMask_field& f, KEY key)
{
if (key == K_ENTER && f.empty())
{
if (f.dlg() == FLD_DATE_FROM)
return f.error_box("La data di inizio e' obbligatoria.");
else
return f.error_box("La data di fine e' obbligatoria.");
}
if ((key == K_TAB && f.focusdirty()) || key == K_ENTER)
{
TMask& m = f.mask();
TDate da(m.get_date(FLD_DATE_FROM));
TDate a(m.get_date(FLD_DATE_TO));
if (a.ok() && da.ok()) // Solo se sono entrambi compilati
{
if (da > a)
return f.error_box("La data di fine deve essere maggiore della data di inizio.");
if (da.year() != a.year())
return f.error_box("Le date devono appartenere allo stesso anno.");
}
}
return TRUE;
}
bool TLista_fatture::mix_handler(TMask_field& f, KEY key)
{
if (f.to_check(key))
{
TMask& m = f.mask();
short dlg1 = f.dlg();
short dlg2;
if (dlg1 == FLD_TO_FOR)
dlg2 = FLD_FROM_FOR;
else
if (dlg1 == FLD_TO_REG)
dlg2 = FLD_FROM_REG;
else
dlg2 = FLD_FROM_CAU;
if (dlg1 == FLD_TO_FOR)
{
const long l1 = m.get_long(dlg1);
const long l2 = m.get_long(dlg2);
if (l1 != 0L && l2 != 0L && l1 < l2)
return f.error_box("Intervallo clienti/fornitori errato.");
return TRUE;
}
const TString msg(dlg1 == FLD_TO_REG ? "Intervallo registri errato." : "Intervallo causali errato.");
const TString s1(m.get(dlg1));
const TString s2(m.get(dlg2));
if (s1.not_empty() && s2.not_empty() && s1 < s2)
return f.error_box(msg);
return TRUE;
}
return TRUE;
}
bool TLista_fatture::to_ditt_handler(TMask_field& f, KEY key)
{
TMask& m = f.mask();
if (key == K_F9)
{
TArray_sheet* sh = app().get_ditte_sheet();
TMask& m = f.mask();
sh->disable_check();
sh->disable(DLG_USER);
if (sh->run() == K_ENTER)
{
app().select_firm_range(m.get_long(FLD_DFR),sh->row(sh->selected()).get_long(1));
app().set_choice_limits(m);
}
sh->enable(DLG_USER);
}
if (key == K_TAB && f.focusdirty())
{
app().select_firm_range(m.get_long(FLD_DFR), m.get_long(FLD_DTO));
app().set_choice_limits(m);
}
return TRUE;
}
bool TLista_fatture::fr_ditt_handler(TMask_field& f, KEY key)
{
TMask& m = f.mask();
if (key == K_F9)
{
TMask& m = f.mask();
TArray_sheet* sh = app().get_ditte_sheet();
sh->disable_check();
sh->disable(DLG_USER);
if (sh->run() == K_ENTER)
{
app().select_firm_range(sh->row(sh->selected()).get_long(1), m.get_long(FLD_DTO));
app().set_choice_limits(m);
}
sh->enable(DLG_USER);
}
else if (key == K_TAB && f.focusdirty())
{
app().select_firm_range(m.get_long(FLD_DFR), m.get_long(FLD_DTO));
app().set_choice_limits(m);
}
return TRUE;
}
long TLista_fatture::select_firm_range(long from, long to)
{
if (to == 0l) to = 99999L;
for (int i = 0; i < _ditte->items(); i++)
{
if (_ditte->row_disabled(i))
continue;
TToken_string& d = _ditte->row(i);
const long cod = d.get_long(1);
if (cod >= from && cod <= to)
_ditte->check(i);
else
_ditte->uncheck(i);
}
return _ditte->checked();
}
bool TLista_fatture::select_button(TMask_field& f, KEY key)
{
if (key == K_SPACE)
{
app()._ditte->enable_check();
if (app()._ditte->run() == K_ENTER)
app().set_choice_limits(f.mask());
}
return TRUE;
}
bool TLista_fatture::reset_button(TMask_field& f, KEY key)
{
if (key == K_SPACE)
app().reset_choices(f.mask());
return TRUE;
}
void TLista_fatture::reset_choices(TMask& m)
{
m.reset(FLD_SELECTED);
m.reset(FLD_DFR);
m.reset(FLD_DTO);
m.disable(DLG_PRINT);
_ditte->check(-1, FALSE);
}
void TLista_fatture::set_choice_limits(TMask& m)
{
long first = -1l, last = -1l;
const long items = _ditte->items();
for (int i = 0; i < items; i++)
{
if (_ditte->checked(i))
{
const long dit = _ditte->row(i).get_long(1);
if (first == -1l) first = dit;
if (last < dit) last = dit;
}
}
if (first != -1)
m.set(FLD_DFR, first);
//else
// m.reset(FLD_DFR);
if (last != -1)
m.set(FLD_DTO, last);
//else
// m.reset(FLD_DFR);
const long checked = _ditte->checked();
m.enable(DLG_PRINT,checked > 0);
m.set(FLD_SELECTED, checked);
}
void TLista_fatture::build_ditte_sheet()
{
_ditte->destroy();
for (_nditte->first(); _nditte->good(); _nditte->next())
{
TToken_string* d = new TToken_string(64);
d->add(" ");
const long n = _nditte->get_long(NDT_CODDITTA);
d->add(n);
d->add(_nditte->get(NDT_RAGSOC));
const bool unselectable = !prefix().exist(n);
const long pos = _ditte->add(d);
if (unselectable)
_ditte->disable_row(pos);
else
_ditte->enable_row(pos);
}
}
bool TLista_fatture::preprocess_page(int file, int counter)
{
TCursor* curs = current_cursor();
TRectype& rec = curs->curr();
_ragsoc = curs->curr(LF_CLIFO).get(CLI_RAGSOC);
_ragsoc.strip_d_spaces();
const int tipodet = rec.get_int(RMI_TIPODET);
const int tipocr = rec.get_int(RMI_TIPOCR);
const long numreg = rec.get_long(RMI_NUMREG);
if (_tipodetprec == -1) _tipodetprec = tipodet;
if (_tipocrprec == -1) _tipocrprec = tipocr;
const bool new_det = (_tipo == indetraibile && tipodet != _tipodetprec);
const bool new_cr = (_tipo == costo_ricavo && tipocr != _tipocrprec);
if (new_det || new_cr) // Stampa totali parziali
{
const bool is_cr = _tipo == costo_ricavo;
TString s("TOTALE TIPO ");
_pr.reset();
_pr.set_style(boldstyle);
s << (is_cr ? "COSTO/RICAVO " : "INDETRAIBILITA' ");
s << (is_cr ? _tipocrprec : _tipodetprec);
_pr.put(s,42);
if (_tp_doc != 0.0)
_pr.put(_tp_doc.string("###.###.###.###"),73);
if (_tp_imp != 0.0)
_pr.put(_tp_imp.string("###.###.###.###"),89);
if (_tp_iva != 0.0)
_pr.put(_tp_iva.string("#.###.###.###"),112);
printer().print(_pr);
_pr.reset();
printer().print(_pr);
_tipodetprec = tipodet;
_tipocrprec = tipocr;
_tp_doc = 0.0; _tp_imp = 0.0; _tp_iva = 0.0;
}
real doc = curs->curr(LF_MOV).get_real(MOV_TOTDOC);
real imp = rec.get_real(RMI_IMPONIBILE);
real iva = rec.get_real(RMI_IMPOSTA);
if (_tipo == intra)
{
TString16 codiva = rec.get(RMI_CODIVA);
const int tipomov = tiporeg(curs->curr(LF_MOV).get(MOV_REG));
if (tipomov == 2 && tipodet == 9)
codiva = "~A19"; // Speciale per acquisti indeducibili art. 19
const bool is_key = _intra_items.is_key(codiva); // Esiste l'elemento ?
// Se si' allora prendi quello, altrimenti prendine uno nuovo
_Iva_item newiva;
_Iva_item& xiva = (is_key ? (_Iva_item&) _intra_items[codiva] : newiva);
// Somma imponibile/imposta per vendite/acquisti
if (tipomov == 1) //vendite
{
xiva.impv() += imp;
xiva.ivav() += iva;
}
else // acquisti
{
xiva.impa() += imp;
xiva.ivaa() += iva;
}
_intra_items.add(codiva,xiva,is_key);
}
else
{
_tot_imp += imp;
_tot_iva += iva;
_tp_imp += imp;
_tp_iva += iva;
}
const bool same_reg = numreg == _numregprec;
if (same_reg && !new_det && !new_cr) // Se sta stampando un'altra riga di uno stesso documento,
{ // cambia il formato di stampa delle righe
_print_all = FALSE;
reset_print();
set_page(0,0); // Ignore parameters passed
}
else
{
if (_tipo != intra)
{
_tot_doc += doc;
_tp_doc += doc;
}
_print_all = TRUE;
reset_print();
set_page(0,0); // Ignore parameters passed
}
_numregprec = numreg;
if (!_one_printed)
_one_printed = TRUE;
return TRUE;
}
print_action TLista_fatture::postprocess_print(int file, int counter)
{
TPrinter& p = printer();
if (_one_printed)
if (_tipo != intra)
{
const bool is_cr = _tipo == costo_ricavo;
TString s("TOTALE TIPO ");
_pr.reset();
_pr.set_style(boldstyle);
s << (is_cr ? "COSTO/RICAVO " : "INDETRAIBILITA' ");
s << (is_cr ? _tipocrprec : _tipodetprec);
_pr.put(s,42);
if (_tp_doc != 0.0)
_pr.put(_tp_doc.string("###.###.###.###"),73);
if (_tp_imp != 0.0)
_pr.put(_tp_imp.string("###.###.###.###"),89);
if (_tp_iva != 0.0)
_pr.put(_tp_iva.string("#.###.###.###"),112);
p.print(_pr);
_pr.reset();
p.print(_pr);
p.print(_pr);
_pr.set_style(boldstyle);
_pr.put("TOTALE GENERALE :",42);
if (_tot_doc != 0.0)
_pr.put(_tot_doc.string("###.###.###.###"),73);
if (_tot_imp != 0.0)
_pr.put(_tot_imp.string("###.###.###.###"),89);
if (_tot_iva != 0.0)
_pr.put(_tot_iva.string("#.###.###.###"),112);
p.print(_pr);
}
else
{
// Stampa gli elementi di _intra_items
real tot1,tot2,tot3,tot4;
TString16 cod;
TString des;
_Iva_item * xiva; // Scorre gli elementi memorizzati
_pr.reset();
for (int i=0; i<3; i++)
p.print(_pr);
_pr.put("Cod.@57gVENDITE@92gACQUISTI",1);
p.print(_pr);
_pr.reset();
_pr.put("IVA Descrizione@45gImponibile@66gImposta@82gImponibile@101gImposta",1);
p.print(_pr);
_pr.reset();
p.print(_pr);
for (xiva = (_Iva_item *) _intra_items.first_item(); xiva != NULL; xiva = (_Iva_item*)_intra_items.succ_item())
{
real& r1 = xiva->impv();
real& r2 = xiva->ivav();
real& r3 = xiva->impa();
real& r4 = xiva->ivaa();
cod = _intra_items.get_hashobj()->key();
if (cod == "~A19")
{
p.print(_pr);
_pr.put("Totale ",1);
if (tot1 != 0.0)
_pr.put(tot1.string("###.###.###.###"),40);
if (tot2 != 0.0)
_pr.put(tot2.string("###.###.###.###"),58);
if (tot3 != 0.0)
_pr.put(tot3.string("###.###.###.###"),77);
if (tot4 != 0.0)
_pr.put(tot4.string("###.###.###.###"),93);
p.print(_pr);
_pr.reset();
p.print(_pr);
des = "Totale acquisti indeducibili per ART.19";
_pr.put(des,1);
}
else
{
_iva->put("CODTAB",cod);
if (_iva->read() == NOERR)
des = _iva->get("S0");
else
des = "";
_pr.put(cod,1);
_pr.put(des,6);
}
if (r1 != 0.0)
_pr.put(r1.string("###.###.###.###"),40);
if (r2 != 0.0)
_pr.put(r2.string("###.###.###.###"),58);
if (r3 != 0.0)
_pr.put(r3.string("###.###.###.###"),77);
if (r4 != 0.0)
_pr.put(r4.string("###.###.###.###"),93);
tot1 += r1;
tot2 += r2;
tot3 += r3;
tot4 += r4;
p.print(_pr);
_pr.reset();
}
p.print(_pr);
_pr.put("Totale Generale IVA",1);
if (tot1 != 0.0)
_pr.put(tot1.string("###.###.###.###"),40);
if (tot2 != 0.0)
_pr.put(tot2.string("###.###.###.###"),58);
if (tot3 != 0.0)
_pr.put(tot3.string("###.###.###.###"),77);
if (tot4 != 0.0)
_pr.put(tot4.string("###.###.###.###"),93);
p.print(_pr);
}
return NEXT_PAGE;
}
void TLista_fatture::set_the_header()
{
int soh = 1;
const long firm = get_firm();
reset_header ();
_nditte->zero();
_nditte->put(NDT_CODDITTA, firm);
_nditte->read();
if (_nditte->bad()) _nditte->zero();
TDate today(TODAY);
TString rw(132);
TString s,s1,s2;
s = _nditte->get(NDT_RAGSOC);
s1 = _date_from.string();
s2 = _date_to.string();
char c[2]={'N','D'};
set_header (soh++, "Ditta : %ld %s@100gData@106g%s @123gPag. @#",
firm, (const char *)s, (const char *)today);
s.format("Dalla data %s Alla data %s",(const char*)s1,(const char*)s2);
if (_tipo == indetraibile || _tipo == costo_ricavo)
{
s << "@45g Dal fornitore ";
if (_from_cf == 0L && _to_cf == 999999L)
s << " Al fornitore";
else
{
s << _from_cf;
s << " Al fornitore ";
s << _to_cf;
}
s << "@94g Dal registro ";
if (_from_reg.empty() && _to_reg == "~~~")
s << " Al registro";
else
{
s << _from_reg;
s << " Al registro ";
s << _to_reg;
}
if (_tipo == costo_ricavo)
{
set_header(soh++,"@50gLISTA FATTURE PER TIPO COSTO/RICAVO");
strncpy(c,"CR",2);
}
else
set_header(soh++,"@50gLISTA FATTURE CON IVA INDETRAIBILE");
}
else
{
set_header(soh++,"@50gLISTA FATTURE INTRACOMUNITARIE");
s << "@45g Dal c. causale ";
if (_from_cau.empty() && _to_cau == "~~~")
s << " Al c. causale";
else
{
s << _from_cau;
s << " Al codice causale ";
s << _to_cau;
}
}
set_header(soh++,s);
rw.fill('-');
set_header(soh++, (const char *) rw);
set_header(soh++, "@12gNum@21gDocumento@63gCod.@68gM@70gTipo@106gCod@110g%c@128gNum.",c[0]);
set_header(soh++, "Data reg.@12gprot.@18gData@30gNumero@37gCodice@44gRagione sociale@63gReg.@68gL@70gDoc."
"@75gTot.documento@94gImponibile@106gIva@110g%c@118gImposta@128gReg.",c[1]);
set_header(soh++, (const char *) rw);
set_header(soh,"");
}
void TLista_fatture::set_page(int file, int counter)
{
int nriga=1;
const bool cr = _tipo == costo_ricavo;
set_the_header();
if (_print_all)
{
set_row(nriga,"@ld@12g@5,rs@18g@ld@29g@7,rs",FLD(LF_MOV,MOV_DATAREG),FLD(LF_MOV,MOV_PROTIVA),
FLD(LF_MOV,MOV_DATADOC),FLD(LF_MOV,MOV_NUMDOC));
set_row(nriga,"@37g@6,rn@44g#-18t@63g@3s@67g@2,rn",FLD(LF_MOV,MOV_CODCF),&_ragsoc,FLD(LF_MOV,MOV_REG), FLD(LF_MOV,MOV_MESELIQ));
set_row(nriga,"@70g@2s@73g@15n",FLD(LF_MOV,MOV_TIPODOC),FLD(LF_MOV,MOV_TOTDOC));
set_row(nriga,"@125g@7,rn",FLD(LF_MOV,MOV_NUMREG));
}
set_row(nriga,"@89g@15n@105g@4,rs",FLD(LF_RMOVIVA,RMI_IMPONIBILE),FLD(LF_RMOVIVA,RMI_CODIVA));
set_row(nriga,"@110g@1s",FLD(LF_RMOVIVA, cr ? RMI_TIPOCR : RMI_TIPODET));
set_row(nriga,"@112g@13pn",FLD(LF_RMOVIVA,RMI_IMPOSTA,"#.###.###.###"));
}
bool TLista_fatture::set_print(int m)
{
TMask msk("cg3700a");
msk.set_handler(FLD_DATE_FROM, date_handler);
msk.set_handler(FLD_DATE_TO, date_handler);
msk.set_handler(FLD_FROM_FOR, mix_handler);
msk.set_handler(FLD_TO_FOR, mix_handler);
msk.set_handler(FLD_FROM_REG, mix_handler);
msk.set_handler(FLD_TO_REG, mix_handler);
msk.set_handler(FLD_FROM_CAU, mix_handler);
msk.set_handler(FLD_TO_CAU, mix_handler);
msk.set_handler(FLD_DTO, to_ditt_handler);
msk.set_handler(FLD_DFR, fr_ditt_handler);
msk.set_handler(BUT_SEL, select_button);
msk.set_handler(BUT_ANN, reset_button);
add_file(LF_RMOVIVA);
set_real_picture("###.###.###.###");
switch (_tipo)
{
case costo_ricavo:
msk.set_caption("Lista fatture per costo/ricavo");
msk.field(FLD_FROM_FOR).set_prompt("Da cli./for. ");
msk.field(FLD_TO_FOR).set_prompt("A cli./for. ");
break;
case intra:
msk.set_caption("Lista fatture intracomunitarie");
msk.hide(-1);
msk.show(-2);
break;
default:
break;
}
KEY k;
do
{
k = msk.run();
if (k == K_ENTER)
{
_from_cf = msk.get_long(FLD_FROM_FOR);
_to_cf = msk.get_long(FLD_TO_FOR);
if (_to_cf == 0L)
_to_cf = 999999L;
_from_reg = msk.get(FLD_FROM_REG);
_to_reg = msk.get(FLD_TO_REG);
if (_to_reg.empty())
_to_reg = "~~~";
_from_cau = msk.get(FLD_FROM_CAU);
_to_cau = msk.get(FLD_TO_CAU);
if (_to_cau.empty())
_to_cau = "~~~";
_date_from = msk.get_date(FLD_DATE_FROM);
_date_to = msk.get_date(FLD_DATE_TO);
int cur; // Seleziona il cursore corrente
switch (_tipo)
{
case costo_ricavo:
cur = _cur2;
break;
case intra:
cur = _cur3;
break;
default:
cur = _cur1;
break;
}
select_cursor(cur);
// Cosi' forza la costruzione del cursore ad ogni inizio di stampa
get_cursor(_cur1)->set_filterfunction(filter_func1,TRUE); // Cursore 1
get_cursor(_cur2)->set_filterfunction(filter_func1,TRUE); // Cursore 2
get_cursor(_cur3)->set_filterfunction(filter_func2,TRUE); // Cursore 3
// Salva la ditta corrente
TPrefix& pref = prefix();
const long save_firm = pref.get_codditta();
// Ciclo sulle ditte slezionate
const long items = _ditte->items();
printer().open();
for (int i = 0; i < items; i++)
{
if (_ditte->checked(i))
{
_tipocrprec = -1;
_tipodetprec = -1;
_numregprec = -1L;
_tot_doc = 0.0;
_tot_imp = 0.0; _tot_iva = 0.0;
_tp_doc = 0.0; _tp_imp = 0.0; _tp_iva = 0.0;
_one_printed = FALSE; _print_all = TRUE;
pref.set_codditta(_ditte->row(i).get_long(1));
if (get_cursor(cur)->items() > 0)
{
if (_tipo == intra)
_intra_items.destroy(); // Azzera l'array dei totali per fatture intra
print();
}
}
}
if (printer().isopen())
printer().close();
// Ripristina la ditta
pref.set_codditta(save_firm);
}
} while (k==K_ENTER);
return FALSE;
}
bool TLista_fatture::user_create()
{
_tipo = indetraibile;
const int argc = TApplication::argc();
if (argc > 2)
{
const char c = argv(2)[0];
switch (c)
{
case 'C': _tipo = costo_ricavo;
break;
case 'N': _tipo = intra;
break;
default:
break;
}
}
_ditte = new TArray_sheet(-1, -1, -4, -4, "Selezione Ditte",
"@1|Cod.@5R|Ragione Sociale@50");
_nditte = new TLocalisamfile(LF_NDITTE);
_reg = new TTable("REG");
_iva = new TTable("%IVA");
_rel = new TRelation(LF_RMOVIVA);
_rel->add(LF_MOV,"NUMREG==NUMREG");
_rel->add(LF_CAUSALI,"CODCAUS==CODCAUS",1,LF_MOV); // Relazione
_rel->add(LF_CLIFO,"TIPOCF==TIPO|CODCF==CODCF",1,LF_MOV);
_cur1 = add_cursor(new TSorted_cursor(_rel,"TIPODET|23->DATAREG|NUMREG")); // Cursore valido per lista fatture con iva indetraibile
_cur2 = add_cursor(new TSorted_cursor(_rel,"TIPOCR|23->DATAREG|NUMREG")); // Cursore valido per lista fatture per tipo costo/ricavo
_cur3 = add_cursor(new TCursor(_rel)); // Cursore valido per lista fatture intracomunitarie
build_ditte_sheet();
return TRUE;
}
bool TLista_fatture::user_destroy()
{
if (_nditte) delete _nditte;
if (_ditte) delete _ditte;
if (_rel) delete _rel;
if (_reg) delete _reg;
if (_iva) delete _iva;
return TRUE;
}
///////////////////////////////////////////////////////////
// Main
///////////////////////////////////////////////////////////
int cg3700(int argc, char* argv[])
{
TLista_fatture lf;
lf.run(argc, argv, "Lista fatture");
return 0;
}