***

title: "ProductPriceApplicator"
generated: true
---------------

<GenerationInfo sourceFile="packages/core/src/service/helpers/product-price-applicator/product-price-applicator.ts" sourceLine="41" packageName="@vendure/core" />

This helper is used to apply the correct price to a ProductVariant based on the current context
including active Channel, any current Order, etc. If you use the [TransactionalConnection](/current/core/reference/typescript-api/data-access/transactional-connection#transactionalconnection) to
directly query ProductVariants, you will find that the `price` and `priceWithTax` properties will
always be `0` until you use the `applyChannelPriceAndTax()` method:

*Example*

```ts
export class MyCustomService {
  constructor(private connection: TransactionalConnection,
              private productPriceApplicator: ProductPriceApplicator) {}

  getVariant(ctx: RequestContext, id: ID) {
    const productVariant = await this.connection
      .getRepository(ctx, ProductVariant)
      .findOne(id, { relations: ['taxCategory'] });

    await this.productPriceApplicator
      .applyChannelPriceAndTax(productVariant, ctx);

    return productVariant;
  }
}
```

```ts title="Signature"
class ProductPriceApplicator {
    constructor(configService: ConfigService, taxRateService: TaxRateService, zoneService: ZoneService, requestCache: RequestContextCacheService)
    applyChannelPriceAndTax(variant: ProductVariant, ctx: RequestContext, order?: Order, throwIfNoPriceFound:  = false) => Promise<ProductVariant>;
}
```

<div className="members-wrapper">

### applyChannelPriceAndTax

\<MemberInfo kind="method" type={`(variant: <a href='/current/core/reference/typescript-api/entities/product-variant#productvariant'>ProductVariant</a>, ctx: <a href='/current/core/reference/typescript-api/request/request-context#requestcontext'>RequestContext</a>, order?: <a href='/current/core/reference/typescript-api/entities/order#order'>Order</a>, throwIfNoPriceFound:  = false) => Promise<<a href='/current/core/reference/typescript-api/entities/product-variant#productvariant'>ProductVariant</a>>`}   />

Populates the `price` field with the price for the specified channel. Make sure that
the ProductVariant being passed in has its `taxCategory` relation joined.

If the `throwIfNoPriceFound` option is set to `true`, then an error will be thrown if no
price is found for the given Channel.

</div>
