|
Lines 75-81
Link Here
|
| 75 |
</div> |
75 |
</div> |
| 76 |
[% END %] |
76 |
[% END %] |
| 77 |
|
77 |
|
| 78 |
|
|
|
| 79 |
[% IF ( barcode_not_unique ) %] |
78 |
[% IF ( barcode_not_unique ) %] |
| 80 |
<div class="dialog alert"> |
79 |
<div class="dialog alert"> |
| 81 |
<strong>Error saving item</strong>: Barcode must be unique. |
80 |
<strong>Error saving item</strong>: Barcode must be unique. |
|
Lines 90-108
Link Here
|
| 90 |
[% IF ( notfoundbarcodes.size ) %] |
89 |
[% IF ( notfoundbarcodes.size ) %] |
| 91 |
<div class="dialog alert"> |
90 |
<div class="dialog alert"> |
| 92 |
<p>Warning, the following barcodes were not found:</p> |
91 |
<p>Warning, the following barcodes were not found:</p> |
|
|
92 |
<br/> |
| 93 |
<table style="margin:auto;"> |
| 94 |
<thead> |
| 95 |
<tr><th>Barcodes not found</th></tr> |
| 96 |
</thead> |
| 97 |
<tbody> |
| 98 |
[% FOREACH notfoundbarcode IN notfoundbarcodes %] |
| 99 |
<tr><td>[% notfoundbarcode |html %]</td></td> |
| 100 |
[% END %] |
| 101 |
</tbody> |
| 102 |
</table> |
| 93 |
</div> |
103 |
</div> |
| 94 |
|
104 |
|
| 95 |
<table style="margin:auto;"> |
|
|
| 96 |
<thead> |
| 97 |
<tr><th>Barcodes not found</th></tr> |
| 98 |
</thead> |
| 99 |
<tbody> |
| 100 |
[% FOREACH notfoundbarcode IN notfoundbarcodes %] |
| 101 |
<tr><td>[% notfoundbarcode |html %]</td></td> |
| 102 |
[% END %] |
| 103 |
</tbody> |
| 104 |
</table> |
| 105 |
|
| 106 |
[% IF ( item_loop ) %] |
105 |
[% IF ( item_loop ) %] |
| 107 |
[% UNLESS ( too_many_items_display ) %] |
106 |
[% UNLESS ( too_many_items_display ) %] |
| 108 |
<h4>The following barcodes were found: </h4> |
107 |
<h4>The following barcodes were found: </h4> |
|
Lines 113-130
Link Here
|
| 113 |
[% IF ( notfounditemnumbers.size ) %] |
112 |
[% IF ( notfounditemnumbers.size ) %] |
| 114 |
<div class="dialog alert"> |
113 |
<div class="dialog alert"> |
| 115 |
<p>Warning, the following itemnumbers were not found:</p> |
114 |
<p>Warning, the following itemnumbers were not found:</p> |
|
|
115 |
<br/> |
| 116 |
<table style="margin:auto;"> |
| 117 |
<thead> |
| 118 |
<tr><th>Itemnumbers not found</th></tr> |
| 119 |
</thead> |
| 120 |
<tbody> |
| 121 |
[% FOREACH notfounditemnumber IN notfounditemnumbers %] |
| 122 |
<tr><td>[% notfounditemnumber |html %]</td></td> |
| 123 |
[% END %] |
| 124 |
</tbody> |
| 125 |
</table> |
| 116 |
</div> |
126 |
</div> |
| 117 |
|
|
|
| 118 |
<table style="margin:auto;"> |
| 119 |
<thead> |
| 120 |
<tr><th>Itemnumbers not found</th></tr> |
| 121 |
</thead> |
| 122 |
<tbody> |
| 123 |
[% FOREACH notfounditemnumber IN notfounditemnumbers %] |
| 124 |
<tr><td>[% notfounditemnumber |html %]</td></td> |
| 125 |
[% END %] |
| 126 |
</tbody> |
| 127 |
</table> |
| 128 |
[% IF ( item_loop ) %] |
127 |
[% IF ( item_loop ) %] |
| 129 |
[% UNLESS ( too_many_items_display ) %] |
128 |
[% UNLESS ( too_many_items_display ) %] |
| 130 |
<h4>The following itemnumbers were found: </h4> |
129 |
<h4>The following itemnumbers were found: </h4> |
| 131 |
- |
|
|