Add Entry Manually
Log a submission that came in through Formspree or a call handled directly. Saves to Supabase and shows on the map.
One-time Supabase setup needed. Go to Supabase → SQL Editor and run this, then try again:CREATE TABLE form_submissions (
id uuid DEFAULT gen_random_uuid() PRIMARY KEY,
form_type text, sheet_id text,
submitted_at timestamptz DEFAULT now(),
rep_name text, loc_name text, loc_address text, loc_city text,
contact_name text, foot_traffic text, space_sqft text,
electrical text, existing_vend text, existing_contract text,
placement_location text, revshare_open text, next_step text,
call_notes text, vendor_name text, vendor_rep text,
vendor_contact text, vendor_location text, machine_model text,
price_single text, price_bulk text, price_finance text,
price_lease text, warranty_length text, service_contract text,
vendor_impression text, notes text
);
ALTER TABLE form_submissions ENABLE ROW LEVEL SECURITY;
CREATE POLICY "allow all" ON form_submissions
FOR ALL USING (true) WITH CHECK (true);