projects
/
working
/
SIPServer.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
750a7ad
)
Stub code to handle renewals
author
djfiander
<djfiander>
Sun, 16 Apr 2006 01:40:34 +0000
(
01:40
+0000)
committer
djfiander
<djfiander>
Sun, 16 Apr 2006 01:40:34 +0000
(
01:40
+0000)
ILS/Transaction/Renew.pm
[new file with mode: 0644]
patch
|
blob
diff --git a/ILS/Transaction/Renew.pm
b/ILS/Transaction/Renew.pm
new file mode 100644
(file)
index 0000000..
30ff219
--- /dev/null
+++ b/
ILS/Transaction/Renew.pm
@@ -0,0
+1,23
@@
+#
+# Status of a Renew Transaction
+#
+
+package ILS::Transaction::Renew;
+
+use warnings;
+use strict;
+
+use ILS;
+use ILS::Transaction;
+
+our @ISA = qw(ILS::Transaction);
+
+# most fields are handled by the Transaction superclass
+
+sub renewal_ok {
+ my $self = shift;
+
+ return $self->{renewal_ok} || 0;
+}
+
+1;