Make refund policy for lost items a branding option
authorDan Scott <dan@coffeecode.net>
Mon, 2 May 2011 12:33:54 +0000 (08:33 -0400)
committerDan Scott <dan@coffeecode.net>
Mon, 2 May 2011 12:33:54 +0000 (08:33 -0400)
Different sites will have different policies for refunds
on lost items (and might not even provide refunds for lost
items, for that matter), so break out that policy description
into its own template and provide a KCLS-specific version of
it.

Signed-off-by: Dan Scott <dbs@coffeecode.net>

Open-ILS/web/templates/default/opac/myopac/main.tt2
Open-ILS/web/templates/default/opac/myopac/main_refund_policy.tt2 [new file with mode: 0644]
Open-ILS/web/templates_kcls/default/opac/myopac/main.tt2 [deleted file]
Open-ILS/web/templates_kcls/default/opac/myopac/main_refund_policy.tt2 [new file with mode: 0644]

index 03347fb..c00356f 100644 (file)
                     </button>
                 </td>
             </tr>
-            <tr>
-                <td colspan="3">
-                    <br />
-                    Important! You must have a printed receipt to be
-                    eligible for a refund on lost items (regulations allow
-                    for no exceptions).
-                    <br />
-                    <strong>
-                        To ensure your necessary receipt information is
-                        not lost, enter your email address above and a
-                        receipt will be emailed to you. Otherwise, make
-                        certain you have a printed receipt in hand before
-                        closing the payment receipt screen.
-                    </strong>
-                    <br />
-                    Refunds are not available for parts and pieces, overdue
-                    fines, or items that do not display a specific title in
-                    My Account. For a full list of refundable and
-                    non-refundable items, visit
-                    <a href="http://www.kcls.org/usingthelibrary/borrowing/refundable.cfm">http://www.kcls.org/usingthelibrary/borrowing/refundable.cfm</a><br /><br />
-                    This site uses VeriSign SSL encryption to ensure your
-                    privacy.
-                </td>
-            </tr>
+            [% INCLUDE "default/opac/myopac/main_refund_policy.tt2" %]
         </tbody>
     </table>
 </div>
