749cdc1a99a90df6d966ab041079d2412d4ac089
[kivitendo-erp.git] / templates / webpages / part / ajax_autocomplete.html
1 [%- USE HTML %][%  USE JSON %][
2 [%- FOREACH part = SELF.parts %]
3  {
4    "label": [% JSON.json(part.partnumber _ " " _ part.description) %],
5    "value": [% part.${SELF.value}.json %],
6    "id": [% part.id.json %],
7    "partnumber": [% part.partnumber.json %],
8    "description": [% part.description.json %],
9    "type": [% part.type.json %]
10   }[% ',' UNLESS loop.last %]
11 [%- END %]
12 ]