View | Details | Raw Unified | Return to bug 24525
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/pos/pay.tt (-4 / +5 lines)
Lines 112-119 Link Here
112
                                <input type="hidden" name="change" value="0.00"/>
112
                                <input type="hidden" name="change" value="0.00"/>
113
                            </li>
113
                            </li>
114
114
115
                            [% SET payment_types = AuthorisedValues.GetAuthValueDropbox('PAYMENT_TYPE') %]
115
                            [% SET payment_types = [] %]
116
                            [% IF payment_types %]
116
                            [% FOR pt IN AuthorisedValues.GetAuthValueDropbox('PAYMENT_TYPE') %]
117
                                [% NEXT IF pt.authorised_value.grep("^SIP[[:digit:]]{2}$").size() %]
118
                                [% payment_types.push(pt) %]
119
                            [% END %]
117
                            <li>
120
                            <li>
118
                                <label for="payment_type">Payment type: </label>
121
                                <label for="payment_type">Payment type: </label>
119
                                <select name="payment_type" id="payment_type">
122
                                <select name="payment_type" id="payment_type">
Lines 122-128 Link Here
122
                                    [% END %]
125
                                    [% END %]
123
                                </select>
126
                                </select>
124
                            </li>
127
                            </li>
125
                            [% END %]
126
128
127
                            [% IF Koha.Preference('UseCashRegisters') %]
129
                            [% IF Koha.Preference('UseCashRegisters') %]
128
                            <li>
130
                            <li>
129
- 

Return to bug 24525