I think you can just convert the fields to hidden, however first_name, last_name, email, username are required.
In /plugins/order/views/templates/wizard/signup.pdt for example (your path may vary depending on order form used) search for first_name, and starting there change $this->Form->fieldText to $this->Form->fieldHidden for each field you want to hide.. probably first_name, last_name, company, address1, address2, city, country, state, zip, phone, fax. For the required fields (first_name, last_name), you may want to just prefill some standard info like "Customer" or something.
I may have time to play around with and test this, and if I do I'll post code you can use, and update the docs so it may be helpful to others.