← Crafts
Tariff preview

Tariff

Finance pilot Full-stack engineer

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
SKU master Margin rule Price draft Manager review Active tariff POS export
Pricing publish path
export interface PriceRule {
  skuId: string;
  baseCostCents: number;
  marginPercent: number;
  effectiveFrom: string;
  effectiveTo: string | null;
}

export interface TariffLine {
  skuId: string;
  unitPriceCents: number;
  currency: 'PHP';
}
Tariff pricing table placeholder
Screenshot placeholder — SKU grid with margin and effective dates.