OrderCharge
Type | Table |
---|---|
OrderCharge | gdata_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 Name | Data Type | Description |
---|---|---|
id | varchar(255) NOT NULL | Unique identifier for the order charge. |
tags | varchar(255) | Additional tags or labels for the charge details. |
amount | float8 NOT NULL | The total amount for this charge. |
chargetype | varchar(255) | Type of charge applied (e.g., service charge, packaging fee). |
includeininvoice | bool NOT NULL | Indicator to specify if this charge should be included in the invoice. |
tax | float8 NOT NULL | Total tax amount associated with this charge. |
taxexclusiveamount | float8 NOT NULL | Amount of the charge excluding tax. |
order_id | varchar(255) | Reference to the unique identifier for the order this charge is associated with. |
Updated about 1 year ago