]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/templates/acq/common/vlagent.tt2
8d5ede7954e8bea114aaf2d1496997ce428a5c93
[working/Evergreen.git] / Open-ILS / src / templates / acq / common / vlagent.tt2
1 [% BLOCK vlagent_form %]
2     <tr>
3         <td>[% l('Upload to Queue') %]</td>
4         <td><div id='acq_vl:existing_queue'></div></td>
5         <td>
6             <span>[% l('Or create a new queue') %]</span>
7             <input dojoType='dijit.form.TextBox' id='acq_vl:queue_name' size='32'></input>
8         </td>
9     </tr>
10     <tr>
11         <td>[% l('Record Match Set') %]</td>
12         <td><div id='acq_vl:match_set'></div></td>
13     </tr>
14     <tr>
15         <td>[% l('Merge Profile') %]</td>
16         <td><div id='acq_vl:merge_profile'></div></td>
17     </tr>
18     <tr>
19         <td>[% l('Import Non-Matching Records') %]</td>
20         <td><input dojoType='dijit.form.CheckBox' id='acq_vl:import_no_match'></input></td>
21         <td><span style='padding-right:10px;'>[% l('Record Source') %]</span> <div id='acq_vl:bib_source'></div></td>
22     </tr>
23     <tr>
24         <td>[% l('Merge On Exact Match (901c)') %]</td>
25         <td><input dojoType='dijit.form.CheckBox' id='acq_vl:auto_overlay_exact'></input></td>
26     </tr>
27     <tr>
28         <td>[% l('Merge On Single Match') %]</td>
29         <td><input dojoType='dijit.form.CheckBox' id='acq_vl:auto_overlay_1match'></input></td>
30     </tr>
31     <tr>
32         <td>[% l('Merge On Best Match') %]</td>
33         <td><input dojoType='dijit.form.CheckBox' id='acq_vl:auto_overlay_best_match'></input></td>
34     </tr>
35     <tr>
36         <td>[% l('Best/Single Match Minimum Quality Ratio') %]</td>
37         <td colspan='4'>
38             <input style='width:3em' value='0.0' id='acq_vl:match_quality_ratio' dojoType='dijit.form.TextBox'/>
39             <span style='padding-left: 10px; font-size:90%'>[% l('New Record Quality / Quality of Best Match') %]</span>
40         </td>
41     </tr>
42     <tr>
43         <td>[% l('Insufficient Quality Fall-Through Profile') %]</td>
44         <td><div id='acq_vl:fall_through_merge_profile'></div></td>
45     </tr>
46     [% IF vl_show_copy_option %]
47     <tr>
48         <td>[% l('Load Items for Imported Records') %]</td>
49         <td><input dojoType='dijit.form.CheckBox' id='acq_vl:create_assets'></input></td>
50     </tr>
51     [% END %]
52 [% END %]
53
54 [% BLOCK vlagent_results %]
55     <table class='oils-generic-table'>
56         <tbody>
57             <tr>
58                 <td>[% l('Lineitems Processed') %]</td>
59                 <td><span id='acq_vl:li-processed'>0</span></td>
60             </tr>
61             <tr>
62                 <td>[% l('Vandelay Records Processed') %]</td>
63                 <td><span id='acq_vl:vqbr-processed'>0</span></td>
64             </tr>
65             <tr>
66                 <td>[% l('Bib Records Merged/Imported') %]</td>
67                 <td><span id='acq_vl:bibs-processed'>0</span></td>
68             </tr>
69             <tr>
70                 <td>[% l('ACQ Copies Processed') %]</td>
71                 <td><span id='acq_vl:lid-processed'>0</span></td>
72             </tr>
73             <tr>
74                 <td>[% l('Debits Encumbered') %]</td>
75                 <td><span id='acq_vl:debits-processed'>0</span></td>
76             </tr>
77             <tr>
78                 <td>[% l('Real Copies Processed') %]</td>
79                 <td><span id='acq_vl:copies-processed'>0</span></td>
80             </tr>
81         </tbody>
82     </table>
83 [% END %]
84