Add the company relation and read-only form to edit
I do not have more time to update the update to the company today, but i
believe this is already a good amount of work for a commit.
The company is going to be used for row level security, as users will
only have access to the data from companies they are granted access, by
virtue of being in the company_user relation.
I did not know how add a row level security policy to the company_user
because i needed the to select on the same relation and this is not
allowed, because it would create an infinite loop.
Had to add the vat, pg_libphonenumber, and uri extensions in order to
validate VAT identification numbers, phone numbers, and URIs,
repectively. These libraries are not in Debian, but i created packages
for them all in https://dev.tandem.ws/tandem.
2023-01-24 20:46:07 +00:00
|
|
|
{{ define "content" }}
|
|
|
|
<section class="dialog-content">
|
|
|
|
<h2>{{(pgettext "Tax Details" "title")}}</h2>
|
|
|
|
<form method="POST">
|
|
|
|
<div class="input">
|
|
|
|
<input type="text" name="business_name" id="business_name" required="required" value="{{ .BusinessName }}" placeholder="{{( pgettext "Business name" "input" )}}">
|
|
|
|
<label for="business_name">{{( pgettext "Business name" "input" )}}</label>
|
|
|
|
</div>
|
|
|
|
<div class="input">
|
|
|
|
<input type="text" name="vatin" id="vatin" required="required" value="{{ .VATIN }}" placeholder="{{( pgettext "VAT number" "input" )}}">
|
|
|
|
<label for="vatin">{{( pgettext "VAT number" "input" )}}</label>
|
|
|
|
</div>
|
|
|
|
<div class="input">
|
|
|
|
<input type="text" name="trade_name" id="trade_name" value="{{ .TradeName }}" placeholder="{{( pgettext "Trade name" "input" )}}">
|
|
|
|
<label for="trade_name">{{( pgettext "Trade name" "input" )}}</label>
|
|
|
|
</div>
|
|
|
|
<div class="input">
|
|
|
|
<input type="tel" name="phone" id="phone" required="required" value="{{ .Phone }}" placeholder="{{( pgettext "Phone" "input" )}}">
|
|
|
|
<label for="phone">{{( pgettext "Phone" "input" )}}</label>
|
|
|
|
</div>
|
|
|
|
<div class="input">
|
|
|
|
<input type="email" name="email" id="email" required="required" value="{{ .Email }}" placeholder="{{( pgettext "Email" "input" )}}">
|
|
|
|
<label for="email">{{( pgettext "Email" "input" )}}</label>
|
|
|
|
</div>
|
|
|
|
<div class="input">
|
|
|
|
<input type="url" name="web" id="web" value="{{ .Web }}" placeholder="{{( pgettext "Web" "input" )}}">
|
|
|
|
<label for="web">{{( pgettext "Web" "input" )}}</label>
|
|
|
|
</div>
|
|
|
|
<div class="input">
|
|
|
|
<input type="text" name="address" id="address" class="width-2x" required="required" value="{{ .Address }}" placeholder="{{( pgettext "Address" "input" )}}">
|
|
|
|
<label for="address">{{( pgettext "Address" "input" )}}</label>
|
|
|
|
</div>
|
|
|
|
<div class="input">
|
|
|
|
<input type="text" name="city" id="city" required="required" value="{{ .City }}" placeholder="{{( pgettext "City" "input" )}}">
|
|
|
|
<label for="city">{{( pgettext "City" "input" )}}</label>
|
|
|
|
</div>
|
|
|
|
<div class="input">
|
|
|
|
<input type="text" name="province" id="province" required="required" value="{{ .City }}" placeholder="{{( pgettext "Province" "input" )}}">
|
|
|
|
<label for="province">{{( pgettext "Province" "input" )}}</label>
|
|
|
|
</div>
|
|
|
|
<div class="input">
|
|
|
|
<input type="text" name="postal_code" id="postal_code" required="required" value="{{ .PostalCode }}" placeholder="{{( pgettext "Postal code" "input" )}}">
|
|
|
|
<label for="postal_code">{{( pgettext "Postal code" "input" )}}</label>
|
|
|
|
</div>
|
2023-01-27 20:30:14 +00:00
|
|
|
|
Add the company relation and read-only form to edit
I do not have more time to update the update to the company today, but i
believe this is already a good amount of work for a commit.
The company is going to be used for row level security, as users will
only have access to the data from companies they are granted access, by
virtue of being in the company_user relation.
I did not know how add a row level security policy to the company_user
because i needed the to select on the same relation and this is not
allowed, because it would create an infinite loop.
Had to add the vat, pg_libphonenumber, and uri extensions in order to
validate VAT identification numbers, phone numbers, and URIs,
repectively. These libraries are not in Debian, but i created packages
for them all in https://dev.tandem.ws/tandem.
2023-01-24 20:46:07 +00:00
|
|
|
<div class="input">
|
2023-01-27 23:11:56 +00:00
|
|
|
<select id="country" name="country" class="width-fixed">
|
2023-01-27 20:30:14 +00:00
|
|
|
{{- range $country := .Countries }}
|
|
|
|
<option value="{{ .Code }}" {{ if eq .Code $.CountryCode }}selected="selected"{{ end }}>{{ .Name }}</option>
|
|
|
|
{{- end }}
|
|
|
|
</select>
|
|
|
|
<label for="country">{{( pgettext "Country" "input" )}}<label>
|
Add the company relation and read-only form to edit
I do not have more time to update the update to the company today, but i
believe this is already a good amount of work for a commit.
The company is going to be used for row level security, as users will
only have access to the data from companies they are granted access, by
virtue of being in the company_user relation.
I did not know how add a row level security policy to the company_user
because i needed the to select on the same relation and this is not
allowed, because it would create an infinite loop.
Had to add the vat, pg_libphonenumber, and uri extensions in order to
validate VAT identification numbers, phone numbers, and URIs,
repectively. These libraries are not in Debian, but i created packages
for them all in https://dev.tandem.ws/tandem.
2023-01-24 20:46:07 +00:00
|
|
|
</div>
|
2023-01-27 20:30:14 +00:00
|
|
|
|
2023-01-27 00:08:03 +00:00
|
|
|
<button type="submit">{{( pgettext "Save changes" "action" )}}</button>
|
Add the company relation and read-only form to edit
I do not have more time to update the update to the company today, but i
believe this is already a good amount of work for a commit.
The company is going to be used for row level security, as users will
only have access to the data from companies they are granted access, by
virtue of being in the company_user relation.
I did not know how add a row level security policy to the company_user
because i needed the to select on the same relation and this is not
allowed, because it would create an infinite loop.
Had to add the vat, pg_libphonenumber, and uri extensions in order to
validate VAT identification numbers, phone numbers, and URIs,
repectively. These libraries are not in Debian, but i created packages
for them all in https://dev.tandem.ws/tandem.
2023-01-24 20:46:07 +00:00
|
|
|
</form>
|
|
|
|
</section>
|
|
|
|
{{- end }}
|