feat: add reporting pay type and logic
All checks were successful
Docker Build and Publish / build-and-push (push) Successful in 41s
All checks were successful
Docker Build and Publish / build-and-push (push) Successful in 41s
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
migrate((db) => {
|
||||
const dao = new Dao(db)
|
||||
const collection = dao.findCollectionByNameOrId("time_entries")
|
||||
|
||||
const typeField = collection.schema.getFieldByName("type")
|
||||
// Add reporting_pay to the existing values
|
||||
typeField.options.values = ["regular", "overtime", "standby", "callback", "non_contiguous", "reporting_pay"]
|
||||
|
||||
return dao.saveCollection(collection)
|
||||
}, (db) => {
|
||||
const dao = new Dao(db)
|
||||
const collection = dao.findCollectionByNameOrId("time_entries")
|
||||
|
||||
const typeField = collection.schema.getFieldByName("type")
|
||||
// Revert back to previous list
|
||||
typeField.options.values = ["regular", "overtime", "standby", "callback", "non_contiguous"]
|
||||
|
||||
return dao.saveCollection(collection)
|
||||
})
|
||||
Reference in New Issue
Block a user