diff --git a/app/modules/registrations/templates/registrations/bulk.html b/app/modules/registrations/templates/registrations/bulk.html index d3c48b1..968f0d6 100644 --- a/app/modules/registrations/templates/registrations/bulk.html +++ b/app/modules/registrations/templates/registrations/bulk.html @@ -197,7 +197,7 @@ {% set client_businesses = businesses_by_client.get(client.id, []) %} {% set client_branches = branches_by_client.get(client.id, []) %} + data-search="{{ ((client.client_code or '') ~ ' ' ~ (client.client_name or '') ~ ' ' ~ (client.pan or '') ~ ' ' ~ (gstins_by_client.get(client.id, [])|join(' ')) ~ ' ' ~ (client.trade_name or ''))|lower|e }}"> @@ -208,7 +208,8 @@
PAN: {{ client.pan or '-' }}
-
GSTIN: {{ client.gstin or '-' }}
+ {% set existing_gstins = gstins_by_client.get(client.id, []) %} +
GSTIN: {{ existing_gstins|join(', ') if existing_gstins else '-' }}