OrderCharge

TypeTable
OrderChargegdata_order_charge

Applicable charges in a food order refer to extra costs added to the meal price. These can include:

  • Service Charge: A fee for the service given, typically a percentage of the bill.
  • Packaging Charge: A cost for the packing materials for takeaway or delivery orders.
  • Delivery Charge: A fee applied if the order is to be delivered.

Listing these charges keeps customers informed about their total bill and ensures accurate financial tracking for your business.

Column NameData TypeDescription
idvarchar(255) NOT NULLUnique identifier for the order charge.
tagsvarchar(255)Additional tags or labels for the charge details.
amountfloat8 NOT NULLThe total amount for this charge.
chargetypevarchar(255)Type of charge applied (e.g., service charge, packaging fee).
includeininvoicebool NOT NULLIndicator to specify if this charge should be included in the invoice.
taxfloat8 NOT NULLTotal tax amount associated with this charge.
taxexclusiveamountfloat8 NOT NULLAmount of the charge excluding tax.
order_idvarchar(255)Reference to the unique identifier for the order this charge is associated with.