cloud-ide-model-schema 1.1.167 → 1.1.169
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.
|
@@ -70,7 +70,7 @@ var admission_fee_snapshot = new mongoose_1.Schema({
|
|
|
70
70
|
},
|
|
71
71
|
adfsn_class_program_branch_id_acabrn: {
|
|
72
72
|
type: mongoose_1.default.Schema.Types.ObjectId,
|
|
73
|
-
ref: "
|
|
73
|
+
ref: "aca_class_prg_branch",
|
|
74
74
|
default: null,
|
|
75
75
|
comment: "Specialization/Branch (if applicable)"
|
|
76
76
|
},
|
|
@@ -7,9 +7,6 @@ var mongoose_1 = require("mongoose");
|
|
|
7
7
|
*
|
|
8
8
|
* Purpose: Fees assigned to individual students
|
|
9
9
|
* Used by: Fees, Student Management modules
|
|
10
|
-
*
|
|
11
|
-
* Note: Currently uses student_id as string since student schema doesn't exist yet
|
|
12
|
-
* This can be updated to ObjectId reference when student schema is created
|
|
13
10
|
*/
|
|
14
11
|
/* SCHEMA START */
|
|
15
12
|
var fee_assignment = new mongoose_1.Schema({
|
|
@@ -51,7 +51,7 @@ var fee_structure = new mongoose_1.Schema({
|
|
|
51
51
|
},
|
|
52
52
|
fees_class_program_branch_id_acabrn: {
|
|
53
53
|
type: mongoose_1.default.Schema.Types.ObjectId,
|
|
54
|
-
ref: "
|
|
54
|
+
ref: "aca_class_prg_branch",
|
|
55
55
|
default: null,
|
|
56
56
|
comment: "Branch/Specialization (null = all branches)"
|
|
57
57
|
},
|
|
@@ -63,7 +63,7 @@ var fee_structure = new mongoose_1.Schema({
|
|
|
63
63
|
},
|
|
64
64
|
fees_program_term_section_id_acapts: {
|
|
65
65
|
type: mongoose_1.default.Schema.Types.ObjectId,
|
|
66
|
-
ref: "
|
|
66
|
+
ref: "aca_prg_trm_section",
|
|
67
67
|
default: null,
|
|
68
68
|
comment: "Section (null = all sections)"
|
|
69
69
|
},
|
package/package.json
CHANGED