Files correlati :cm1.exe,cm1100a.frm,cm1100a.msk Ricompilazione Demo : [ ] Commento :aggiunto filtro x fornitore e tipologia di ordinamento nella stampa pagato git-svn-id: svn://10.65.10.50/trunk@11765 c028cbd2-c16b-5b4b-a496-9718f37d4682
863 lines
21 KiB
C++
Executable File
863 lines
21 KiB
C++
Executable File
#include <applicat.h>
|
|
#include <automask.h>
|
|
#include <form.h>
|
|
#include <printer.h>
|
|
#include <progind.h>
|
|
|
|
#include <mov.h>
|
|
#include <partite.h>
|
|
#include <rmov.h>
|
|
#include <rmoviva.h>
|
|
|
|
#include "..\cg\cgsaldac.h"
|
|
#include "..\ve\velib.h"
|
|
|
|
#include "cm1100a.h"
|
|
#include "cm1100.h"
|
|
|
|
|
|
//===============================================================================================
|
|
//maschera
|
|
|
|
class TPag_per_cms_mask: public TAutomask
|
|
{
|
|
public:
|
|
virtual bool on_field_event(TOperable_field& o, TField_event e, long jolly);
|
|
|
|
TPag_per_cms_mask():TAutomask("cm1100a") {}
|
|
|
|
};
|
|
|
|
bool TPag_per_cms_mask::on_field_event(TOperable_field& o, TField_event e, long jolly)
|
|
{
|
|
/* switch (o.dlg())
|
|
{
|
|
default: break;
|
|
}*/
|
|
return true;
|
|
}
|
|
|
|
//===============================================================================================
|
|
// class dei dati da passare in stampa
|
|
class TPag_per_cms_struct : public TSortable
|
|
{
|
|
|
|
protected:
|
|
virtual int compare(const TSortable& s) const;
|
|
|
|
public:
|
|
static bool _ordina_forn;
|
|
|
|
int _tipo;
|
|
long _codforn;
|
|
TDate _datapag;
|
|
TCurrency _importopagato;
|
|
TString _descrpagamento;
|
|
|
|
long _nreg;
|
|
TBill _conto; //gruppocontosottoconto
|
|
|
|
TString _commessa;
|
|
TCurrency _importocommessa;
|
|
|
|
TPag_per_cms_struct() : _tipo(0), _codforn(0), _nreg(0) { }
|
|
};
|
|
|
|
bool TPag_per_cms_struct::_ordina_forn = false;
|
|
|
|
int TPag_per_cms_struct::compare(const TSortable& s) const
|
|
{
|
|
const TPag_per_cms_struct& pcs = (const TPag_per_cms_struct&)s;
|
|
int cmp = 0;
|
|
if(_ordina_forn)
|
|
{
|
|
if (_tipo == 0)
|
|
cmp = _codforn - pcs._codforn;
|
|
else
|
|
cmp = _conto.compare(pcs._conto);
|
|
|
|
if (cmp == 0)
|
|
cmp = _nreg - pcs._nreg;
|
|
}
|
|
else
|
|
{
|
|
cmp = _commessa.compare(pcs._commessa);
|
|
if (cmp == 0)
|
|
{
|
|
cmp = _tipo - pcs._tipo;
|
|
if (cmp == 0)
|
|
{
|
|
//caso pagamento o costo non saldacontato
|
|
if (_tipo == 0)
|
|
cmp = _nreg - pcs._nreg;
|
|
else
|
|
cmp = _conto.compare(pcs._conto);
|
|
}
|
|
}
|
|
}
|
|
return cmp;
|
|
}
|
|
|
|
//===============================================================================================
|
|
// struct del residuo
|
|
struct TPag_per_cms_residual : public TObject
|
|
{
|
|
TCurrency _fatt, _pag;
|
|
};
|
|
|
|
//===============================================================================================
|
|
//form
|
|
class TPag_per_cms_form : public TForm
|
|
{
|
|
TArray& _righe; //puntatore all'arrayone dei pagamenti
|
|
int _curr_pag; //pagamento corrente
|
|
TAssoc_array _tot_fatt; //assoc_array contenente i movimenti che generano i pagamenti
|
|
TCurrency _totpagcms; //totale pagamenti sulla commessa
|
|
|
|
protected:
|
|
virtual long records() const {return _righe.items();}
|
|
virtual bool validate(TForm_item &cf, TToken_string &s);
|
|
|
|
const TString& prev_cms() const;
|
|
const long prev_forn() const;
|
|
const TString& next_cms() const;
|
|
int prev_type () const;
|
|
const TPag_per_cms_struct& curr() const { return(TPag_per_cms_struct&)_righe[_curr_pag]; }
|
|
void print_title (const char * title);
|
|
void stampa_totali();
|
|
void azzera_totali();
|
|
|
|
public:
|
|
void print(const TMask& m);
|
|
TPag_per_cms_form(TArray& pag);
|
|
virtual ~TPag_per_cms_form();
|
|
};
|
|
|
|
const TString& TPag_per_cms_form::prev_cms() const
|
|
{
|
|
if (_curr_pag <= 0)
|
|
return EMPTY_STRING;
|
|
const TPag_per_cms_struct& prev = (const TPag_per_cms_struct&)_righe[_curr_pag-1];
|
|
return prev._commessa;
|
|
}
|
|
|
|
const long TPag_per_cms_form::prev_forn() const
|
|
{
|
|
if (_curr_pag <= 0)
|
|
return 0;
|
|
const TPag_per_cms_struct& prev = (const TPag_per_cms_struct&)_righe[_curr_pag-1];
|
|
return prev._codforn;
|
|
}
|
|
|
|
const TString& TPag_per_cms_form::next_cms() const
|
|
{
|
|
if (_curr_pag >= _righe.last())
|
|
return EMPTY_STRING;
|
|
const TPag_per_cms_struct& next = (const TPag_per_cms_struct&)_righe[_curr_pag+1];
|
|
return next._commessa;
|
|
}
|
|
|
|
int TPag_per_cms_form::prev_type() const
|
|
{
|
|
if (_curr_pag <= 0)
|
|
return 0;
|
|
const TPag_per_cms_struct& prev = (const TPag_per_cms_struct&)_righe[_curr_pag-1];
|
|
return prev._tipo;
|
|
}
|
|
|
|
void TPag_per_cms_form::print_title (const char * title)
|
|
{
|
|
TPrint_section& last_head = section('H', last_page);
|
|
last_head.find_field(FR_HL_CODCMS).set(title);
|
|
last_head.update();
|
|
for (word i = 0; i < last_head.height(); i++)
|
|
printer().print(last_head.row(i));
|
|
}
|
|
|
|
void TPag_per_cms_form::azzera_totali()
|
|
{
|
|
_tot_fatt.destroy();
|
|
_totpagcms = ZERO;
|
|
}
|
|
|
|
void TPag_per_cms_form::stampa_totali()
|
|
{
|
|
TPrintrow pr;
|
|
if (TPag_per_cms_struct::_ordina_forn)
|
|
pr.put("@bTotali per fornitore", 21);
|
|
else
|
|
pr.put("@bTotali per commessa", 21);
|
|
|
|
TCurrency tot;
|
|
FOR_EACH_ASSOC_OBJECT(_tot_fatt, h, k, obj)
|
|
{
|
|
const TPag_per_cms_residual* imp = (const TPag_per_cms_residual*)obj;
|
|
tot += imp->_fatt;
|
|
}
|
|
TString80 str;
|
|
str = tot.string(true);
|
|
str.right_just(15);
|
|
pr.put(str, 83);
|
|
str = _totpagcms.string(true);
|
|
str.right_just(15);
|
|
pr.put(str, 100);
|
|
|
|
const TCurrency residuo = tot - _totpagcms;
|
|
if (!residuo.is_zero())
|
|
{
|
|
str = residuo.string(true);
|
|
str.right_just(15);
|
|
pr.put(str, 116);
|
|
}
|
|
|
|
printer().print(pr);
|
|
azzera_totali();
|
|
}
|
|
|
|
bool TPag_per_cms_form::validate(TForm_item &cf, TToken_string &s)
|
|
{
|
|
if (s == "_NEXTPAG")
|
|
{
|
|
_curr_pag ++; //aggiorna il contatore pagamenti quando ne trova uno sull'arrayone
|
|
return true;
|
|
}
|
|
|
|
if (s == "_TIPORIGA")
|
|
{
|
|
TString8 str;
|
|
str << curr()._tipo;
|
|
cf.set(str);
|
|
return true;
|
|
}
|
|
|
|
if (s == "_CODCMS")
|
|
{
|
|
bool cambio = false;
|
|
TString80 titolo;
|
|
if (TPag_per_cms_struct::_ordina_forn)
|
|
{
|
|
const long forn = curr()._codforn;
|
|
cambio = forn != prev_forn();
|
|
TString16 key;
|
|
key.format("F|%ld", forn);
|
|
titolo = cache().get(LF_CLIFO, key, CLI_RAGSOC);
|
|
}
|
|
else
|
|
{
|
|
const TString& cms = curr()._commessa;
|
|
cambio = cms != prev_cms();
|
|
titolo = cms;
|
|
}
|
|
|
|
if (cambio)
|
|
{
|
|
if (_curr_pag > 0)
|
|
{
|
|
stampa_totali();
|
|
if (_curr_pag < _righe.last()) //se sei all'ultimo movimento non aggiungere pagine vuote
|
|
printer().formfeed();
|
|
}
|
|
if (titolo.not_empty())
|
|
print_title(titolo);
|
|
}
|
|
else
|
|
{
|
|
const int tipo = curr()._tipo;
|
|
if (tipo > 0 && tipo != prev_type())
|
|
print_title(tipo == 1 ? "Costi" : "Pagamenti");
|
|
}
|
|
return true;
|
|
}
|
|
|
|
if (s == "_NREG")
|
|
{
|
|
TString8 str;
|
|
str << curr()._nreg;
|
|
cf.set(str);
|
|
|
|
TPag_per_cms_residual* mov = (TPag_per_cms_residual*) _tot_fatt.objptr(str);
|
|
if (mov == NULL)
|
|
{
|
|
mov = new TPag_per_cms_residual;
|
|
mov->_fatt = curr()._importocommessa;
|
|
_tot_fatt.add(str, mov); //agginge nreg ed importo all'array dei totali
|
|
}
|
|
return true;
|
|
}
|
|
|
|
if (s == "_DATAPAG")
|
|
{
|
|
cf.set(curr()._datapag.string());
|
|
return true;
|
|
}
|
|
|
|
if (s == "_GRUPPO")
|
|
{
|
|
TString8 str;
|
|
str << curr()._conto.gruppo();
|
|
cf.set(str);
|
|
return true;
|
|
}
|
|
|
|
if (s == "_CONTO")
|
|
{
|
|
TString8 str;
|
|
str << curr()._conto.conto();
|
|
cf.set(str);
|
|
return true;
|
|
}
|
|
|
|
if (s == "_SOTTOCONTO")
|
|
{
|
|
TString8 str;
|
|
str << curr()._conto.sottoconto();
|
|
cf.set(str);
|
|
return true;
|
|
}
|
|
|
|
if (s == "_DESCRPAG")
|
|
{
|
|
cf.set(curr()._descrpagamento);
|
|
return true;
|
|
}
|
|
|
|
if (s == "_CODFORN")
|
|
{
|
|
TString80 str;
|
|
if (TPag_per_cms_struct::_ordina_forn)
|
|
str << curr()._commessa;
|
|
else
|
|
{
|
|
if (curr()._codforn > 0)
|
|
str.format("%6ld", curr()._codforn);
|
|
}
|
|
cf.set(str);
|
|
return true;
|
|
}
|
|
|
|
if (s == "_TOTDOC")
|
|
{
|
|
cf.set(curr()._importocommessa.get_num().string());
|
|
return true;
|
|
}
|
|
|
|
if (s == "_TOTPAG")
|
|
{
|
|
cf.set(curr()._importopagato.get_num().string());
|
|
_totpagcms += curr()._importopagato;
|
|
|
|
TString8 str;
|
|
str << curr()._nreg;
|
|
|
|
TPag_per_cms_residual* mov = (TPag_per_cms_residual*) _tot_fatt.objptr(str);
|
|
if (mov != NULL)
|
|
mov->_pag += curr()._importopagato;
|
|
return true;
|
|
}
|
|
|
|
if (s == "_TOTRES")
|
|
{
|
|
TString8 str;
|
|
str << curr()._nreg;
|
|
|
|
TCurrency residuo;
|
|
TPag_per_cms_residual* mov = (TPag_per_cms_residual*) _tot_fatt.objptr(str);
|
|
if (mov != NULL)
|
|
residuo = mov->_fatt - mov->_pag; //residuo = totale movimento - quanto e' stato finora pagato del movimento
|
|
|
|
cf.set(residuo.get_num().string());
|
|
return true;
|
|
}
|
|
|
|
return TForm::validate(cf,s);
|
|
}
|
|
|
|
void TPag_per_cms_form::print(const TMask& m)
|
|
{
|
|
//header odd del form (intestazione della pagina)
|
|
TPrint_section& header = section('H', odd_page);
|
|
header.find_field(FR_HO_DATAINI).set(m.get(F_DATAINI));
|
|
header.find_field(FR_HO_DATAFIN).set(m.get(F_DATAFIN));
|
|
|
|
header.find_field(FR_HO_DACODFOR).set(m.get(F_DACODFOR));
|
|
header.find_field(FR_HO_DADESFOR).set(m.get(F_DADESFOR));
|
|
header.find_field(FR_HO_ACODFOR).set(m.get(F_ACODFOR));
|
|
header.find_field(FR_HO_ADESFOR).set(m.get(F_ADESFOR));
|
|
|
|
header.find_field(FR_HO_DACDC).set(m.get(F_DACDC));
|
|
const TRectype& dacms = cache().get("CMS", m.get(F_DACDC));
|
|
TString80 des = dacms.get("S0");
|
|
header.find_field(FR_HO_DADESC).set(des);
|
|
header.find_field(FR_HO_ACDC).set(m.get(F_ACDC));
|
|
const TRectype& acms = cache().get("CMS", m.get(F_ACDC));
|
|
des = acms.get("S0");
|
|
header.find_field(FR_HO_ADESC).set(des);
|
|
|
|
if (TPag_per_cms_struct::_ordina_forn)
|
|
header.find_field(FR_HO_FORNCMS).set("Commessa");
|
|
else
|
|
header.find_field(FR_HO_FORNCMS).set("Fornitore");
|
|
|
|
_curr_pag = 0;
|
|
azzera_totali();
|
|
//aggiunge una riga vuota (ppcs vuoto) per forzare il totale dell'ultima commessa
|
|
TPag_per_cms_struct* ppcs = new TPag_per_cms_struct;
|
|
_righe.add(ppcs);
|
|
//chiama la vera print dopo aver azzerato il contatore ed i totali
|
|
TForm::print();
|
|
}
|
|
|
|
TPag_per_cms_form::TPag_per_cms_form(TArray& pag) :TForm ("cm1100a"), _righe(pag)
|
|
{
|
|
}
|
|
|
|
TPag_per_cms_form::~TPag_per_cms_form()
|
|
{
|
|
}
|
|
|
|
|
|
//===============================================================================================
|
|
//Applicazione
|
|
|
|
class TPag_per_cms : public TSkeleton_application
|
|
{
|
|
TPag_per_cms_mask* _mask;
|
|
TPag_per_cms_form* _form;
|
|
|
|
TArray _righe; //array delle righe da stampare in tutti i casi
|
|
TAssoc_array _costi,_pagamenti; //array che contengono i conti
|
|
TAssoc_array _righecosti,_righepagamenti; //array delle righe da stampare in caso di costi e/o pagamenti
|
|
TString8 _campodata;
|
|
|
|
protected:
|
|
virtual void main_loop();
|
|
virtual bool create();
|
|
virtual bool destroy();
|
|
|
|
bool cms_in_range(const TString& codcms, const TString& codfase) const;
|
|
long find_movimento(const TRectype& riga_pag) const;
|
|
void find_commesse(const long nreg, const TRectype& riga_pag);
|
|
void find_commesse_cg(const long nreg);
|
|
void lettura_conti(const char * paragrafo, TAssoc_array& assoc);
|
|
static bool part_callback(const TRelation& rel, void* pJolly);
|
|
static bool mov_callback(const TRelation& rel, void* pJolly);
|
|
bool cerca_conto(const TBill& bill, const TAssoc_array& assoc) const;
|
|
bool cerca_costo(const TBill& bill) const;
|
|
bool cerca_pagamento(const TBill& bill) const;
|
|
void add_importo(TAssoc_array& assoc, const TRectype& rmov) const;
|
|
void crea_righe_stampa(TAssoc_array& assoc, const int tipo);
|
|
|
|
public:
|
|
void scan_pags();
|
|
void scan_movs();
|
|
};
|
|
|
|
long TPag_per_cms::find_movimento(const TRectype& riga_pag) const
|
|
{
|
|
int n_fatture = 0; //numero di fatture trovate
|
|
int first_fatt = 0; //numero riga della prima fattura
|
|
//scan della partita dall'ultima alla prima riga
|
|
const TPartita partita(riga_pag);
|
|
for (int p = partita.last(); p > 0; p = partita.pred(p))
|
|
{
|
|
const TRiga_partite& fatt = partita.riga(p);
|
|
if (fatt.is_fattura())
|
|
{
|
|
n_fatture++;
|
|
first_fatt = p;
|
|
}
|
|
}
|
|
|
|
if (n_fatture > 1)
|
|
{
|
|
const int linea_pag = riga_pag.get_int(PART_NRIGA);
|
|
int linea_fattura = 0;
|
|
for (int f = first_fatt; (f > 0) && (f <= partita.last()) && (linea_fattura == 0); f = partita.succ(f))
|
|
{
|
|
const TRiga_partite& fatt = partita.riga(f);
|
|
if (fatt.is_fattura())
|
|
{
|
|
for (int r = 1; r <= fatt.rate(); r++)
|
|
{
|
|
const TRiga_scadenze& rata = fatt.rata(r);
|
|
if (rata.exist(linea_pag))
|
|
{
|
|
linea_fattura = f;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
if (linea_fattura > 0) // oppure anche (linea_fattura > first_fatt)
|
|
first_fatt = linea_fattura;
|
|
}
|
|
|
|
long nreg = 0;
|
|
if (first_fatt > 0)
|
|
{
|
|
const TRiga_partite& fatt = partita.riga(first_fatt);
|
|
nreg = fatt.get_long(PART_NREG);
|
|
}
|
|
|
|
return nreg;
|
|
}
|
|
|
|
bool TPag_per_cms::cms_in_range(const TString& codcms, const TString& codfase) const
|
|
{
|
|
if (codcms.empty())
|
|
return false;
|
|
const TString& dallac = _mask->get(F_DACDC);
|
|
if (dallac.not_empty() && codcms < dallac)
|
|
return false;
|
|
const TString& allac = _mask->get(F_ACDC);
|
|
if (allac.not_empty() && codcms > allac)
|
|
return false;
|
|
//la fase puo' essere vuota!!
|
|
if (codfase.empty())
|
|
return true;
|
|
const TString& dallaf = _mask->get(F_DAFSC);
|
|
if (dallaf.not_empty() && codcms < dallaf)
|
|
return false;
|
|
const TString& allaf = _mask->get(F_AFSC);
|
|
if (allaf.not_empty() && codcms < allaf)
|
|
return false;
|
|
|
|
return true;
|
|
}
|
|
|
|
void TPag_per_cms::find_commesse(const long nreg, const TRectype& riga_pag)
|
|
{
|
|
TMovimentoPN pn;
|
|
pn.curr().put(MOV_NUMREG, nreg);
|
|
if (pn.read() == NOERR)
|
|
{
|
|
const real totdoc = pn.curr().get_real(MOV_TOTDOC);
|
|
const real totpagato = riga_pag.get_real(PART_IMPORTO);
|
|
const real percentuale = totpagato / totdoc;
|
|
|
|
TAssoc_array commesse;
|
|
for (int i = 0; i < pn.iva_items(); i++)
|
|
{
|
|
const TRectype& rmoviva = pn.iva(i);
|
|
const TString& codcms = rmoviva.get(RMI_CODCMS);
|
|
const TString& codfase = rmoviva.get(RMI_FASCMS);
|
|
if (cms_in_range(codcms, codfase))
|
|
{
|
|
real* imp = (real*)commesse.objptr(codcms);
|
|
if (imp == NULL)
|
|
{
|
|
imp = new real;
|
|
commesse.add(codcms, imp);
|
|
}
|
|
real importo = rmoviva.get_real(RMI_IMPONIBILE) + rmoviva.get_real(RMI_IMPOSTA);
|
|
*imp += importo;
|
|
}
|
|
}
|
|
FOR_EACH_ASSOC_OBJECT(commesse, h, k, imp)
|
|
{
|
|
const real& impcms = *(real*)imp;
|
|
TPag_per_cms_struct* ppcs = new TPag_per_cms_struct;
|
|
ppcs->_tipo = 0; //movimenti da saldaconto
|
|
ppcs->_codforn = riga_pag.get_long(PART_SOTTOCONTO);
|
|
ppcs->_datapag = riga_pag.get_date(_campodata);
|
|
ppcs->_importopagato.set_num(impcms * percentuale); //pagamento nella partita
|
|
ppcs->_descrpagamento = riga_pag.get(PART_DESCR);
|
|
|
|
ppcs->_nreg = nreg;
|
|
|
|
ppcs->_commessa = k;
|
|
ppcs->_importocommessa.set_num(impcms); //importo da pagare scritto sulla fattura
|
|
|
|
_righe.add(ppcs); //aggiunge il pagamento all'array dei pagamenti
|
|
}
|
|
}
|
|
}
|
|
|
|
void TPag_per_cms::add_importo(TAssoc_array& assoc, const TRectype& rmov) const
|
|
{
|
|
TBill conto(rmov);
|
|
TToken_string chiave;
|
|
conto.add_to(chiave, 0);
|
|
chiave.add(rmov.get(RMV_CODCMS));
|
|
|
|
TImporto* importo = (TImporto*)assoc.objptr(chiave);
|
|
if (importo == NULL)
|
|
{
|
|
importo = new TImporto;
|
|
assoc.add(chiave,importo);
|
|
}
|
|
//incremento l'importo del conto commessa con l'importo movimento (iportocontocms += importormov)
|
|
const char sezione = rmov.get_char(RMV_SEZIONE);
|
|
const real valore = rmov.get_real(RMV_IMPORTO);
|
|
const TImporto imp(sezione, valore);
|
|
*importo += imp;
|
|
}
|
|
|
|
void TPag_per_cms::find_commesse_cg(const long nreg)
|
|
{
|
|
TMovimentoPN pn;
|
|
pn.curr().put(MOV_NUMREG, nreg);
|
|
if (pn.read() == NOERR)
|
|
{
|
|
for (int i = 0; i < pn.cg_items(); i++)
|
|
{
|
|
const TRectype& rmov = pn.cg(i);
|
|
const TString& codcms = rmov.get(RMV_CODCMS);
|
|
const TString& codfase = rmov.get(RMV_FASCMS);
|
|
if (cms_in_range(codcms,codfase))
|
|
{
|
|
const TBill conto(rmov);
|
|
if (cerca_costo(conto))
|
|
add_importo(_righecosti, rmov);
|
|
else if (cerca_pagamento(conto))
|
|
add_importo(_righepagamenti, rmov);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
bool TPag_per_cms::cerca_conto(const TBill& bill, const TAssoc_array& assoc) const
|
|
{
|
|
TToken_string key(15,'.');
|
|
key.add(bill.gruppo());
|
|
if (assoc.is_key(key))
|
|
return true;
|
|
|
|
key.add(bill.conto());
|
|
if (assoc.is_key(key))
|
|
return true;
|
|
|
|
key.add(bill.sottoconto());
|
|
if (assoc.is_key(key))
|
|
return true;
|
|
|
|
return false;
|
|
}
|
|
|
|
bool TPag_per_cms::cerca_costo(const TBill& bill) const
|
|
{
|
|
return cerca_conto(bill, _costi);
|
|
}
|
|
|
|
bool TPag_per_cms::cerca_pagamento(const TBill& bill) const
|
|
{
|
|
return cerca_conto(bill, _pagamenti);
|
|
}
|
|
|
|
void TPag_per_cms::lettura_conti(const char* paragrafo, TAssoc_array& assoc)
|
|
{
|
|
TConfig conti("cm1100a.ini",paragrafo); //paragrafo da scandire nell ini
|
|
TAssoc_array& vars = conti.list_variables();
|
|
|
|
FOR_EACH_ASSOC_STRING(vars, h, k, val) //riempie l'assoc con i soli valori del paragrafo dell'ini
|
|
assoc.add(val);
|
|
}
|
|
|
|
// Mettere in libreria al piu' presto!!!!
|
|
typedef bool (*SCAN_FUNC)(const TRelation& rel, void* pJolly);
|
|
|
|
bool scan_cursor(TCursor& cur, const char* msg, SCAN_FUNC func, void* pJolly)
|
|
{
|
|
TRecnotype items = 0; // Temporarily
|
|
TProgind pi(items, msg, true, true);
|
|
|
|
{
|
|
TWait_cursor hourglass;
|
|
items = cur.items();
|
|
}
|
|
|
|
bool ok = true;
|
|
if (items > 0)
|
|
{
|
|
cur.freeze();
|
|
pi.setmax(items);
|
|
for (cur = 0; cur.pos() < items; ++cur)
|
|
{
|
|
pi.addstatus(1);
|
|
if (pi.iscancelled())
|
|
{
|
|
ok = false;
|
|
break;
|
|
}
|
|
if (!func(*cur.relation(), pJolly))
|
|
{
|
|
ok = false;
|
|
break;
|
|
}
|
|
}
|
|
cur.freeze(false);
|
|
}
|
|
return ok;
|
|
}
|
|
|
|
bool TPag_per_cms::part_callback(const TRelation& rel, void* pJolly)
|
|
{
|
|
TPag_per_cms* app = (TPag_per_cms*)pJolly;
|
|
const TRectype& riga_part_pag = rel.curr();
|
|
|
|
const long nreg = app->find_movimento(riga_part_pag);
|
|
if (nreg > 0)
|
|
app->find_commesse(nreg, riga_part_pag);
|
|
return true;
|
|
}
|
|
|
|
void TPag_per_cms::scan_pags()
|
|
{
|
|
//costruzione filtro
|
|
const long dacodfor = _mask->get_long(F_DACODFOR);
|
|
const long acodfor = _mask->get_long(F_ACODFOR);
|
|
TRectype darec(LF_PARTITE);
|
|
TRectype arec(LF_PARTITE);
|
|
darec.put(PART_TIPOCF, 'F');
|
|
arec.put(PART_TIPOCF, 'F');
|
|
if (dacodfor > 0)
|
|
darec.put(PART_SOTTOCONTO, dacodfor);
|
|
if (acodfor >= acodfor)
|
|
arec.put(PART_SOTTOCONTO, acodfor);
|
|
|
|
TString filtro = "(TIPOPAG>=\"3\")"; //deve essere un pagamento a fornitore!!!
|
|
const TDate dataini = _mask->get(F_DATAINI);
|
|
const TDate datafin = _mask->get(F_DATAFIN);
|
|
if (dataini.ok())
|
|
{
|
|
TString80 f;
|
|
f.format("&&(ANSI(%s)>=\"%s\")", (const char*)_campodata, dataini.string(ANSI));
|
|
filtro << f;
|
|
}
|
|
if (datafin.ok())
|
|
{
|
|
TString80 f;
|
|
f.format("&&(ANSI(%s)<=\"%s\")", (const char*)_campodata, datafin.string(ANSI));
|
|
filtro << f;
|
|
}
|
|
//applica il filtro alla relazione
|
|
TRelation rel(LF_PARTITE);
|
|
TCursor cur(&rel, filtro, 1, &darec, &arec);
|
|
scan_cursor(cur, "Ricerca commesse...", part_callback, this);
|
|
}
|
|
|
|
bool TPag_per_cms::mov_callback(const TRelation& rel, void* pJolly)
|
|
{
|
|
TPag_per_cms* app = (TPag_per_cms*)pJolly;
|
|
const long nreg = rel.curr().get_long(MOV_NUMREG);
|
|
app->find_commesse_cg(nreg);
|
|
return true;
|
|
}
|
|
|
|
void TPag_per_cms::scan_movs()
|
|
{
|
|
if (_campodata == PART_DATAPAG) // I movimenti non hanno DATAPAG
|
|
_campodata = PART_DATAREG;
|
|
|
|
TString filtro = "(REG==\"\")&&(TIPOMOV==\"\")";
|
|
const TDate dataini = _mask->get(F_DATAINI);
|
|
const TDate datafin = _mask->get(F_DATAFIN);
|
|
|
|
TRectype darec(LF_MOV), arec(LF_MOV);
|
|
if (_campodata == MOV_DATAREG)
|
|
{
|
|
if (dataini.ok())
|
|
darec.put(MOV_DATAREG, dataini);
|
|
if (datafin.ok())
|
|
arec.put(MOV_DATAREG, dataini);
|
|
}
|
|
else
|
|
{
|
|
TString80 f;
|
|
if (dataini.ok())
|
|
{
|
|
f.format("&&(ANSI(%s)>=\"%s\")", (const char*)_campodata, dataini.string(ANSI));
|
|
filtro << f;
|
|
}
|
|
if (datafin.ok())
|
|
{
|
|
f.format("&&(ANSI(%s)<=\"%s\")", (const char*)_campodata, datafin.string(ANSI));
|
|
filtro << f;
|
|
}
|
|
}
|
|
|
|
TRelation rel(LF_MOV);
|
|
TCursor cur(&rel, filtro, 2, &darec, &arec);
|
|
scan_cursor(cur, "Ricerca movimenti...", mov_callback, this);
|
|
|
|
crea_righe_stampa(_righecosti, 1);
|
|
crea_righe_stampa(_righepagamenti, 2);
|
|
}
|
|
|
|
void TPag_per_cms::crea_righe_stampa(TAssoc_array& assoc, const int tipo)
|
|
{
|
|
TToken_string tok;
|
|
FOR_EACH_ASSOC_OBJECT(assoc, h, k ,i)
|
|
{
|
|
tok = k;
|
|
TImporto imp = *(TImporto*)i;
|
|
imp.normalize(tipo==1 ? 'D' : 'A');
|
|
|
|
TPag_per_cms_struct* ppcs = new TPag_per_cms_struct;
|
|
ppcs->_tipo = tipo; //movimenti di costo/pagamento
|
|
ppcs->_codforn = 0;
|
|
// ppcs->_datapag = riga_pag.get_date(_campodata);
|
|
ppcs->_importopagato.set_num(imp.valore()); //pagamento nella partita
|
|
|
|
ppcs->_nreg = 0;
|
|
|
|
ppcs->_commessa = tok.get(3);
|
|
ppcs->_conto.get(tok, 0);
|
|
ppcs->_descrpagamento = ppcs->_conto.descrizione();
|
|
|
|
_righe.add(ppcs); //aggiunge il pagamento all'array dei pagamenti e lo spedisce in stampa
|
|
}
|
|
}
|
|
|
|
bool TPag_per_cms::create()
|
|
{
|
|
_mask = new TPag_per_cms_mask;
|
|
_form = new TPag_per_cms_form(_righe);
|
|
|
|
lettura_conti("Costi", _costi); //caricamento dei conti dei costi
|
|
lettura_conti("Pagamenti", _pagamenti); // "" pagamenti
|
|
|
|
return TSkeleton_application::create();
|
|
}
|
|
|
|
bool TPag_per_cms::destroy()
|
|
{
|
|
delete _mask;
|
|
delete _form;
|
|
return TRUE;
|
|
}
|
|
|
|
void TPag_per_cms::main_loop()
|
|
{
|
|
while (_mask->run() == K_ENTER)
|
|
{
|
|
_campodata = PART_DATAREG;
|
|
switch(_mask->get_int(F_TIPODATA))
|
|
{
|
|
case 1:_campodata = PART_DATADOC;break;
|
|
case 2:_campodata = PART_DATAPAG;break;
|
|
default:break;
|
|
}
|
|
|
|
TPag_per_cms_struct::_ordina_forn = _mask->get_bool(F_ORDINAMENTO);
|
|
_righe.destroy(); //azzera l'arrayone dei pagamenti
|
|
scan_pags();
|
|
scan_movs();
|
|
|
|
if (_righe.items() > 0)
|
|
{
|
|
_righe.sort();
|
|
_form->print(*_mask);
|
|
}
|
|
}
|
|
}
|
|
|
|
int cm1100(int argc, char* argv[])
|
|
{
|
|
TPag_per_cms a;
|
|
a.run(argc,argv,TR("Stampa pagato per commessa"));
|
|
return 0;
|
|
}
|