Lines 181-200
Link Here
|
181 |
</li> |
181 |
</li> |
182 |
<li class="quantity"> |
182 |
<li class="quantity"> |
183 |
<label for="quantity_record_[% biblio.import_record_id | html %]" class="required">Quantity: </label> |
183 |
<label for="quantity_record_[% biblio.import_record_id | html %]" class="required">Quantity: </label> |
184 |
<input id="quantity_record_[% biblio.import_record_id | html %]" type="text" pattern="[0-9]+" value="[% biblio.quantity.length ? biblio.quantity : 1 | html %]" name="quantity" /> |
184 |
<input id="quantity_record_[% biblio.import_record_id | html %]" type="text" pattern="[0-9]+" value="[% biblio.quantity.length ? biblio.quantity : 1 | html %]" name="quantity_[% biblio.import_record_id | html %]" /> |
185 |
<span class="required">Required</span> |
185 |
<span class="required">Required</span> |
186 |
</li> |
186 |
</li> |
187 |
<li class="price"> |
187 |
<li class="price"> |
188 |
<label for="price_record_[% biblio.import_record_id | html %]">Price: </label> |
188 |
<label for="price_record_[% biblio.import_record_id | html %]">Price: </label> |
189 |
<input id="price_record_[% biblio.import_record_id | html %]" type="text" value="[% biblio.price | html %]" name="price" /> |
189 |
<input id="price_record_[% biblio.import_record_id | html %]" type="text" value="[% biblio.price | html %]" name="price_[% biblio.import_record_id | html %]" /> |
190 |
</li> |
190 |
</li> |
191 |
<li class="replacementprice"> |
191 |
<li class="replacementprice"> |
192 |
<label for="replacementprice_record_[% biblio.import_record_id | html %]">Replacement price: </label> |
192 |
<label for="replacementprice_record_[% biblio.import_record_id | html %]">Replacement price: </label> |
193 |
<input id="replacementprice_record_[% biblio.import_record_id | html %]" type="text" value="[% biblio.replacementprice | html %]" name="replacementprice" /> |
193 |
<input id="replacementprice_record_[% biblio.import_record_id | html %]" type="text" value="[% biblio.replacementprice | html %]" name="replacementprice_[% biblio.import_record_id | html %]" /> |
194 |
</li> |
194 |
</li> |
195 |
<li class="discount"> |
195 |
<li class="discount"> |
196 |
<label for="discount_record_[% biblio.import_record_id | html %]">Discount: </label> |
196 |
<label for="discount_record_[% biblio.import_record_id | html %]">Discount: </label> |
197 |
<input id="discount_record_[% biblio.import_record_id | html %]" type="text" value="[% biblio.discount | html %]" name="discount" size="6" /> % |
197 |
<input id="discount_record_[% biblio.import_record_id | html %]" type="text" value="[% biblio.discount | html %]" name="discount_[% biblio.import_record_id | html %]" size="6" /> % |
198 |
<div class="hint">If empty, discount rate from vendor will be used</div> |
198 |
<div class="hint">If empty, discount rate from vendor will be used</div> |
199 |
</li> |
199 |
</li> |
200 |
<li class="fund"> |
200 |
<li class="fund"> |
Lines 203-209
Link Here
|
203 |
<input type="hidden" size="20" name="budget_id" value="[% budget_id | html %]" />[% Budget_name | html %] |
203 |
<input type="hidden" size="20" name="budget_id" value="[% budget_id | html %]" />[% Budget_name | html %] |
204 |
[% ELSE %] |
204 |
[% ELSE %] |
205 |
<label for="fund_record_[% biblio.import_record_id | html %]">Fund: </label> |
205 |
<label for="fund_record_[% biblio.import_record_id | html %]">Fund: </label> |
206 |
<select id="fund_record_[% biblio.import_record_id | html %]" name="budget_id"> |
206 |
<select id="fund_record_[% biblio.import_record_id | html %]" name="budget_id_[% biblio.import_record_id | html %]"> |
207 |
<option value="">Select a fund (will use default if set)</option> |
207 |
<option value="">Select a fund (will use default if set)</option> |
208 |
[% FOREACH budget IN budget_loop %] |
208 |
[% FOREACH budget IN budget_loop %] |
209 |
[% IF ( budget.b_id == biblio.budget_id ) %] |
209 |
[% IF ( budget.b_id == biblio.budget_id ) %] |
Lines 224-234
Link Here
|
224 |
</li> |
224 |
</li> |
225 |
<li class="sort1"> |
225 |
<li class="sort1"> |
226 |
<label for="sort1_record_[% biblio.import_record_id | html %]">Statistic 1: </label> |
226 |
<label for="sort1_record_[% biblio.import_record_id | html %]">Statistic 1: </label> |
227 |
<input id="sort1_record_[% biblio.import_record_id | html %]" type="text" size="20" name="sort1" value="[% biblio.sort1 | html %]" /> |
227 |
<input id="sort1_record_[% biblio.import_record_id | html %]" type="text" size="20" name="sort1_[% biblio.import_record_id | html %]" value="[% biblio.sort1 | html %]" /> |
228 |
</li> |
228 |
</li> |
229 |
<li class="sort2"> |
229 |
<li class="sort2"> |
230 |
<label for="sort2_record_[% biblio.import_record_id | html %]">Statistic 2: </label> |
230 |
<label for="sort2_record_[% biblio.import_record_id | html %]">Statistic 2: </label> |
231 |
<input id="sort2_record_[% biblio.import_record_id | html %]" type="text" size="20" name="sort2" value="[% biblio.sort2 | html %]" /> |
231 |
<input id="sort2_record_[% biblio.import_record_id | html %]" type="text" size="20" name="sort2_[% biblio.import_record_id | html %]" value="[% biblio.sort2 | html %]" /> |
232 |
</li> |
232 |
</li> |
233 |
</ol> |
233 |
</ol> |
234 |
[% IF ( biblio.iteminfos.size ) %] |
234 |
[% IF ( biblio.iteminfos.size ) %] |
235 |
- |
|
|