← Crafts
Indent preview

Indent

Procurement pilot Full-stack engineer

Institutional procurement from request through inventory handoff — requisitions, approvals, and stock receipt in one TypeScript workflow.

Overview

Indent covers the path from internal purchase request to goods received in inventory — the institutional counterpart to barangay-facing Docket. Approvers see budget codes, line items, and delivery confirmations without leaving the same audit trail.

Workflow stages

  • Purchase requisition with line-item justification
  • Multi-step approval chains by department
  • Vendor selection and PO generation
  • Inventory handoff when goods are received
manager sign-off PO issued goods arrive inventory update Requisition Approved Ordered Received Stocked
Procurement handoff
export interface RequisitionLine {
  sku: string;
  quantity: number;
  unitCostCents: number;
  justification: string;
}

export type RequisitionStatus =
  | 'draft'
  | 'submitted'
  | 'approved'
  | 'ordered'
  | 'received'
  | 'cancelled';
Indent requisition queue placeholder
Screenshot placeholder — approval queue and receiving checklist.