Files correlati : Ricompilazione Demo : [ ] Commento :stampa sintetica cespiti: aggiunti raggruppamenti per impianto e localita' git-svn-id: svn://10.65.10.50/trunk@15752 c028cbd2-c16b-5b4b-a496-9718f37d4682
		
			
				
	
	
		
			283 lines
		
	
	
		
			7.1 KiB
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			283 lines
		
	
	
		
			7.1 KiB
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
#include <applicat.h>
 | 
						|
#include <automask.h>
 | 
						|
#include <progind.h>
 | 
						|
#include <recarray.h>
 | 
						|
#include <reprint.h>
 | 
						|
 | 
						|
#include "../cg/cglib01.h"
 | 
						|
 | 
						|
#include "ammce.h"
 | 
						|
#include "cespi.h"
 | 
						|
#include "movce.h"
 | 
						|
#include "salce.h"
 | 
						|
#include "celib.h"
 | 
						|
 | 
						|
#include "ce2101.h"
 | 
						|
#include "ce3.h"
 | 
						|
#include "ce3900.h"
 | 
						|
 | 
						|
////////////////////////////////////////////////////////
 | 
						|
//	MASCHERA
 | 
						|
////////////////////////////////////////////////////////
 | 
						|
class TStampa_sintetica_mask : public TAutomask
 | 
						|
{
 | 
						|
protected:
 | 
						|
  bool on_field_event(TOperable_field& o, TField_event e, long jolly);
 | 
						|
 | 
						|
public:
 | 
						|
  TStampa_sintetica_mask();
 | 
						|
  virtual ~TStampa_sintetica_mask() {}
 | 
						|
};
 | 
						|
 | 
						|
 | 
						|
