13 lines
444 B
Go
13 lines
444 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"
|
|
)
|