Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 | 1x | <h1>{{ 'account.organization.org_settings' | translate }}</h1>
<!-- Company Profile -->
<div class="row section" data-testing-id="company-info">
<div class="col-10 col-lg-8">
<h2 class="h3">{{ 'account.company_profile.detail.heading' | translate }}</h2>
<div class="row">
<div class="col-md-12">
<dl class="row dl-horizontal dl-separator">
<!-- Company Name -->
<dt class="col-md-4">{{ 'account.company_profile.name.label' | translate }}</dt>
<dd class="col-md-8" data-testing-id="company-field">
{{ customer.companyName }}<br />{{ customer.companyName2 }}
</dd>
<!-- Industry -->
<ng-container *ngIf="customer.industry">
<dt class="col-md-4">{{ 'account.company_profile.industry.label' | translate }}</dt>
<dd class="col-md-8">{{ customer.industry }}</dd>
</ng-container>
<!-- Taxation ID -->
<dt class="col-md-4">{{ 'account.company_profile.taxation_id.label' | translate }}</dt>
<dd class="col-md-8" data-testing-id="taxation-id-field">{{ customer.taxationID }}</dd>
</dl>
</div>
</div>
</div>
<div class="col-2 col-lg-4">
<a
routerLink="/account/organization/settings/company"
class="btn-tool"
[title]="
'account.profile.update.link' | translate : { '0': 'account.company_profile.detail.heading' | translate }
"
data-testing-id="edit-company"
>
<fa-icon [icon]="['fas', 'pencil-alt']" />
</a>
</div>
</div>
<!-- Preferences -->
<div *ngIf="'services.OrderApprovalServiceDefinition.runnable' | ishServerSetting" class="row section">
<div class="col-10 col-lg-8">
<h2 class="h3">{{ 'account.organization.org_settings.preferences.subtitle' | translate }}</h2>
<form class="form-horizontal" [formGroup]="budgetTypeForm" novalidate>
<formly-form
[form]="budgetTypeForm"
[fields]="fields"
[model]="model"
(modelChange)="openConfirmationDialog(budgetTypeChangeConfirmationDialog)"
/>
</form>
</div>
</div>
<!-- budget edit confirmation dialog -->
<ish-modal-dialog
#budgetTypeChangeConfirmationDialog
[options]="{
confirmText: 'account.update.button.label' | translate,
rejectText: 'account.cancel.button.label' | translate,
titleText: 'account.organization.budget_price_type.notification_modal.header' | translate,
icon: ['fas', 'triangle-exclamation'],
iconClass: 'text-warning pe-2'
}"
(confirmed)="submit()"
(closed)="resetValue()"
>
<p>
{{ 'account.organization.budget_price_type.notification_modal.info' | translate }}
</p>
<p [ishServerHtml]="'account.organization.budget_price_type.notification_modal.consequences' | translate"></p>
<ul class="mb-3">
<li>{{ 'account.organization.budget_price_type.notification_modal.reset_to_zero' | translate }}</li>
<li>{{ 'account.organization.budget_price_type.notification_modal.all_effected' | translate }}</li>
</ul>
{{ 'account.organization.budget_price_type.notification_modal.ask' | translate }}
</ish-modal-dialog>
|