The Invoice DB Model specs
field | type | status | description (verbose name) |
---|---|---|---|
timestamps | datetime | mandatory | Invoice’s created/updated fields |
cashier | FK | mandatory | Cashier that created the invoice |
order | FK | mandatory | Order upon which this invoice is created |
subtotal | MoneyField | mandatory | Invoice’s Subtotal (before taxes) |
tax | MoneyField | mandatory | Invoice’s Taxes |
total | MoneyField | mandatory | total price |
….