mirror of
https://github.com/rjNemo/rentease.git
synced 2026-06-11 21:26:50 +00:00
32 lines
590 B
Go
32 lines
590 B
Go
package booking
|
|
|
|
import "github.com/rjNemo/rentease/internal/config"
|
|
|
|
type InvoiceLine struct {
|
|
Name string
|
|
Quantity int
|
|
Price string
|
|
Total string
|
|
}
|
|
|
|
type PaymentLine struct {
|
|
Date string
|
|
Method string
|
|
Amount string
|
|
}
|
|
|
|
type Invoice struct {
|
|
Host config.Host
|
|
Name string
|
|
PhoneNumber string
|
|
CustomersNumber int
|
|
Platform string
|
|
ID string
|
|
From string
|
|
To string
|
|
Total string
|
|
AmountPaid string
|
|
BalanceDue string
|
|
Lines []InvoiceLine
|
|
Payments []PaymentLine
|
|
}
|