Sign in

zengzy / rps · Files

Logo

GitLab

  • Back to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • rps
  • frontend
  • .output
  • server
  • chunks
  • _
  • work-order.mjs
  • init2
    a6327828
    zengzy authored
    2026-05-21 16:10:06 +0800  
    Browse Code ยป
work-order.mjs 387 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
const WORK_ORDER_STATUS_VALUES = [
  "draft",
  "pending_dispatch",
  "running",
  "paused",
  "pending_qc",
  "completed",
  "closed"
];
const WORK_ORDER_TRANSITION_ACTION_VALUES = [
  "create",
  "edit_draft",
  "dispatch",
  "pause",
  "resume",
  "close"
];

export { WORK_ORDER_TRANSITION_ACTION_VALUES as W, WORK_ORDER_STATUS_VALUES as a };
//# sourceMappingURL=work-order.mjs.map