Fill any field here to override the tier default for THIS contract only — for negotiated deals. Leave blank to use standard tier terms.
Sign below with mouse or trackpad. This signature is embedded into the contract. Client can print, sign, and return, or you can send a link with a countersign field later.
Encode your NFC chip with this URL pattern (replace SLUG with the slug you set above):
Use the copy tap URL button on each tag row above — it gives you the exact URL to encode. Any NFC writer app (NFC Tools, TagWriter) can burn this. Once burned, lock the tag from further writes to prevent tampering.
Use this for cash / e-transfer sales where the client didn't need a formal invoice. Invoices generated in New Invoice are counted automatically.
Turn this on to share the same data across every device you use. Uses Supabase's free tier. Setup: create a project at supabase.com, run the SQL below in the SQL Editor, then paste your project URL and anon (publishable) key here.
Show one-time SQL to paste into Supabase SQL Editor
create table if not exists ops_state (
id text primary key,
data jsonb not null,
updated_at timestamptz not null default now()
);
insert into ops_state (id, data) values ('default', '{}')
on conflict (id) do nothing;
alter table ops_state enable row level security;
create policy "public rw" on ops_state
for all using (true) with check (true);
Everything is stored in your browser's local storage (plus cloud if enabled above). Export gives you a full backup file.