[% IF (entity_id && entity_class == 1) ; text("Edit Vendor") ; ELSIF (entity_class == 1) ; text("Add Vendor") ; ELSIF (entity_id && entity_class == 2) ; text("Edit Customer") ; ELSE ; text("Add Customer") ; END ; %]
[% PROCESS input element_data = { # Only for generate_control_code id = 'person-target-div' type = "hidden" name = "target_div" value = 'person_div' } %] [% PROCESS input element_data = { id = 'person-entity-id' type = "hidden" name = "entity_id" value = entity_id } %] [% PROCESS input element_data = { id = 'person-id' type = "hidden" name = "id" value = person.id } %] [% PROCESS input element_data = { id = 'person-form-id' type = "hidden" name = "form_id" value = form_id } %] [% PROCESS input element_data = { id = 'person-account-class' type = "hidden" name = "account_class" value = account_class } %]
[% PROCESS input element_data = { id = 'person-control-code' label = text('Control Code') type= "text" name = "control_code" value = person.control_code size = "20" } %] [% IF !created_as_class; created_as_class = entity_class; END; # IF !created_as_class %] [% PROCESS select element_data = { id = 'person-entity-class' name = "entity_class" options = entity_classes default_values = [entity_class] text_attr = 'class' value_attr = 'id' label = text('Class') } %] [% PROCESS select element_data = { label = text('Salutation') name = 'salutation_id' default_values = [person.salutation_id] default_blank = 1 options = salutations class = 'salutations' text_attr = 'salutation' value_attr = 'id' required = 'true' } %] [% PROCESS input element_data = { label = text('Given Name') type= "text" name = "first_name" value = person.first_name size = "20" required = 'true' } %] [% PROCESS input element_data = { label = text('Middle Name') type= "text" name = "middle_name" value = person.middle_name size = "20" } %] [% PROCESS input element_data = { label = text('Surname') type= "text" name = "last_name" value = person.last_name size = "20" required = 'true' } %] [% person_country_id = person.country_id; IF !person_country_id; person_country_id = default_country; END; INCLUDE select_country element_data = { id = 'person-country-id' text_attr = "name" value_attr = "id" default_values = [person_country_id] options = country_list name = "country_id" label = text('Country') required = 'true' } %] [% INCLUDE input element_data = { name = 'personal_id', type = 'text', size = '20', value = person.personal_id, label = text('Personal ID') class = 'id', required = 'true' } %] [% INCLUDE input element_data = { name = 'birthdate', type = 'text', value = person.birthdate, label = text('Birthdate'), size = '11', class = 'date', required = 'true' } %]
[% PROCESS button element_data = { id = 'person-generate-control-code' text = text('Generate Control Code') type = "submit" name = "action" value = "generate_control_code" class = "submit" } %] [% PROCESS button element_data = { id = 'person-retrieve' text = text('Retrieve') type = 'submit' name = 'action' value = 'get_by_cc' class = 'submit' } %] [% INCLUDE button element_data = { text = text('Save'), class="submit" type="submit" name="action" value="save_person" } %]
[% FOREACH n = notes %]
[% n.note %]
[% END %]