ubk.erp.webpack 1.2.8 → 1.3.0
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.
- package/README.md +90 -0
- package/dist/Api/api.d.ts +43 -0
- package/dist/Layout/ExpenseDashboard/AddExpense/AddExpense.d.ts +5 -0
- package/dist/Layout/ExpenseDashboard/AddExpense/AddExpenseEdit.d.ts +5 -0
- package/dist/Layout/ExpenseDashboard/AddExpense/index.d.ts +1 -0
- package/dist/Layout/ExpenseDashboard/ExpenseHead/ExpenseHead.d.ts +5 -0
- package/dist/Layout/ExpenseDashboard/ExpenseHead/ExpenseHeadEdit.d.ts +5 -0
- package/dist/Layout/ExpenseDashboard/ExpenseHead/index.d.ts +1 -0
- package/dist/Layout/ExpenseDashboard/SearchExpense/SearchExpense.d.ts +5 -0
- package/dist/Layout/ExpenseDashboard/SearchExpense/index.d.ts +1 -0
- package/dist/Layout/ExpenseDashboard/index.d.ts +3 -0
- package/dist/Layout/IncomeDashboard/AddIncome/AddIncome.d.ts +5 -0
- package/dist/Layout/IncomeDashboard/AddIncome/AddIncomeEdit.d.ts +5 -0
- package/dist/Layout/IncomeDashboard/AddIncome/index.d.ts +1 -0
- package/dist/Layout/IncomeDashboard/IncomeHead/IncomeHead.d.ts +5 -0
- package/dist/Layout/IncomeDashboard/IncomeHead/IncomeHeadEdit.d.ts +5 -0
- package/dist/Layout/IncomeDashboard/IncomeHead/index.d.ts +1 -0
- package/dist/Layout/IncomeDashboard/SearchIncome/SearchIncome.d.ts +5 -0
- package/dist/Layout/IncomeDashboard/SearchIncome/index.d.ts +1 -0
- package/dist/Layout/IncomeDashboard/index.d.ts +3 -0
- package/dist/Layout/StudentInformation/AssignStudentSubject/AssignStudentSubject.d.ts +5 -0
- package/dist/Layout/StudentInformation/AssignStudentSubject/index.d.ts +1 -0
- package/dist/Layout/StudentInformation/MedicalReport/MedicalReport.d.ts +5 -0
- package/dist/Layout/StudentInformation/MedicalReport/index.d.ts +1 -0
- package/dist/Layout/StudentInformation/StudentLoginCredential/StudentLoginCredential.d.ts +5 -0
- package/dist/Layout/StudentInformation/StudentLoginCredential/index.d.ts +1 -0
- package/dist/Layout/StudentInformation/index.d.ts +3 -0
- package/dist/Layout/homeworks/AddHomework copy.d.ts +5 -0
- package/dist/Layout/homeworks/AddHomework.d.ts +5 -0
- package/dist/Layout/homeworks/Edit/HomeWorkEdit.d.ts +5 -0
- package/dist/Layout/homeworks/SubmissionDetails.d.ts +5 -0
- package/dist/index.cjs +12 -12
- package/dist/index.d.ts +11 -0
- package/dist/index.js +11996 -8893
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -231,6 +231,21 @@ const FrontOfficePage = ({ token }) => {
|
|
|
231
231
|
};
|
|
232
232
|
```
|
|
233
233
|
|
|
234
|
+
### Using the Homework Module
|
|
235
|
+
|
|
236
|
+
```jsx
|
|
237
|
+
import { AddHomework, SubmissionDetails } from "ubk.erp.webpack";
|
|
238
|
+
|
|
239
|
+
const HomeworkPage = ({ token }) => {
|
|
240
|
+
return (
|
|
241
|
+
<>
|
|
242
|
+
<AddHomework token={token} />
|
|
243
|
+
<SubmissionDetails token={token} />
|
|
244
|
+
</>
|
|
245
|
+
);
|
|
246
|
+
};
|
|
247
|
+
```
|
|
248
|
+
|
|
234
249
|
## 🧩 Available Components
|
|
235
250
|
|
|
236
251
|
### Core
|
|
@@ -253,6 +268,81 @@ const FrontOfficePage = ({ token }) => {
|
|
|
253
268
|
| `SetupFrontOffice` | Front office setup/master data (Purpose, Complaint Type, Source, Reference). |
|
|
254
269
|
| `GatePass` | Student gate pass list with print support and today's gate pass summary. |
|
|
255
270
|
|
|
271
|
+
### Homework
|
|
272
|
+
|
|
273
|
+
| Component | Description |
|
|
274
|
+
| :--- | :--- |
|
|
275
|
+
| `AddHomework` | Create and manage homework assignments with class, section, subject, dates, description, and attachments. |
|
|
276
|
+
| `SubmissionDetails` | View homework submission details with student-wise submission status and document preview. |
|
|
277
|
+
|
|
278
|
+
### Using the Income Module
|
|
279
|
+
|
|
280
|
+
```jsx
|
|
281
|
+
import { AddIncome, SearchIncome, IncomeHead } from "ubk.erp.webpack";
|
|
282
|
+
|
|
283
|
+
const IncomePage = ({ token }) => {
|
|
284
|
+
return (
|
|
285
|
+
<>
|
|
286
|
+
<AddIncome token={token} />
|
|
287
|
+
<SearchIncome token={token} />
|
|
288
|
+
<IncomeHead token={token} />
|
|
289
|
+
</>
|
|
290
|
+
);
|
|
291
|
+
};
|
|
292
|
+
```
|
|
293
|
+
|
|
294
|
+
## 🧩 Available Components
|
|
295
|
+
|
|
296
|
+
### Core
|
|
297
|
+
|
|
298
|
+
| Component | Description |
|
|
299
|
+
| :--- | :--- |
|
|
300
|
+
| `ErpDashboard` | Main dashboard overview. |
|
|
301
|
+
| `MenuSubmenu` | Dynamic menu and navigation component. |
|
|
302
|
+
|
|
303
|
+
### Front Office
|
|
304
|
+
|
|
305
|
+
| Component | Description |
|
|
306
|
+
| :--- | :--- |
|
|
307
|
+
| `AdmissionEnquiry` | Admission enquiry management. |
|
|
308
|
+
| `VisitorBook` | Visitor entry tracking with purpose, contact, date, and image upload. |
|
|
309
|
+
| `PhoneCallLog` | Phone call log management with call type, follow-up date, and duration. |
|
|
310
|
+
| `PostalDispatch` | Postal dispatch management with reference, address, and document upload. |
|
|
311
|
+
| `PostalReceive` | Postal receive management with from/to title, reference, and document upload. |
|
|
312
|
+
| `Complain` | Complaint management with type, description, action taken, and assignment. |
|
|
313
|
+
| `SetupFrontOffice` | Front office setup/master data (Purpose, Complaint Type, Source, Reference). |
|
|
314
|
+
| `GatePass` | Student gate pass list with print support and today's gate pass summary. |
|
|
315
|
+
|
|
316
|
+
### Homework
|
|
317
|
+
|
|
318
|
+
| Component | Description |
|
|
319
|
+
| :--- | :--- |
|
|
320
|
+
| `AddHomework` | Create and manage homework assignments with class, section, subject, dates, description, and attachments. |
|
|
321
|
+
| `SubmissionDetails` | View homework submission details with student-wise submission status and document preview. |
|
|
322
|
+
|
|
323
|
+
### Income
|
|
324
|
+
|
|
325
|
+
| Component | Description |
|
|
326
|
+
| :--- | :--- |
|
|
327
|
+
| `AddIncome` | Add new income entries with income head, amount, date, invoice number, description, and document upload. |
|
|
328
|
+
| `SearchIncome` | Search income records by date range with paginated results. |
|
|
329
|
+
| `IncomeHead` | Manage income head categories with add/edit/delete and paginated list. |
|
|
330
|
+
|
|
331
|
+
### Expense
|
|
332
|
+
|
|
333
|
+
| Component | Description |
|
|
334
|
+
| :--- | :--- |
|
|
335
|
+
| `AddExpense` | Add new expense entries with expense head, vendor, amount, date, payment mode, invoice number, description, and document upload. |
|
|
336
|
+
| `SearchExpense` | Search expense records by date range with paginated results. |
|
|
337
|
+
| `ExpenseHead` | Manage expense head categories with add/edit/delete and paginated list. |
|
|
338
|
+
|
|
339
|
+
### Student Information
|
|
340
|
+
|
|
341
|
+
| Component | Description |
|
|
342
|
+
| :--- | :--- |
|
|
343
|
+
| `StudentLoginCredential` | View and manage student login credentials (username/password) by class and section. |
|
|
344
|
+
| `MedicalReport` | Manage student medical reports and medicine history with add/view functionality. |
|
|
345
|
+
| `AssignStudentSubject` | Assign and unassign subjects and extra-curricular activities to students. |
|
|
256
346
|
|
|
257
347
|
### Academics
|
|
258
348
|
|
package/dist/Api/api.d.ts
CHANGED
|
@@ -75,6 +75,9 @@ export const uploadRouteByCsvUrl: "api/branchapi/transport/uploadroutebyCSV";
|
|
|
75
75
|
export const routeSampleTemplateUrl: "/sample_templates/route_upload.xlsx";
|
|
76
76
|
export const classUrl: "api/branchapi/academy/classdropdownlist";
|
|
77
77
|
export const sectionUrl: "api/branchapi/academy/sectionoftheClass";
|
|
78
|
+
export const classSubjectdropdownUrl: "api/branchapi/academy/classSubjectdropdown";
|
|
79
|
+
export const subjectUrl: "api/branchapi/academy/subjecttableList";
|
|
80
|
+
export const getSubjectsbyClassaslablevalue: "api/branchapi/academy/getSubjectsbyClassaslablevalue";
|
|
78
81
|
export const routeStudentList: "api/branchapi/Transport/routeStudentList";
|
|
79
82
|
export const getrouteDropdownUrl: "api/branchapi/Transport/getrouteDropdown";
|
|
80
83
|
export const getvehicleListByRouteIdwithCount: "api/branchapi/transport/getvehicleListByRouteIdwithCount";
|
|
@@ -85,3 +88,43 @@ export const updateTransportRoutesStudent: "api/branchapi/Transport/updateTransp
|
|
|
85
88
|
export const removeStudentTransport: "api/branchapi/transport/removeStudentTransport";
|
|
86
89
|
export const assignTransportRoutesStudentBulkUrl: "api/branchapi/transport/assignTransportRoutesStudentBulk";
|
|
87
90
|
export const assignStudentSampleTemplateUrl: "/sample_templates/student_transport_upload.xlsx";
|
|
91
|
+
export const homeworkListUrl: "api/branchapi/homeworks/gethomeworklistByClassSectionBranch";
|
|
92
|
+
export const homeworkAddUrl: "api/branchapi/homeworks/addHomework";
|
|
93
|
+
export const homeworkUpdateUrl: "api/student/Homework/updateHomework";
|
|
94
|
+
export const homeworkDeleteUrl: "api/student/Homework/deleteHomework";
|
|
95
|
+
export const incomeListUrl: "api/branchapi/income/incomeTableList";
|
|
96
|
+
export const incomeAddUrl: "api/branchapi/income/addincome";
|
|
97
|
+
export const incomeUpdateUrl: "api/branchapi/income/editincome";
|
|
98
|
+
export const incomeDeleteUrl: "api/branchapi/income/deleteincome";
|
|
99
|
+
export const incomeHeadDropdownUrl: "api/branchapi/income/incomeheadDropdown";
|
|
100
|
+
export const incomeHeadListUrl: "api/branchapi/income/incomeheadTableList";
|
|
101
|
+
export const incomeHeadAddUrl: "api/branchapi/income/addincomehead";
|
|
102
|
+
export const incomeHeadUpdateUrl: "api/branchapi/income/editincomehead";
|
|
103
|
+
export const incomeHeadDeleteUrl: "api/branchapi/income/deleteincomehead";
|
|
104
|
+
export const incomeShowUrl: "api/branchapi/income/incomeShowdata";
|
|
105
|
+
export const incomeHeadShowUrl: "api/branchapi/income/incomeheadShowdata";
|
|
106
|
+
export const incomeSearchByDateUrl: "api/branchapi/income/searchincomebydates";
|
|
107
|
+
export const expenseListUrl: "api/branchapi/expense/expenseTableList";
|
|
108
|
+
export const expenseAddUrl: "api/branchapi/expense/addexpense";
|
|
109
|
+
export const expenseUpdateUrl: "api/branchapi/expense/editexpense";
|
|
110
|
+
export const expenseDeleteUrl: "api/branchapi/expense/deleteExpense";
|
|
111
|
+
export const expenseHeadDropdownUrl: "api/branchapi/expense/expenseheadDropdown";
|
|
112
|
+
export const expenseHeadListUrl: "api/branchapi/expense/expenseheadTableList";
|
|
113
|
+
export const expenseHeadAddUrl: "api/branchapi/expense/addexpensehead";
|
|
114
|
+
export const expenseHeadUpdateUrl: "api/branchapi/expense/editexpensehead";
|
|
115
|
+
export const expenseHeadDeleteUrl: "api/branchapi/expense/deleteexpensehead";
|
|
116
|
+
export const expenseShowUrl: "api/branchapi/expense/expenseShowdata";
|
|
117
|
+
export const expenseHeadShowUrl: "api/branchapi/expense/expenseheadShowdata";
|
|
118
|
+
export const expenseSearchByDateUrl: "api/branchapi/expense/searchexpensebydates";
|
|
119
|
+
export const vendorListUrl: "api/accounts/vendor/vendorlist";
|
|
120
|
+
export const studentLoginTableUrl: "api/student/studentDetails/studentLoginCredentialList";
|
|
121
|
+
export const studentListUrl: "/branchapi/student/studentlist";
|
|
122
|
+
export const studentSearchByKeywordUrl: "api/branchapi/student/studentsearchbyKeywords";
|
|
123
|
+
export const studentSearchByClassSectionUrl: "api/branchapi/student/studentsearchbyClassSection";
|
|
124
|
+
export const deleteStudentUrl: "branchapi/student/deleteStudent";
|
|
125
|
+
export const addStudentMedicineUrl: "/branchapi/student/addStudentMedicineDetails";
|
|
126
|
+
export const studentMedicineDetailsUrl: "/branchapi/student/StudentMedicineDetails";
|
|
127
|
+
export const getStudentClassSubjectUrl: "/branchapi/academy/getstudentClasssubjectByStudentId";
|
|
128
|
+
export const removeAssignStudentSubjectUrl: "/branchapi/academy/removeAssignStudentSubject";
|
|
129
|
+
export const extraCurricularActivitiesUrl: "/branchapi/feesCollection/extraCurricularActivitiesFess";
|
|
130
|
+
export const unAssignStudentSubjectUrl: "/branchapi/academy/unAssigneStudentSubject";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './AddExpense';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './ExpenseHead';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './SearchExpense';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './AddIncome';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './IncomeHead';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './SearchIncome';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './AssignStudentSubject';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './MedicalReport';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './StudentLoginCredential';
|