campo-sirio/ve/ve1400.cpp
guy 84f60d00da Patch level : 4.0 448
Files correlati     : ve0 ve6
Ricompilazione Demo : [ ]
Commento            :
Migliorata la contabilizzazione analitica (forse)
Corretta copy_data in modo da azzerare i movimenti collegati alla testata del documento


git-svn-id: svn://10.65.10.50/trunk@14141 c028cbd2-c16b-5b4b-a496-9718f37d4682
2006-07-10 13:30:29 +00:00

29 lines
619 B
C++
Executable File

#include <applicat.h>
#include "vereplib.h"
#include "../ba/ba8500.h"
///////////////////////////////////////////////////////////
// TPeterParker_app
///////////////////////////////////////////////////////////
class TPeterParker_app : public TKlarkKent_app
{
protected:
virtual TReport* create_report(const char* name) const;
};
TReport* TPeterParker_app::create_report(const char* name) const
{
TDocument_report* rep = new TDocument_report;
rep->load(name);
return rep;
}
int ve1400(int argc, char* argv[])
{
TPeterParker_app app;
app.run(argc, argv, TR("Stampa Report Vendite"));
return 0;
}