31 lines
840 B
HTML
31 lines
840 B
HTML
<uikit-field [label]="label" [control]="control" [showLabel]="showLabel" [showErrors]="showErrors">
|
|
<p-select
|
|
[loading]="loading()"
|
|
[options]="items()"
|
|
optionLabel="name"
|
|
[optionValue]="selectOptionValue"
|
|
placeholder="انتخاب شریک تجاری"
|
|
[formControl]="control"
|
|
[showClear]="showClear"
|
|
[filter]="true"
|
|
appendTo="body"
|
|
>
|
|
@if (canInsert) {
|
|
<ng-template #footer>
|
|
<div class="p-3">
|
|
<p-button
|
|
label="افزودن شریک تجاری"
|
|
fluid
|
|
severity="secondary"
|
|
text
|
|
size="small"
|
|
icon="pi pi-plus"
|
|
(onClick)="onOpenForm()"
|
|
/>
|
|
</div>
|
|
</ng-template>
|
|
}
|
|
</p-select>
|
|
<partner-form [(visible)]="isOpenFormDialog" (onSubmit)="refresh()" />
|
|
</uikit-field>
|