<input i18n-placeholder placeholder="Provider Phone" [ngModelOptions]="{standalone: true}" [(ngModel)]="providerPhone" type="text" class="form-control" />
</div>
<div class="col-lg-2">
- <eg-combobox i18n-placeholder placeholder="Currency" idlClass="acqct" (onChange)="providerCurrencyType = $event ? $event.code : null"></eg-combobox>
+ <eg-combobox i18n-placeholder placeholder="Currency" idlClass="acqct" (onChange)="providerCurrencyType = $event ? $event.id : null" [asyncSupportsEmptyTermClick]="true"></eg-combobox>
</div>
</div>
});
}
if (this.providerCurrencyType) {
- searchTerms.push({ classes: ['acqpro'], fields: ['currency_type'], op: 'ilike', value: this.providerCurrencyType });
+ searchTerms.push({ classes: ['acqpro'], fields: ['currency_type'], op: '=', value: this.providerCurrencyType });
}
if (this.providerSAN) {
searchTerms.push({ classes: ['acqpro'], fields: ['san'], op: 'ilike', value: this.providerSAN });
flesh_fields: { acqpro: [
'attributes', 'holdings_subfields', 'contacts',
'addresses', 'provider_notes',
- 'edi_accounts',
+ 'edi_accounts', 'currency_type'
],
acqpa: ['provider'],
acqpc: ['provider','addresses'],