> ## Documentation Index
> Fetch the complete documentation index at: https://docs.dirtview.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Cost Code vs. PCO Number

> Which one your accounting team needs, which one the GC needs, and what goes wrong when either is missing.

export const Video = ({id, title, runtime, url}) => {
  const meta = VIDEOS[id] || ({});
  const label = title || meta.title || "Tutorial video";
  const length = runtime || meta.runtime || "";
  const track = meta.track || "";
  const src = toEmbedUrl(url || meta.url);
  const frame = {
    position: "relative",
    width: "100%",
    paddingTop: "56.25%",
    borderRadius: "10px",
    overflow: "hidden",
    background: "rgba(127,127,127,0.09)",
    border: src ? "1px solid rgba(127,127,127,0.24)" : "1px dashed rgba(127,127,127,0.42)"
  };
  const fill = {
    position: "absolute",
    inset: 0,
    width: "100%",
    height: "100%",
    border: 0
  };
  const center = {
    position: "absolute",
    inset: 0,
    display: "flex",
    flexDirection: "column",
    alignItems: "center",
    justifyContent: "center",
    gap: "10px",
    padding: "24px",
    textAlign: "center"
  };
  const idBadge = {
    fontFamily: "ui-monospace, SFMono-Regular, Menlo, monospace",
    fontSize: "12px",
    letterSpacing: "0.06em",
    padding: "2px 8px",
    borderRadius: "4px",
    background: "rgba(184,82,40,0.14)",
    color: "#B85228",
    fontWeight: 600
  };
  const caption = {
    display: "flex",
    flexWrap: "wrap",
    alignItems: "center",
    gap: "8px",
    marginTop: "8px",
    fontSize: "13px",
    opacity: 0.66,
    fontFamily: "ui-monospace, SFMono-Regular, Menlo, monospace"
  };
  return <div style={{
    margin: "0 0 28px"
  }}>
      <div style={frame}>
        {src ? <iframe style={fill} src={src} title={label} frameBorder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture" allowFullScreen /> : <div style={center}>
            <svg width="44" height="44" viewBox="0 0 44 44" fill="none" aria-hidden="true">
              <circle cx="22" cy="22" r="20" stroke="currentColor" strokeOpacity="0.28" strokeWidth="2" />
              <path d="M18 15.5L29 22L18 28.5V15.5Z" fill="currentColor" fillOpacity="0.32" />
            </svg>
            <div style={{
    fontWeight: 600,
    fontSize: "15px",
    maxWidth: "36ch",
    lineHeight: 1.35
  }}>{label}</div>
            <div style={{
    fontSize: "13px",
    opacity: 0.6
  }}>
              Video coming soon{length ? " · " + length : ""}
            </div>
          </div>}
      </div>
      <div style={caption}>
        {id ? <span style={idBadge}>{id}</span> : null}
        {length ? <span>{length}</span> : null}
        {track ? <span>{track} track</span> : null}
      </div>
    </div>;
};

<Video id="60.2" />

<Note>
  **The short version.** Two numbers for two different audiences. **Cost Code** is internal — it's how your own accounting tracks the money. **PCO Number** is external — it's how the GC tracks the potential change order.
</Note>

## Who needs which

<CardGroup cols={2}>
  <Card title="Cost Code" icon="building-columns">
    **Your accounting team.** Which bucket in your job cost the hours and material land in.

    Wrong code → the job costs look fine while one phase quietly bleeds.
  </Card>

  <Card title="PCO Number" icon="file-signature">
    **The general contractor.** Which potential change order this ticket belongs to.

    Wrong or missing → the GC can't match your ticket to anything, and it doesn't make it into the change order.
  </Card>
</CardGroup>

## What goes wrong downstream

| Missing    | Consequence                                                         |
| ---------- | ------------------------------------------------------------------- |
| Cost code  | Your job costing is wrong. You find out at closeout.                |
| PCO number | The GC can't tie the ticket to a change. You don't get paid for it. |
| Both       | You did the work for free and can't prove where the money went.     |

<Tip>
  Get the PCO number from the GC's project engineer **before** the crew starts the extra work, not after. Five minutes on the phone beats a rejected ticket.
</Tip>

## Next

<CardGroup cols={2}>
  <Card title="Get it signed" icon="signature" href="/tm-tickets/get-a-signature">
    An unsigned ticket is worth very little.
  </Card>

  <Card title="Change Orders" icon="money-bill-trend-up" href="/approvals/change-orders">
    Where these tickets end up.
  </Card>
</CardGroup>