diff --git a/Open-ILS/web/templates/default/opac/myopac/main_refund_policy.tt2 b/Open-ILS/web/templates/default/opac/myopac/main_refund_policy.tt2
new file mode 100644 (file)
index 0000000..a1a81f9
--- /dev/null
@@ -0,0 +1,16 @@
+<tr>
+    <td colspan="3">
+        <br />
+        Important! You must have a printed receipt to be
+        eligible for a refund on lost items (regulations allow
+        for no exceptions).
+        <br />
+        <strong>
+            To ensure your necessary receipt information is
+            not lost, enter your email address above and a
+            receipt will be emailed to you. Otherwise, make
+            certain you have a printed receipt in hand before
+            closing the payment receipt screen.
+        </strong>
+    </td>
+</tr>
diff --git a/Open-ILS/web/templates_kcls/default/opac/myopac/main.tt2 b/Open-ILS/web/templates_kcls/default/opac/myopac/main.tt2
deleted file mode 100644 (file)
index 03347fb..0000000
+++ /dev/null
@@ -1,334 +0,0 @@
-[%  PROCESS "default/opac/parts/header.tt2";
-    PROCESS "default/opac/parts/misc_util.tt2";
-    WRAPPER "default/opac/parts/myopac/main_base.tt2";
-    myopac_page = "main";
-    myopac_main_page = "main";
-%]
-
-    [% IF ctx.fines.circulation.size > 0 %]
-    <div id='myopac_circ_trans_div'>
-        <table width='100%' class='data_grid'>
-            <thead>
-                <tr>
-                    <td colspan='10' style='padding: 6px'>
-                        <strong>[% l("Fines") %]</strong>
-                    </td>
-                </tr>
-                <tr>
-                    <td>[% l("Title") %]</td>
-                    <td>[% l("Author") %]</td>
-                    <td>[% l("Checkout Date") %]</td>
-                    <td>[% l("Due Date") %]</td>
-                    <td>[% l("Date Returned") %]</td>
-                    <td>[% l("Balance Owed") %]</td>
-                    <!-- TODO: hidden until pay-fines is implemented
-                    <td nowrap="nowrap" style="white-space:nowrap;">
-                        <input id="pay_fines_box1" checked="checked"
-                            type="checkbox" title="[% l('Click to (un)select all fines') %]" />
-                        <label for="pay_fines_box1">[% l('Pay Fines') %]</label>
-                    </td>
-                    -->
-                </tr>
-            </thead>
-            <tbody id='myopac_circ_trans_tbody'>
-                [% FOR f IN ctx.fines.circulation;
-                    attrs = {marc_xml => f.marc_xml};
-                    IF f.marc_xml;
-                        PROCESS get_marc_attrs args=attrs;
-                    ELSIF f.xact.reservation;
-                        attrs.title = f.xact.reservation.target_resource_type.name;
-                    END %]
-                <tr id='myopac_circ_trans_row'>
-                    <td>
-                        [% recid = f.xact.circulation.target_copy.call_number.record.id || f.xact.reservation.target_resource_type.record.id;
-                        IF recid; %]
-                        <a href="[% ctx.opac_root %]/record/[% recid %]">[% attrs.title %]</a>
-                        [% ELSE %]
-                        [% attrs.title %]
-                        [% END %]
-                    </td>
-                    <td>
-                        <a href="[% ctx.opac_root %]/results?qtype=author&query=[% attrs.author | replace('[,\.:;]', '') | url %]">[% attrs.author %]</a>
-                    </td>
-                    <td name='myopac_circ_trans_start'>
-                        [% ts = f.xact.circulation.xact_start || f.xact.reservation.start_time || 0;
-                        IF ts;
-                            date.format(ctx.parse_datetime(ts), DATE_FORMAT);
-                        END %]
-                    </td>
-                    <td name='myopac_circ_trans_due'>
-                        [% ts = f.xact.circulation.due_date || f.xact.reservation.end_time || 0;
-                        IF ts;
-                            date.format(ctx.parse_datetime(ts), DATE_FORMAT);
-                        END %]
-                    </td>
-                    <td name='myopac_circ_trans_finished'>
-                        [%  ts = f.xact.circulation.checkin_time || f.xact.reservation.return_time || 0;
-                            IF ts;
-                                date.format(ctx.parse_datetime(ts), DATE_FORMAT);
-                            ELSE %]
-                            <!-- XXX TODO fines aren't really accruing
-                                if circ has hit maxfines. more clarity
-                                here? -->
-                            <span class="red">[% l('(fines accruing)') %]</span>
-                        [%  END %]
-                    </td>
-                    <td>
-                        <strong class="red">
-                            [% money(f.xact.balance_owed) %]
-                        </strong>
-                    </td>
-                    <!-- TODO: hidden until pay-fines is implemented
-                    <td>
-                        <input type="checkbox" name="selector" title="[% l('Pay this fine') %]" />
-                    </td>
-                    -->
-                </tr>
-                [% END %]
-            </tbody>
-        </table>
-    </div>
-    [% END %]
-
-    [% IF ctx.fines.grocery.size > 0 %]
-    <!-- Table for all non-circulation transactions -->
-    <div id='myopac_trans_div'>
-        <br/>
-        <hr class='opac-auto-013'  color="#dcdbdb" />
-        <br/>
-        <table width='100%' class='data_grid data_grid_center'
-            id='myopac_trans_table'>
-            <thead>
-                <tr>
-                    <td colspan='8' style='padding: 6px'>
-                        <b>[% l("Other Fees") %]</b>
-                    </td>
-                </tr>
-                <tr>
-                    <td width='16%'>[% l("Transaction Start Time") %]</td>
-                    <td width='16%'>[% l("Last Payment Time") %]</td>
-                    <td width='16%'>[% l("Initial Amount Owed") %]</td>
-                    <td width='16%'>[% l("Total Amount Paid") %]</td>
-                    <td width='16%'>[% l("Balance Owed") %]</td>
-                    <td width='16%'>[% l("Billing Type") %]</td>
-                    <!-- TODO: hidden until pay-fines is implemented
-                    <td width='4%' align="center" nowrap="nowrap"
-                        style="white-space:nowrap;">
-                        <input id="pay_fines_box2" checked="checked"
-                            type="checkbox"
-                            title="[% l('Click to (un)select all fines') %]" />
-                        <label for="pay_fines_box2">[% l("Pay Fines") %]</label>
-                    </td>
-                    -->
-                </tr>
-            </thead>
-            <tbody id='myopac_trans_tbody'>
-                [% FOR f IN ctx.fines.grocery %]
-                <tr id='myopac_trans_row'>
-                    <td>[% date.format(
-                            ctx.parse_datetime(f.xact.xact_start),
-                            DATE_FORMAT
-                    ) %]</td>
-                    <td>
-                        [%  IF f.xact.last_payment_ts;
-                                date.format(
-                                    ctx.parse_datetime(
-                                        f.xact.last_payment_ts
-                                    ), DATE_FORMAT
-                                );
-                            END %]
-                    </td>
-                    <td>[% money(f.xact.total_owed) %]</td>
-                    <td>[% money(f.xact.total_paid) %]</td>
-                    <td class="red">
-                        <strong>
-                            [% money(f.xact.balance_owed) %]
-                        </strong>
-                    </td>
-                    <td>[% f.xact.last_billing_type %]</td>
-                    <!-- TODO: hidden until pay-fines is implemented
-                    <td>
-                        <input type="checkbox" name='selector' title='[% l("Pay this fine") %]'/>
-                    </td>
-                    -->
-                </tr>
-                [% END %]
-            </tbody>
-        </table>
-    </div>
-    [% END %]
-
-<!-- TODO: move payment form to its own page -->
-
-<div id="pay_fines_now" class="hide_me">
-    <table id='oils-selfck-cc-payment-table'>
-        <tbody>
-            <tr>
-                <td><div style="width:129px;"></div></td>
-                <td><div style="width:195px;"></div></td>
-                <td><div style="width:324px;"></div></td>
-            </tr>
-            <tr>
-                <td colspan='2'><strong>Billing Information</strong></td>
-                <td rowspan='13' valign='top'>
-                    Selected fines you are paying for:
-                    <table cellpadding="0" cellspacing="5" border="0">
-                        <thead>
-                            <tr>
-                                <td>
-                                    <strong>Name</strong>
-                                </td>
-                                <td>
-                                    <strong>Amount</strong>
-                                </td>
-                            </tr>
-                        </thead>
-                        <tbody id="selectedFines">
-                        </tbody>
-                    </table>
-                    <br />
-                    <div id='oils-selfck-cc-payment-summary'>
-                        Total amount to pay:
-                        <strong>$<span></span></strong>
-                    </div>
-                    <br />
-                    Click <strong>Cancel</strong> to go back and (un)select
-                    other fines.
-                </td>
-            </tr>
-            <tr>
-                <td>First Name</td>
-                <td><input jsId='oilsSelfckCCFName' /></td>
-            </tr>
-            <tr>
-                <td>Last Name</td>
-                <td><input jsId='oilsSelfckCCLName' /></td>
-            </tr>
-            <tr>
-                <td>Street Address</td>
-                <td><input jsId='oilsSelfckCCStreet' /></td>
-            </tr>
-            <tr>
-                <td>City</td>
-                <td><input jsId='oilsSelfckCCCity' /></td>
-            </tr>
-            <tr>
-                <td>State or Province</td>
-                <td><input jsId='oilsSelfckCCState' /></td>
-            </tr>
-            <tr>
-                <td>ZIP or Postal Code</td>
-                <td><input jsId='oilsSelfckCCZip' /></td>
-            </tr>
-            <tr>
-              <td colspan='2'><strong>Credit Card Information</strong></td>
-            </tr>
-            <!-- Technically not needed since card type is derived from the CC number
-            <tr>
-                <td>Type of Card</td>
-                <td>
-                    <select jsId='oilsSelfckCCType' required='true'>
-                        <option value='VISA'>VISA</option>
-                        <option value='MasterCard'>MasterCard</option>
-                        <option value='American Express'>American Express</option>
-                    </select>
-                </td>
-            </tr>
-            -->
-            <tr>
-                <td>Credit Card #</td>
-                <td><input jsId='oilsSelfckCCNumber' /></td>
-            </tr>
-            <tr>
-                <td>
-                    <div style="position:absolute;">
-                        <div style="position:relative;left:80px;">
-                            <a href="#"><img
-                                src="[% ctx.media_prefix %]/images/question-mark.png" /></a>
-                        </div>
-                    </div>
-                    Security Code
-                </td>
-                <td>
-                    <input jsId='oilsSelfckCCCVV' />
-                </td>
-            </tr>
-            <tr>
-                <td>Exipration Month</td>
-                <td>
-                    <select jsId='oilsSelfckCCMonth'>
-                        <option value='01' selected='selected'>January</option>
-                        <option value='02'>February</option>
-                        <option value='03'>March</option>
-                        <option value='04'>April</option>
-                        <option value='05'>May</option>
-                        <option value='06'>June</option>
-                        <option value='07'>July</option>
-                        <option value='08'>August</option>
-                        <option value='09'>September</option>
-                        <option value='10'>October</option>
-                        <option value='11'>November</option>
-                        <option value='12'>December</option>
-                    </select>
-                </td>
-            </tr>
-            <tr>
-                <td>Expiration Year</td>
-                <td>
-                  <select jsId='oilsSelfckCCYear'>
-                    <option value='2011'>2011</option>
-                    <option value='2012'>2012</option>
-                    <option value='2013'>2013</option>
-                    <option value='2014'>2014</option>
-                    <option value='2015'>2015</option>
-                    <option value='2016'>2016</option>
-                    <option value='2017'>2017</option>
-                    <option value='2018'>2018</option>
-                    <option value='2019'>2019</option>
-                  </select>
-                </td>
-            </tr>
-            <tr class="hide_me">
-                <td>Edit Billing Address</td>
-                <td>
-                    <input jsId='oilsSelfckEditDetails'/>
-                </td>
-            </tr>
-            <tr>
-                <td colspan='2' align="center">
-                    <button jsId='oilsSelfckCCSubmit'>
-                        Submit Payment
-                    </button>
-                    <button>
-                        Cancel
-                    </button>
-                </td>
-            </tr>
-            <tr>
-                <td colspan="3">
-                    <br />
-                    Important! You must have a printed receipt to be
-                    eligible for a refund on lost items (regulations allow
-                    for no exceptions).
-                    <br />
-                    <strong>
-                        To ensure your necessary receipt information is
-                        not lost, enter your email address above and a
-                        receipt will be emailed to you. Otherwise, make
-                        certain you have a printed receipt in hand before
-                        closing the payment receipt screen.
-                    </strong>
-                    <br />
-                    Refunds are not available for parts and pieces, overdue
-                    fines, or items that do not display a specific title in
-                    My Account. For a full list of refundable and
-                    non-refundable items, visit
-                    <a href="http://www.kcls.org/usingthelibrary/borrowing/refundable.cfm">http://www.kcls.org/usingthelibrary/borrowing/refundable.cfm</a><br /><br />
-                    This site uses VeriSign SSL encryption to ensure your
-                    privacy.
-                </td>
-            </tr>
-        </tbody>
-    </table>
-</div>
-[% END %]
diff --git a/Open-ILS/web/templates_kcls/default/opac/myopac/main_refund_policy.tt2 b/Open-ILS/web/templates_kcls/default/opac/myopac/main_refund_policy.tt2
new file mode 100644 (file)
index 0000000..9ad8bc0
--- /dev/null
@@ -0,0 +1,24 @@
+<tr>
+    <td colspan="3">
+        <br />
+        Important! You must have a printed receipt to be
+        eligible for a refund on lost items (regulations allow
+        for no exceptions).
+        <br />
+        <strong>
+            To ensure your necessary receipt information is
+            not lost, enter your email address above and a
+            receipt will be emailed to you. Otherwise, make
+            certain you have a printed receipt in hand before
+            closing the payment receipt screen.
+        </strong>
+        <br />
+        Refunds are not available for parts and pieces, overdue
+        fines, or items that do not display a specific title in
+        My Account. For a full list of refundable and
+        non-refundable items, visit
+        <a href="http://www.kcls.org/usingthelibrary/borrowing/refundable.cfm">http://www.kcls.org/usingthelibrary/borrowing/refundable.cfm</a><br /><br />
+        This site uses VeriSign SSL encryption to ensure your
+        privacy.
+    </td>
+</tr>