mirror of
https://github.com/atlanticbiomedical/biomedjs.git
synced 2025-07-02 00:47:26 -04:00
Latest batch of work
This commit is contained in:
@ -24,7 +24,12 @@ var workorderSchema = new Schema({
|
||||
newValues: {},
|
||||
modifiedBy: { type: ObjectId, ref: 'User' }
|
||||
}],
|
||||
deleted: { type: Boolean, default: false }
|
||||
deleted: { type: Boolean, default: false },
|
||||
invoiceNumber: String,
|
||||
invoicedOn: Date,
|
||||
checkNumber: String,
|
||||
paidOn: Date,
|
||||
alternativeContact: String
|
||||
});
|
||||
|
||||
module.exports = mongoose.model('Workorder', workorderSchema);
|
||||
|
Reference in New Issue
Block a user