This class represents an order in its entirety, including any items sold in it.
Status the order is in right now.
| Symbol | Value | Docu |
| Placed | 0 | The order has been placed, but not acted upon yet. |
| Sent | 1 | The order has been sent out or handed to the customer. |
| Sold | 1 | Alias for Sent. Semantically: it is sold if it has been sent and paid. |
| Cancelled | 2 | The order has been cancelled, if anything has been paid, it must be paid back. |
| Reserved | 4 | The order is just a reservation for a limited time, application logic must determine the timeout. |
| Closed | 128 | The order is closed out of the system - the payment status is ignored from now on. Currently not used. |
| Property | Column |
| amountdue | amountdue |
| amountpaid | amountpaid |
| comments | comments |
| coupondescription | coupondescription |
| couponid | couponid |
| customer | customer |
| customerid | customerid |
| deliveryaddress | deliveryaddress |
| deliveryaddressid | deliveryaddress |
| invoiceaddress | invoiceaddress |
| invoiceaddressid | invoiceaddress |
| items | items |
| orderid | orderid |
| ordertime | ordertime |
| senttime | senttime |
| shippingcosts | shippingcosts |
| shippingtype | shippingtype |
| shippingtypeid | shippingtype |
| soldby | soldby |
| status | status |
| tags | tags |
| tickets | tickets |
| totalprice | totalprice |
| vouchers | vouchers |