|
|
|
/***************************************************************************
|
|
|
|
copyright : (C) 2005-2006 by Robby Stephenson
|
|
|
|
email : robby@periapsis.org
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
/***************************************************************************
|
|
|
|
* *
|
|
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
|
|
* it under the terms of version 2 of the GNU General Public License as *
|
|
|
|
* published by the Free Software Foundation; *
|
|
|
|
* *
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#include "borrower.h"
|
|
|
|
#include "entry.h"
|
|
|
|
#include "tellico_utils.h"
|
|
|
|
|
|
|
|
using Tellico::Data::Loan;
|
|
|
|
using Tellico::Data::Borrower;
|
|
|
|
|
|
|
|
Loan::Loan(Data::EntryPtr entry, const TQDate& loanDate, const TQDate& dueDate, const TQString& note)
|
|
|
|
: TDEShared(), m_uid(Tellico::uid()), m_borrower(0), m_entry(entry), m_loanDate(loanDate), m_dueDate(dueDate),
|
|
|
|
m_note(note), m_inCalendar(false) {
|
|
|
|
}
|
|
|
|
|
|
|
|
Loan::Loan(const Loan& other) : TDEShared(other), m_uid(Tellico::uid()), m_borrower(other.m_borrower),
|
|
|
|
m_entry(other.m_entry), m_loanDate(other.m_loanDate), m_dueDate(other.m_dueDate),
|
|
|
|
m_note(other.m_note), m_inCalendar(false) {
|
|
|
|
}
|
|
|
|
|
|
|
|
Tellico::Data::BorrowerPtr Loan::borrower() const {
|
|
|
|
return m_borrower;
|
|
|
|
}
|
|
|
|
|
|
|
|
Tellico::Data::EntryPtr Loan::entry() const {
|
|
|
|
return m_entry;
|
|
|
|
}
|
|
|
|
|
|
|
|
Borrower::Borrower(const TQString& name_, const TQString& uid_)
|
|
|
|
: TDEShared(), m_name(name_), m_uid(uid_) {
|
|
|
|
}
|
|
|
|
|
|
|
|
Borrower::Borrower(const Borrower& b)
|
|
|
|
: TDEShared(b), m_name(b.m_name), m_uid(b.m_uid), m_loans(b.m_loans) {
|
|
|
|
}
|
|
|
|
|
|
|
|
Borrower& Borrower::operator=(const Borrower& other_) {
|
|
|
|
if(this == &other_) return *this;
|
|
|
|
|
|
|
|
static_cast<TDEShared&>(*this) = static_cast<const TDEShared&>(other_);
|
|
|
|
m_name = other_.m_name;
|
|
|
|
m_uid = other_.m_uid;
|
|
|
|
m_loans = other_.m_loans;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
Tellico::Data::LoanPtr Borrower::loan(Data::ConstEntryPtr entry_) {
|
|
|
|
for(LoanVec::Iterator it = m_loans.begin(); it != m_loans.end(); ++it) {
|
|
|
|
if(it->entry() == entry_) {
|
|
|
|
return it;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Borrower::addLoan(Data::LoanPtr loan_) {
|
|
|
|
if(loan_) {
|
|
|
|
m_loans.append(loan_);
|
|
|
|
loan_->setBorrower(this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Borrower::removeLoan(Data::LoanPtr loan_) {
|
|
|
|
return m_loans.remove(loan_);
|
|
|
|
}
|