Lines 267-273
$(document).ready(function() {
Link Here
|
267 |
<td>[% item.code |html %]</td> |
267 |
<td>[% item.code |html %]</td> |
268 |
<td>[% item.description %]</td> |
268 |
<td>[% item.description %]</td> |
269 |
<td> |
269 |
<td> |
270 |
[% IF item.branches.size > 0 %] |
270 |
[% IF ( item.branches.size && item.branches.size > 0 ) %] |
271 |
[% branches_str = "" %] |
271 |
[% branches_str = "" %] |
272 |
[% FOREACH branch IN item.branches %] |
272 |
[% FOREACH branch IN item.branches %] |
273 |
[% branches_str = branches_str _ " " _ branch.branchname _ "(" _ branch.branchcode _ ")" %] |
273 |
[% branches_str = branches_str _ " " _ branch.branchname _ "(" _ branch.branchcode _ ")" %] |
274 |
- |
|
|