knight218's picture

Hi guys and girls,

I have a situation I need to pick your minds with, short of a custom module, if I wanted to set up a courier like site with order status tracking such as received, processed etc with a unique relationship to a user. How would I go about it? Is there a module or recipe I can use to achieve this?

Comments

A simple implementation (e.g. no payment processing) could involve a custom content type called "Order" with a few custom fields:

  • text/dropdown field called "Status"
  • reference field to a user
  • and any other fields you wanted

The content id/nid could be the order number.

Obviously it could get much more complex depending on your workflow and needs.

knight218's picture

This seems promising, let me try it out, will keep you updated and thanks for that advice.