20 lines
699 B
Go
20 lines
699 B
Go
package constants
|
|
|
|
// A purchase order is charged to a team. Teams come from the parent product
|
|
// categories, plus Pusat for spending that belongs to no single team.
|
|
const (
|
|
PurchaseTeamScopeCategory = "category"
|
|
PurchaseTeamScopeCentral = "central"
|
|
|
|
// PurchaseTeamCentralName is what Pusat is called in the picker. Pusat has no
|
|
// row of its own, so the name lives here rather than in the database.
|
|
PurchaseTeamCentralName = "Pusat"
|
|
|
|
// PurchaseTeamNone is the value the list filter takes to ask for purchases
|
|
// that have not been charged to any team yet.
|
|
PurchaseTeamNone = "none"
|
|
|
|
// PurchaseTeamNoneName labels those purchases in the reports.
|
|
PurchaseTeamNoneName = "Tanpa Team"
|
|
)
|