diff --git a/priceByCustomer.ts b/priceByCustomer.ts index b31b0af..c8df0c4 100644 --- a/priceByCustomer.ts +++ b/priceByCustomer.ts @@ -11,6 +11,7 @@ export interface PriceByCustomerQuery { paginacion?: Paginacion; /// Filtro por el código del cliente ("Code" en Customer.) filter?: string; + SKUCode?: string; customer?: QueryCustomer; } @@ -35,6 +36,9 @@ export async function getPricesByCustomer( if (options.filter) { searchParams.set("filter", options.filter); } + if (options.SKUCode) { + searchParams.set("SKUCode", options.SKUCode); + } if (options.customer) { queryCustomerToSearchParams(options.customer, searchParams); }