Waybills - codbex/codbex-olympus GitHub Wiki
Waybill is a document on which information such as the destination is written at the time of sending
Purchase Invoice
Entity Definition
- Entity Type:
Primary Entity
- Layout Type:
Manage Master Entities
Field | Type | Length | Null? | Calc? | Ref? | Description |
---|---|---|---|---|---|---|
Id | INTEGER | no | - | - | ||
Number | VARCHAR | 20 | no | - | - | |
Date | DATE | no | - | - | ||
Customer | INTEGER | - | - | yes | Reference to Customer | |
Address | VARCHAR | - | - | - | Delivery Address | |
Amount | DOUBLE | - | yes | - | SUM(PurchaseInvoiceItem.Amount) | |
Currency | INTEGER | - | - | yes | Reference to Currency | |
Discount | DOUBLE | - | - | - | % Discount | |
Taxes | DOUBLE | - | - | - | % Taxes (other than VAT) | |
VAT | DOUBLE | - | yes | - | SUM(PurchaseInvoiceItem.Amount * %VAT) | |
Total | DOUBLE | - | yes | - | Amount + VAT - %Discount + %Taxes | |
Conditions | VARCHAR | 200 | - | - | - | Conditions about payment |
PaymentMethod | INTEGER | - | - | yes | Reference to Payment Method | |
SentMethod | INTEGER | - | - | yes | Reference to Sent Method | |
Document | VARCHAR | 200 | - | - | - | Link to the scanned copy of the document |