bool TStampa_sintetica_mask::on_field_event(TOperable_field& o, TField_event e, long jolly)
 | 
						|
{ 
 | 
						|
  bool ok = true;
 | 
						|
  switch (o.dlg())
 | 
						|
  {
 | 
						|
  case F_FROM_CAT:
 | 
						|
  case F_D_FROM_CAT:
 | 
						|
  case F_TO_CAT:
 | 
						|
  case F_D_TO_CAT:
 | 
						|
    {
 | 
						|
      TDitta_cespiti& dc = ditta_cespiti();
 | 
						|
      ok = dc.on_category_event(o, e, jolly);
 | 
						|
    }
 | 
						|
    break;
 | 
						|
	case F_ESERCIZIO:
 | 
						|
  case F_GRUPPO:
 | 
						|
  case F_SPECIE:
 | 
						|
    if ((e == fe_init && o.dlg() == F_ESERCIZIO)|| e == fe_modify)
 | 
						|
    {
 | 
						|
      TRelation ccb("CCB");
 | 
						|
			int err = NOERR;
 | 
						|
      const TString& esercizio = get(F_ESERCIZIO);
 | 
						|
			if (esercizio.full())
 | 
						|
			{
 | 
						|
        const TString& gruppo = get(F_GRUPPO);
 | 
						|
        const TString& specie = get(F_SPECIE);
 | 
						|
        TString16 key; key << esercizio << gruppo << specie;
 | 
						|
        ccb.curr().put("CODTAB", key);
 | 
						|
        err = ccb.read();
 | 
						|
			}
 | 
						|
			else
 | 
						|
				err = ccb.last();
 | 
						|
			if (err == NOERR)
 | 
						|
			{
 | 
						|
        autoload(ccb);
 | 
						|
				o.check();
 | 
						|
			}
 | 
						|
    }
 | 
						|
    break;
 | 
						|
  default: break;
 | 
						|
  }
 | 
						|
  return ok;
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
TStampa_sintetica_mask::TStampa_sintetica_mask()
 | 
						|
								:TAutomask("ce3900")
 | 
						|
{}
 | 
						|
 | 
						|
 | 
						|
///////////////////////////////////////////////////////////////
 | 
						|
//	RECORDSET
 | 
						|
///////////////////////////////////////////////////////////////
 | 
						|
 | 
						|
class TStampa_sintetica_recordset : public TISAM_recordset
 | 
						|
{
 | 
						|
public:
 | 
						|
  void set_filter(const TStampa_sintetica_mask& msk);
 | 
						|
  TStampa_sintetica_recordset(const TString& sql) : TISAM_recordset(sql) { }
 | 
						|
};
 | 
						|
 | 
						|
static const TStampa_sintetica_recordset* myself = NULL;
 | 
						|
 | 
						|
//metodo per caricare i valori nel recordset dalla maschera...fighissimo!!
 | 
						|
void TStampa_sintetica_recordset::set_filter(const TStampa_sintetica_mask& msk)
 | 
						|
{
 | 
						|
	const TString& dacat = msk.get(F_FROM_CAT);
 | 
						|
	const TString& acat = msk.get(F_TO_CAT);
 | 
						|
	TString query = "USE CESPI SELECT\n";
 | 
						|
	query << "((DTALIEN='')||(ANSI(DTALIEN)>=" << msk.get_date(F_DATAINIZIO).date2ansi() << "))";
 | 
						|
	query << "&&(ANSI(DTCOMP)<=" << msk.get_date(F_DATAFINE).date2ansi() << ")";
 | 
						|
	if (dacat.full() || acat.full())
 | 
						|
	{
 | 
						|
		if (dacat == acat)
 | 
						|
		{
 | 
						|
			query << "&&(CODCAT==" << dacat << ")";
 | 
						|
		}
 | 
						|
		else
 | 
						|
		{
 | 
						|
			if (dacat.full())
 | 
						|
				query << "&&(CODCAT>=" << dacat << ")";
 | 
						|
			if (acat.full())
 | 
						|
				query << "&&(CODCAT<=" << acat << ")";
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	query << "\nBY CODCAT|CODIMP|CODLOC|IDCESPITE";	//query standard senza raggruppamenti
 | 
						|
	set(query);	//setta la nuova query nel report (che avrebbe solo USE CESPI)
 | 
						|
}
 | 
						|
 | 
						|
////////////////////////////////////////////////////////
 | 
						|
//	REPORT
 | 
						|
////////////////////////////////////////////////////////
 | 
						|
class TStampa_sintetica_rep : public TReport
 | 
						|
{
 | 
						|
	int _anno;
 | 
						|
	int _tpamm;
 | 
						|
	int _group_codimp, _group_codloc;
 | 
						|
	TCespite _cespite;
 | 
						|
 | 
						|
protected:
 | 
						|
	real val_amm(const TRectype& rec_saldi) const;
 | 
						|
	virtual bool get_usr_val(const TString& name, TVariant& var) const;
 | 
						|
public:
 | 
						|
	void set_filter(const TStampa_sintetica_mask& msk);
 | 
						|
};
 | 
						|
 | 
						|
void TStampa_sintetica_rep::set_filter(const TStampa_sintetica_mask& msk)
 | 
						|
{
 | 
						|
  _anno = msk.get_int(F_ESERCIZIO);
 | 
						|
	_tpamm = msk.get_int(F_SITUAZIONE);
 | 
						|
 | 
						|
	_group_codimp = msk.get_bool(F_GROUP_CODIMP);
 | 
						|
	_group_codloc = msk.get_bool(F_GROUP_CODLOC);
 | 
						|
 | 
						|
	((TStampa_sintetica_recordset*) recordset())->set_filter(msk);
 | 
						|
}
 | 
						|
 | 
						|
real TStampa_sintetica_rep::val_amm(const TRectype& rec_saldi) const
 | 
						|
{
 | 
						|
	real valore = rec_saldi.get_real(SALCE_CSTO);
 | 
						|
	if (_tpamm == 2)
 | 
						|
		valore -= rec_saldi.get_real(SALCE_VNONAMMC);
 | 
						|
	else
 | 
						|
		valore -= rec_saldi.get_real(SALCE_VNONAMM);
 | 
						|
	valore -= rec_saldi.get_real(SALCE_VNONAMM06);
 | 
						|
	valore += rec_saldi.get_real(SALCE_RIV75);
 | 
						|
	valore += rec_saldi.get_real(SALCE_RIV83);
 | 
						|
	valore += rec_saldi.get_real(SALCE_RIV90);
 | 
						|
	valore += rec_saldi.get_real(SALCE_RIV91);
 | 
						|
	valore += rec_saldi.get_real(SALCE_RIVGF);
 | 
						|
 | 
						|
	if (valore < ZERO)
 | 
						|
		valore = ZERO;
 | 
						|
 | 
						|
	return valore;
 | 
						|
}
 | 
						|
 | 
						|
//metodo per il calcolo dei campi da calcolare (ma va'!) nel report
 | 
						|
bool TStampa_sintetica_rep::get_usr_val(const TString& name, TVariant& var) const
 | 
						|
{
 | 
						|
	const TRecordset& recset = *recordset();
 | 
						|
	const TString& idcespite = recset.get("IDCESPITE").as_string();
 | 
						|
  if (idcespite != _cespite.get(CESPI_IDCESPITE))
 | 
						|
	{
 | 
						|
		TCespite& c = (TCespite&)_cespite;
 | 
						|
		c.read(idcespite);
 | 
						|
		c.load_saldi(_tpamm, _anno);
 | 
						|
	}
 | 
						|
 | 
						|
	if (name == "#DESCAT")	//categoria (descrizione della categoria corrente)
 | 
						|
	{		
 | 
						|
		const int gruppo = recset.get("CODCGRA").as_int();
 | 
						|
		const TString& specie = recset.get("CODSPA").as_string();
 | 
						|
		const int categoria = recset.get("CODCAT").as_int();
 | 
						|
		const TRectype& rec_cac = ditta_cespiti().categoria(gruppo, specie, categoria);
 | 
						|
		var = rec_cac.get("S0");
 | 
						|
		return true;
 | 
						|
	}
 | 
						|
 | 
						|
	if (name.starts_with("#COSTO"))	//valore dell'anno (iniziale e finale, comprese rivalutazioni e non ammortizz.)
 | 
						|
	{
 | 
						|
		if (name.ends_with("FIN"))  //tiposaldo finale
 | 
						|
		{
 | 
						|
			var = val_amm(_cespite.sal_pro());
 | 
						|
		}
 | 
						|
		else												//tiposaldo iniziale
 | 
						|
		{
 | 
						|
			var = val_amm(_cespite.sal_ini());
 | 
						|
		}
 | 
						|
		return true;
 | 
						|
	}
 | 
						|
 | 
						|
	if (name == "#GROUP_CODIMP")
 | 
						|
	{
 | 
						|
		var.set(_group_codimp);
 | 
						|
		return true;
 | 
						|
	}
 | 
						|
 | 
						|
	if (name == "#GROUP_CODLOC")
 | 
						|
	{
 | 
						|
		var.set(_group_codloc);
 | 
						|
		return true;
 | 
						|
	}
 | 
						|
 | 
						|
	if (name == "#PERCAMM")	//percentuale ammortamento
 | 
						|
	{
 | 
						|
		const TRectype& rec_ammce = _cespite.amm_pro();
 | 
						|
		var = real(rec_ammce.get_real(AMMCE_PNOR) + rec_ammce.get_real(AMMCE_PACC) + rec_ammce.get_real(AMMCE_PANT));
 | 
						|
		return true;
 | 
						|
	}
 | 
						|
	if (name == "#QAMM")	//quote ammortamento esercizio corrente
 | 
						|
	{
 | 
						|
		const TRectype& rec_ammce = _cespite.amm_pro();
 | 
						|
		var = real(rec_ammce.get_real(AMMCE_QNOR) + rec_ammce.get_real(AMMCE_QACC) + rec_ammce.get_real(AMMCE_QANT));
 | 
						|
		return true;
 | 
						|
	}
 | 
						|
	if (name == "#FAMM")	//fondo ammortamento alla fine dell'esercizio precedente
 | 
						|
	{
 | 
						|
		//ragionamento fatto il 31/10/2007;non siamo sicuri che funzioni!
 | 
						|
		const TRectype& rec_ammce = _cespite.amm_pro();
 | 
						|
		var = real(rec_ammce.get_real(AMMCE_QNORP) + rec_ammce.get_real(AMMCE_QACCP) + rec_ammce.get_real(AMMCE_QANTP));
 | 
						|
		return true;
 | 
						|
	}
 | 
						|
	if (name == "#RESAMM")	//residuo da ammortizzare
 | 
						|
	{
 | 
						|
		var = _cespite.res_amm();
 | 
						|
		return true;
 | 
						|
	}
 | 
						|
	if (name == "#SITUAZIONE")	//tipo situazione da stampare in testata
 | 
						|
	{
 | 
						|
		var.set(_tpamm);
 | 
						|
		return true;
 | 
						|
	}
 | 
						|
 | 
						|
	return TReport::get_usr_val(name, var);
 | 
						|
}
 | 
						|
 | 
						|
////////////////////////////////////////////////////////
 | 
						|
//	APPLICAZIONE
 | 
						|
////////////////////////////////////////////////////////
 | 
						|
class TStampa_sintetica : public TSkeleton_application
 | 
						|
{
 | 
						|
protected:
 | 
						|
  virtual void main_loop();
 | 
						|
};
 | 
						|
 | 
						|
 | 
						|
void TStampa_sintetica::main_loop()
 | 
						|
{
 | 
						|
	TStampa_sintetica_mask mask;
 | 
						|
  while (mask.run() == K_ENTER)
 | 
						|
  {
 | 
						|
		//report e book dei report
 | 
						|
		TReport_book book;
 | 
						|
		TStampa_sintetica_rep rep;
 | 
						|
		rep.load("ce3900a");
 | 
						|
 | 
						|
		rep.set_filter(mask);
 | 
						|
		book.add(rep);
 | 
						|
 | 
						|
		book.print_or_preview();	//stampa il book dei report
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
int ce3900(int argc, char* argv[])
 | 
						|
{
 | 
						|
  TStampa_sintetica a;
 | 
						|
  a.run(argc, argv, TR("Stampa sintetica cespiti"));
 | 
						|
  return 0;
 | 
						|
} |