39 lines
796 B
C++
39 lines
796 B
C++
#pragma once
|
|
#include "CommonScript.h"
|
|
|
|
namespace Rshb {
|
|
|
|
class GetLastDaysHistoryScript final : public CommonScript {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
~GetLastDaysHistoryScript() override;
|
|
|
|
explicit GetLastDaysHistoryScript(
|
|
AccountInfo account,
|
|
QObject *parent = nullptr
|
|
);
|
|
|
|
protected:
|
|
void doStart() override;
|
|
|
|
private:
|
|
const AccountInfo m_account;
|
|
QString m_error;
|
|
|
|
bool saveAndPostNewTransactionData(
|
|
const AccountInfo &account,
|
|
const TransactionInfo &transaction,
|
|
const TransactionStatus &status
|
|
);
|
|
|
|
bool updateAndPostTransactionData(
|
|
const AccountInfo &account,
|
|
int transactionId,
|
|
TransactionStatus status,
|
|
const QString &oldDesc,
|
|
const QString &newDesc
|
|
);
|
|
};
|
|
|
|
} // namespace Rshb
|