Tariff
Automated product pricing (APP Web) for inventory and sales workflows — price lists, margin rules, and POS-ready exports.
Overview
Tariff connects catalog items to pricing rules so retail staff stop copying numbers between inventory sheets and the sales floor. The pilot targets TypeScript + React with a single source of truth for SKU price, discount tiers, and effective dates.
What it covers
- SKU-linked base price and margin configuration
- Effective-date pricing without retroactive surprises
- Inventory sync hooks for stock-aware quotes
- Export formats aligned to branch POS intake
export interface PriceRule {
skuId: string;
baseCostCents: number;
marginPercent: number;
effectiveFrom: string;
effectiveTo: string | null;
}
export interface TariffLine {
skuId: string;
unitPriceCents: number;
currency: 'PHP';
}