00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031 #ifndef AAREGISTER_H
00032 #define AAREGISTER_H
00033
00034 #include "acfg.h"
00035 #include "airegister.h"
00036
00037
00038
00054 class ANANAS_EXPORT aARegister : public aIRegister
00055 {
00056 Q_OBJECT
00057 public:
00058 aARegister(aCfgItem context, aDatabase * adb = 0);
00059 aARegister(QString name, aDatabase * adb = 0);
00060 virtual ~aARegister();
00061
00062 virtual ERR_Code initObject();
00063
00064 virtual bool deleteDocument( aDocument * doc );
00065
00066 virtual QString trSysName( const QString & sname );
00067 public slots:
00068 virtual ERR_Code New();
00069 virtual int Update();
00070
00071
00072
00073
00074
00075 QVariant getSaldo(const QDateTime &date, const QString & dimfieldname, QVariant dimvalue, const QString &resname);
00076 QVariant getSaldo(const QString &dateISO, const QString & dimfieldname, QVariant dimvalue, const QString &resname);
00077
00078 QVariant getSaldoByManyDimensions(const QString &from, const QString &to, const QString & dimfieldname, QVariant dimvalue, const QString &resname);
00079
00080
00081
00082
00083
00084
00085
00086 protected:
00087 void recalculate_saldo(aSQLTable *t, aSQLTable *t_dim, const QDateTime & dd, bool plus, long dimId, QVariant dimValue);
00088 int insert_values(QSqlQuery *q, aSQLTable *t_dim, const QDateTime & dd, bool plus, long dimId, QVariant dimValue);
00089 int update_values(aSQLTable *t_dim, const QDateTime & dd, bool plus, long dimId, QVariant dimValue, aSQLTable *t=0);
00090 private:
00091
00092 void resum( aSQLTable * t, const QDateTime & dd, bool plus );
00093 QString tablename;
00094 QSqlQuery sumQuery;
00095 QMap<long,QString> resnames;
00096 QMap<QString,QString> resSysNames;
00097 QMap<long,QString> dimnames;
00098
00099
00100 };
00101
00102 #endif// AAREGISTER_H