vhp-mongo-models 2.1.74 → 2.1.75
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -16,6 +16,8 @@ module.exports = [{
|
|
|
16
16
|
jonascodes: {type:Array, default: []}, //new add
|
|
17
17
|
billto: {type:Boolean,default: false}, //if it is a billing address for other homes
|
|
18
18
|
salesRep:{type:String,default:''},
|
|
19
|
+
|
|
20
|
+
notes:{type:String,default:''},
|
|
19
21
|
|
|
20
22
|
location: {
|
|
21
23
|
type: Object, default: {
|
|
@@ -6,6 +6,8 @@ module.exports = {
|
|
|
6
6
|
contactemail:{type:String,default:''},
|
|
7
7
|
customername:{type:String,default:''},
|
|
8
8
|
descr:{type:String,default:''},
|
|
9
|
+
dispatchnotes:{type:String,default:''},
|
|
10
|
+
technotes:{type:String,default:''},
|
|
9
11
|
street:{type:String,default:''},
|
|
10
12
|
cityzip:{type:String,default:''},
|
|
11
13
|
unit:{type:String,default:''},
|
|
@@ -83,7 +83,7 @@ module.exports = {
|
|
|
83
83
|
logs:{type:Array,default:[]}, //match with project datelog. Would like it to stay as "logs" though
|
|
84
84
|
|
|
85
85
|
//Remove
|
|
86
|
-
contract: { type: Object, default: {} }, // the contract attached to the client. Should move off of WO into separate query
|
|
86
|
+
// contract: { type: Object, default: {} }, // the contract attached to the client. Should move off of WO into separate query
|
|
87
87
|
// office: { type: Object, default: {} },//any todo items for the office
|
|
88
88
|
// field: {type:Object,default:{}},//any todo items for the field
|
|
89
89
|
}
|