You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
113 lines
4.2 KiB
113 lines
4.2 KiB
/***************************************************************************
|
|
konlinebankingstatus.cpp
|
|
-------------------
|
|
begin : Wed Apr 16 2008
|
|
copyright : (C) 2008 by Thomas Baumgart
|
|
email : ipwizard@users.sourceforge.net
|
|
***************************************************************************/
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License as published by *
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
* (at your option) any later version. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include <config.h>
|
|
#endif
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// System Includes
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// QT Includes
|
|
|
|
#include <tqlabel.h>
|
|
#include <tqpushbutton.h>
|
|
#include <tqradiobutton.h>
|
|
#include <tqspinbox.h>
|
|
#include <tqdatetimeedit.h>
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// KDE Includes
|
|
|
|
#include <tdelocale.h>
|
|
#include <kled.h>
|
|
#include <kcombobox.h>
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// Project Includes
|
|
|
|
#include "konlinebankingstatus.h"
|
|
#include <kmymoney/mymoneykeyvaluecontainer.h>
|
|
#include <kmymoney/mymoneyaccount.h>
|
|
#include <libofx/libofx.h>
|
|
#include "mymoneyofxconnector.h"
|
|
|
|
KOnlineBankingStatus::KOnlineBankingStatus(const MyMoneyAccount& acc, TQWidget *parent, const char *name) :
|
|
KOnlineBankingStatusDecl(parent,name),
|
|
m_appId(0)
|
|
{
|
|
m_ledOnlineStatus->off();
|
|
|
|
// Set up online banking settings if applicable
|
|
MyMoneyKeyValueContainer settings = acc.onlineBankingSettings();
|
|
m_textOnlineStatus->setText(i18n("Enabled & configured"));
|
|
m_ledOnlineStatus->on();
|
|
|
|
TQString account = settings.value("accountid");
|
|
TQString bank = settings.value("bankname");
|
|
TQString bankid = TQString("%1 %2").arg(settings.value("bankid")).arg(settings.value("branchid"));
|
|
if ( bankid.length() > 1 )
|
|
bank += TQString(" (%1)").arg(bankid);
|
|
m_textBank->setText(bank);
|
|
m_textOnlineAccount->setText(account);
|
|
|
|
m_appId = new OfxAppVersion(m_applicationCombo, settings.value("appId"));
|
|
m_headerVersion = new OfxHeaderVersion(m_headerVersionCombo, settings.value("kmmofx-headerVersion"));
|
|
|
|
int numDays = 60;
|
|
TQString snumDays = settings.value("kmmofx-numRequestDays");
|
|
if (!snumDays.isEmpty())
|
|
numDays = snumDays.toInt();
|
|
m_numdaysSpin->setValue(numDays);
|
|
m_todayRB->setChecked(settings.value("kmmofx-todayMinus").isEmpty() || settings.value("kmmofx-todayMinus").toInt() != 0);
|
|
m_lastUpdateRB->setChecked(!settings.value("kmmofx-lastUpdate").isEmpty() && settings.value("kmmofx-lastUpdate").toInt() != 0);
|
|
m_lastUpdateTXT->setText(acc.value("lastImportedTransactionDate"));
|
|
m_pickDateRB->setChecked(!settings.value("kmmofx-pickDate").isEmpty() && settings.value("kmmofx-pickDate").toInt() != 0);
|
|
TQString specificDate = settings.value("kmmofx-specificDate");
|
|
if (!specificDate.isEmpty())
|
|
m_specificDate->setDate(TQDate::fromString(specificDate));
|
|
else
|
|
m_specificDate->setDate(TQDate::currentDate());
|
|
m_specificDate->setMaxValue(TQDate::currentDate());
|
|
m_payeeidRB->setChecked(settings.value("kmmofx-preferPayeeid").isEmpty() || settings.value("kmmofx-preferPayeeid").toInt() != 0);
|
|
m_nameRB->setChecked(!settings.value("kmmofx-preferName").isEmpty() && settings.value("kmmofx-preferName").toInt() != 0);
|
|
}
|
|
|
|
KOnlineBankingStatus::~KOnlineBankingStatus()
|
|
{
|
|
delete m_appId;
|
|
}
|
|
|
|
const TQString& KOnlineBankingStatus::appId(void) const
|
|
{
|
|
if(m_appId)
|
|
return m_appId->appId();
|
|
return TQString::null;
|
|
}
|
|
|
|
TQString KOnlineBankingStatus::headerVersion(void) const
|
|
{
|
|
if(m_headerVersion)
|
|
return m_headerVersion->headerVersion();
|
|
return TQString::null;
|
|
}
|
|
|
|
#include "konlinebankingstatus.moc"
|
|
|