blob: d83034728652fa1461c99f47fe81f9836c0b9543 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
/***************************************************************************
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 "removeloans.h"
#include "../document.h"
#include "../entry.h"
#include "../controller.h"
#include "../calendarhandler.h"
#include "../tellico_debug.h"
#include <tdelocale.h>
using Tellico::Command::RemoveLoans;
RemoveLoans::RemoveLoans(Data::LoanVec loans_)
: KCommand()
, m_loans(loans_)
{
}
void RemoveLoans::execute() {
if(m_loans.isEmpty()) {
return;
}
// not all of the loans might be in the calendar
Data::LoanVec calLoans;
// remove the loans from the borrowers
for(Data::LoanVec::Iterator loan = m_loans.begin(); loan != m_loans.end(); ++loan) {
if(loan->inCalendar()) {
calLoans.append(loan);
}
loan->borrower()->removeLoan(loan);
Data::Document::self()->checkInEntry(loan->entry());
Data::EntryVec vec;
vec.append(loan->entry());
Controller::self()->modifiedEntries(vec);
Controller::self()->modifiedBorrower(loan->borrower());
}
if(!calLoans.isEmpty()) {
CalendarHandler::removeLoans(calLoans);
}
}
void RemoveLoans::unexecute() {
if(m_loans.isEmpty()) {
return;
}
// not all of the loans might be in the calendar
Data::LoanVec calLoans;
for(Data::LoanVec::Iterator loan = m_loans.begin(); loan != m_loans.end(); ++loan) {
if(loan->inCalendar()) {
calLoans.append(loan);
}
loan->borrower()->addLoan(loan);
Data::Document::self()->checkOutEntry(loan->entry());
Data::EntryVec vec;
vec.append(loan->entry());
Controller::self()->modifiedEntries(vec);
Controller::self()->modifiedBorrower(loan->borrower());
}
if(!calLoans.isEmpty()) {
CalendarHandler::addLoans(calLoans);
}
}
TQString RemoveLoans::name() const {
return m_loans.count() > 1 ? i18n("Check-in Entries")
: i18n("Check-in (Entry Title)", "Check-in %1").arg(m_loans.begin()->entry()->title());
}
|