phx-react 1.3.619 → 1.3.620
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/dist/cjs/components/Combobox/Combobox.js +2 -2
- package/dist/cjs/components/Combobox/Combobox.js.map +1 -1
- package/dist/cjs/components/MainWrap/MainWrap.js +5 -6
- package/dist/cjs/components/MainWrap/MainWrap.js.map +1 -1
- package/dist/cjs/components/MainWrap/search/search-bar.js +152 -47
- package/dist/cjs/components/MainWrap/search/search-bar.js.map +1 -1
- package/dist/cjs/query/gql.d.ts +1 -0
- package/dist/cjs/query/gql.js +3 -2
- package/dist/cjs/query/gql.js.map +1 -1
- package/dist/cjs/utils/constants.d.ts +14 -0
- package/dist/cjs/utils/constants.js +15 -1
- package/dist/cjs/utils/constants.js.map +1 -1
- package/dist/esm/components/Combobox/Combobox.js +2 -2
- package/dist/esm/components/Combobox/Combobox.js.map +1 -1
- package/dist/esm/components/MainWrap/MainWrap.js +5 -6
- package/dist/esm/components/MainWrap/MainWrap.js.map +1 -1
- package/dist/esm/components/MainWrap/search/search-bar.js +154 -49
- package/dist/esm/components/MainWrap/search/search-bar.js.map +1 -1
- package/dist/esm/query/gql.d.ts +1 -0
- package/dist/esm/query/gql.js +3 -2
- package/dist/esm/query/gql.js.map +1 -1
- package/dist/esm/utils/constants.d.ts +14 -0
- package/dist/esm/utils/constants.js +14 -0
- package/dist/esm/utils/constants.js.map +1 -1
- package/package.json +1 -1
package/dist/esm/query/gql.d.ts
CHANGED
|
@@ -4,3 +4,4 @@ export declare const GET_PERMISSION_DETAIL_USER: import("@apollo/client").Docume
|
|
|
4
4
|
export declare const querySchoolYear: import("@apollo/client").DocumentNode;
|
|
5
5
|
export declare const getActiveAndNextSchoolYear: import("@apollo/client").DocumentNode;
|
|
6
6
|
export declare const getTuitionDebtRecordByUserCode: import("@apollo/client").DocumentNode;
|
|
7
|
+
export declare const querySearchGlobal: import("@apollo/client").DocumentNode;
|
package/dist/esm/query/gql.js
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import { __makeTemplateObject } from "tslib";
|
|
2
2
|
import { gql } from '@apollo/client';
|
|
3
|
-
import { KEY_QUERY_SETTING } from '../utils/constants';
|
|
3
|
+
import { BUS_SERVICE_TYPE_BTN, BUS_SERVICE_TYPE_BUS, KEY_QUERY_SETTING, ROLE_SV } from '../utils/constants';
|
|
4
4
|
export var GET_SCHOOL = gql(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n query GetSchool($group_id: Int, $school_name_id: Int, $user_id: Int) {\n school_name(where: { group_id: { _eq: $group_id }, deleted_at: { _is_null: true }, id: { _eq: $school_name_id } }) {\n schools(where: { deleted_at: { _is_null: true } }) {\n id\n name\n }\n }\n users(where: { id: { _eq: $user_id } }) {\n id\n full_name\n email\n avatar\n }\n setting_site(where: { deleted_at: { _is_null: true }, key_setting: { _eq: \"", "\" } }) {\n value_setting\n key_setting\n }\n }\n"], ["\n query GetSchool($group_id: Int, $school_name_id: Int, $user_id: Int) {\n school_name(where: { group_id: { _eq: $group_id }, deleted_at: { _is_null: true }, id: { _eq: $school_name_id } }) {\n schools(where: { deleted_at: { _is_null: true } }) {\n id\n name\n }\n }\n users(where: { id: { _eq: $user_id } }) {\n id\n full_name\n email\n avatar\n }\n setting_site(where: { deleted_at: { _is_null: true }, key_setting: { _eq: \"", "\" } }) {\n value_setting\n key_setting\n }\n }\n"])), KEY_QUERY_SETTING);
|
|
5
5
|
export var getCampaignName = gql(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n query MyQuery($id: Int!) {\n admissions_campaigns_by_pk(id: $id) {\n id\n campaign_name\n }\n }\n"], ["\n query MyQuery($id: Int!) {\n admissions_campaigns_by_pk(id: $id) {\n id\n campaign_name\n }\n }\n"])));
|
|
6
6
|
export var GET_PERMISSION_DETAIL_USER = gql(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n query GetUserPermission($id: Int, $school_id: Int) {\n permission_user(\n where: {\n deleted_at: { _is_null: true }\n is_active: { _eq: true }\n school_id: { _eq: $school_id }\n user_id: { _eq: $id }\n permission: { deleted_at: { _is_null: true } }\n }\n ) {\n permission {\n code\n }\n }\n permission_role(\n where: {\n deleted_at: { _is_null: true }\n is_active: { _eq: true }\n role: {\n school_id: { _eq: $school_id }\n deleted_at: { _is_null: true }\n user_roles: { deleted_at: { _is_null: true }, is_active: { _eq: true }, user_id: { _eq: $id } }\n }\n }\n ) {\n permission {\n code\n }\n id\n }\n }\n"], ["\n query GetUserPermission($id: Int, $school_id: Int) {\n permission_user(\n where: {\n deleted_at: { _is_null: true }\n is_active: { _eq: true }\n school_id: { _eq: $school_id }\n user_id: { _eq: $id }\n permission: { deleted_at: { _is_null: true } }\n }\n ) {\n permission {\n code\n }\n }\n permission_role(\n where: {\n deleted_at: { _is_null: true }\n is_active: { _eq: true }\n role: {\n school_id: { _eq: $school_id }\n deleted_at: { _is_null: true }\n user_roles: { deleted_at: { _is_null: true }, is_active: { _eq: true }, user_id: { _eq: $id } }\n }\n }\n ) {\n permission {\n code\n }\n id\n }\n }\n"])));
|
|
7
7
|
export var querySchoolYear = gql(templateObject_4 || (templateObject_4 = __makeTemplateObject(["\n query MyQuery($school_id: Int!, $gte: timestamptz!, $lte: timestamptz!) {\n school_year(\n where: {\n deleted_at: { _is_null: true }\n school_course: { school_id: { _eq: $school_id } }\n end_at: { _gte: $gte }\n start_at: { _lte: $lte }\n }\n ) {\n id\n name\n code\n start_at\n end_at\n school_terms(where: { deleted_at: { _is_null: true } }) {\n id\n code\n name\n coefficient\n start_at\n end_at\n }\n current_term: school_terms(\n where: { deleted_at: { _is_null: true }, end_at: { _gte: $gte }, start_at: { _lte: $lte } }\n ) {\n id\n code\n name\n coefficient\n start_at\n end_at\n }\n }\n }\n"], ["\n query MyQuery($school_id: Int!, $gte: timestamptz!, $lte: timestamptz!) {\n school_year(\n where: {\n deleted_at: { _is_null: true }\n school_course: { school_id: { _eq: $school_id } }\n end_at: { _gte: $gte }\n start_at: { _lte: $lte }\n }\n ) {\n id\n name\n code\n start_at\n end_at\n school_terms(where: { deleted_at: { _is_null: true } }) {\n id\n code\n name\n coefficient\n start_at\n end_at\n }\n current_term: school_terms(\n where: { deleted_at: { _is_null: true }, end_at: { _gte: $gte }, start_at: { _lte: $lte } }\n ) {\n id\n code\n name\n coefficient\n start_at\n end_at\n }\n }\n }\n"])));
|
|
8
8
|
export var getActiveAndNextSchoolYear = gql(templateObject_5 || (templateObject_5 = __makeTemplateObject(["\n query GetActiveAndNextSchoolYear($startAt: timestamptz, $endAt: timestamptz, $school_id: Int) {\n school_year(\n where: {\n deleted_at: { _is_null: true }\n start_at: { _lte: $startAt }\n end_at: { _gte: $endAt }\n school_course: { school_id: { _eq: $school_id } }\n }\n order_by: { id: asc }\n ) {\n code\n end_at\n id\n name\n start_at\n school_terms(where: { deleted_at: { _is_null: true } }, order_by: { id: asc }) {\n name\n code\n id\n }\n school_course {\n course_name\n id\n code\n }\n }\n }\n"], ["\n query GetActiveAndNextSchoolYear($startAt: timestamptz, $endAt: timestamptz, $school_id: Int) {\n school_year(\n where: {\n deleted_at: { _is_null: true }\n start_at: { _lte: $startAt }\n end_at: { _gte: $endAt }\n school_course: { school_id: { _eq: $school_id } }\n }\n order_by: { id: asc }\n ) {\n code\n end_at\n id\n name\n start_at\n school_terms(where: { deleted_at: { _is_null: true } }, order_by: { id: asc }) {\n name\n code\n id\n }\n school_course {\n course_name\n id\n code\n }\n }\n }\n"])));
|
|
9
9
|
export var getTuitionDebtRecordByUserCode = gql(templateObject_6 || (templateObject_6 = __makeTemplateObject(["\n query GetTuitionDebtRecordByUserCode($user_code: String, $school_year_id: Int, $school_id: Int) {\n tuition_fee_debt_record(\n order_by: { school_term_id: asc }\n where: {\n deleted_at: { _is_null: true }\n school_id: { _eq: $school_id }\n user_code: { _eq: $user_code }\n school_term: { school_year_id: { _eq: $school_year_id } }\n }\n ) {\n total_promotion_service\n total_payment\n total_promotion_tuition_seniority\n total_promotion_tuition_scholar_ship\n total_promotion_tuition_policy\n total_promotion_admission\n total_promotion_early\n total_required_service\n total_not_required_service\n total_tuition\n last_period_credit_balance\n last_period_debt_balance\n total_refund\n id\n school_term {\n school_year {\n name\n code\n }\n name\n code\n coefficient\n id\n }\n profile_student {\n tuition_notice_delivered_emails(order_by: { created_at: desc }) {\n link_pdf_cdn\n tuition_notice_campaign {\n school_term_id\n }\n }\n grade {\n name\n }\n program_map_educational_level {\n program {\n code\n name\n }\n }\n user {\n relationshipUsersByStudentId {\n id\n parent_id\n relationship_code\n user {\n gender\n full_name\n phone_number\n }\n }\n full_name\n classroom_students {\n classroom {\n name\n }\n }\n }\n tuition_student_profiles(where: { deleted_at: { _is_null: true }, school_year_id: { _eq: $school_year_id } }) {\n grade {\n name\n }\n program_map_educational_level {\n id\n educational_level_id\n program_id\n program {\n code\n name\n }\n }\n tuition_student_discount_type {\n id\n description\n code\n }\n }\n }\n user_code\n }\n }\n"], ["\n query GetTuitionDebtRecordByUserCode($user_code: String, $school_year_id: Int, $school_id: Int) {\n tuition_fee_debt_record(\n order_by: { school_term_id: asc }\n where: {\n deleted_at: { _is_null: true }\n school_id: { _eq: $school_id }\n user_code: { _eq: $user_code }\n school_term: { school_year_id: { _eq: $school_year_id } }\n }\n ) {\n total_promotion_service\n total_payment\n total_promotion_tuition_seniority\n total_promotion_tuition_scholar_ship\n total_promotion_tuition_policy\n total_promotion_admission\n total_promotion_early\n total_required_service\n total_not_required_service\n total_tuition\n last_period_credit_balance\n last_period_debt_balance\n total_refund\n id\n school_term {\n school_year {\n name\n code\n }\n name\n code\n coefficient\n id\n }\n profile_student {\n tuition_notice_delivered_emails(order_by: { created_at: desc }) {\n link_pdf_cdn\n tuition_notice_campaign {\n school_term_id\n }\n }\n grade {\n name\n }\n program_map_educational_level {\n program {\n code\n name\n }\n }\n user {\n relationshipUsersByStudentId {\n id\n parent_id\n relationship_code\n user {\n gender\n full_name\n phone_number\n }\n }\n full_name\n classroom_students {\n classroom {\n name\n }\n }\n }\n tuition_student_profiles(where: { deleted_at: { _is_null: true }, school_year_id: { _eq: $school_year_id } }) {\n grade {\n name\n }\n program_map_educational_level {\n id\n educational_level_id\n program_id\n program {\n code\n name\n }\n }\n tuition_student_discount_type {\n id\n description\n code\n }\n }\n }\n user_code\n }\n }\n"])));
|
|
10
|
-
var
|
|
10
|
+
export var querySearchGlobal = gql(templateObject_7 || (templateObject_7 = __makeTemplateObject(["\n query QuerySearchGlobal($school_id: Int!, $searchValue: String, $school_year_id: Int, $limit: Int) {\n student_affairs_on_leave(\n limit: $limit\n order_by: { created_at: desc }\n where: {\n deleted_at: { _is_null: true }\n school_id: { _eq: $school_id }\n status:{_eq: 0}\n _or: [\n { student_code: { _ilike: $searchValue } }\n { profile_student: { user: { full_name: { _ilike: $searchValue } } } }\n ]\n }\n ) {\n id\n student_code\n profile_student {\n user {\n full_name\n }\n }\n }\n\n tuition_student: profile_student(\n limit: $limit,\n where: {\n deleted_at: { _is_null: true }\n _or: [{ user_code: { _ilike: $searchValue } }, { user: { full_name: { _ilike: $searchValue } } }]\n user: {\n school_id: { _eq: $school_id }\n deleted_at: { _is_null: true }\n user_roles: { role: { role_code: { _eq: \"", "\" } } }\n }\n }\n ) {\n student_status\n user_code\n user {\n full_name\n }\n program_map_educational_level {\n program_id\n educational_level_id\n }\n }\n\n food_report(limit: $limit,where: {school_id: {_eq: $school_id}, deleted_at: {_is_null: true}, _or: [{user_code: {_ilike: $searchValue}}, { profile_student:{user: {full_name: {_ilike: $searchValue}}}}], school_year_id: {_eq: $school_year_id}}) {\n id\n school_year_id\n profile_student{\n user{\n full_name\n } \n }\n user_code\n food_report_months(order_by: {created_at: desc}, where: {deleted_at: {_is_null: true}}) {\n school_term_id\n }\n }\n\n\n bus_register_route_type_bus:bus_register_route(\n limit: $limit,\n order_by: { created_at: desc }\n where: {\n school_id: { _eq: $school_id }\n deleted_at: { _is_null: true }\n bus_register: { service_type: { _eq: \"", "\" },\n _or: [{student_code: {_ilike: $searchValue}}, {profile_student: {user: {full_name: {_ilike: $searchValue}}}}]\n }\n }\n ) {\n id\n bus_register{\n student_code\n profile_student{\n user{\n full_name\n }\n }\n }\n }\n\n bus_register_route(\n limit: $limit,\n order_by: { created_at: desc }\n where: {\n school_id: { _eq: $school_id }\n deleted_at: { _is_null: true }\n bus_register: { service_type: { _eq: \"", "\" },\n _or: [{student_code: {_ilike: $searchValue}}, {profile_student: {user: {full_name: {_ilike: $searchValue}}}}]\n }\n }\n ) {\n id\n bus_register{\n student_code\n profile_student{\n user{\n full_name\n }\n }\n }\n }\n\n bus_report_month(\n limit: $limit,\n where: { school_id: { _eq: $school_id }, deleted_at: { _is_null: true },\n _or: [{student_code: {_ilike: $searchValue}}, {profile_student: {user: {full_name: {_ilike: $searchValue}}}}]\n }\n ) {\n id\n student_code\n profile_student {\n user {\n full_name\n }\n }\n }\n }\n"], ["\n query QuerySearchGlobal($school_id: Int!, $searchValue: String, $school_year_id: Int, $limit: Int) {\n student_affairs_on_leave(\n limit: $limit\n order_by: { created_at: desc }\n where: {\n deleted_at: { _is_null: true }\n school_id: { _eq: $school_id }\n status:{_eq: 0}\n _or: [\n { student_code: { _ilike: $searchValue } }\n { profile_student: { user: { full_name: { _ilike: $searchValue } } } }\n ]\n }\n ) {\n id\n student_code\n profile_student {\n user {\n full_name\n }\n }\n }\n\n tuition_student: profile_student(\n limit: $limit,\n where: {\n deleted_at: { _is_null: true }\n _or: [{ user_code: { _ilike: $searchValue } }, { user: { full_name: { _ilike: $searchValue } } }]\n user: {\n school_id: { _eq: $school_id }\n deleted_at: { _is_null: true }\n user_roles: { role: { role_code: { _eq: \"", "\" } } }\n }\n }\n ) {\n student_status\n user_code\n user {\n full_name\n }\n program_map_educational_level {\n program_id\n educational_level_id\n }\n }\n\n food_report(limit: $limit,where: {school_id: {_eq: $school_id}, deleted_at: {_is_null: true}, _or: [{user_code: {_ilike: $searchValue}}, { profile_student:{user: {full_name: {_ilike: $searchValue}}}}], school_year_id: {_eq: $school_year_id}}) {\n id\n school_year_id\n profile_student{\n user{\n full_name\n } \n }\n user_code\n food_report_months(order_by: {created_at: desc}, where: {deleted_at: {_is_null: true}}) {\n school_term_id\n }\n }\n\n\n bus_register_route_type_bus:bus_register_route(\n limit: $limit,\n order_by: { created_at: desc }\n where: {\n school_id: { _eq: $school_id }\n deleted_at: { _is_null: true }\n bus_register: { service_type: { _eq: \"", "\" },\n _or: [{student_code: {_ilike: $searchValue}}, {profile_student: {user: {full_name: {_ilike: $searchValue}}}}]\n }\n }\n ) {\n id\n bus_register{\n student_code\n profile_student{\n user{\n full_name\n }\n }\n }\n }\n\n bus_register_route(\n limit: $limit,\n order_by: { created_at: desc }\n where: {\n school_id: { _eq: $school_id }\n deleted_at: { _is_null: true }\n bus_register: { service_type: { _eq: \"", "\" },\n _or: [{student_code: {_ilike: $searchValue}}, {profile_student: {user: {full_name: {_ilike: $searchValue}}}}]\n }\n }\n ) {\n id\n bus_register{\n student_code\n profile_student{\n user{\n full_name\n }\n }\n }\n }\n\n bus_report_month(\n limit: $limit,\n where: { school_id: { _eq: $school_id }, deleted_at: { _is_null: true },\n _or: [{student_code: {_ilike: $searchValue}}, {profile_student: {user: {full_name: {_ilike: $searchValue}}}}]\n }\n ) {\n id\n student_code\n profile_student {\n user {\n full_name\n }\n }\n }\n }\n"])), ROLE_SV, BUS_SERVICE_TYPE_BUS, BUS_SERVICE_TYPE_BTN);
|
|
11
|
+
var templateObject_1, templateObject_2, templateObject_3, templateObject_4, templateObject_5, templateObject_6, templateObject_7;
|
|
11
12
|
//# sourceMappingURL=gql.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"gql.js","sourceRoot":"","sources":["../../../src/query/gql.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,gBAAgB,CAAA;AACpC,OAAO,EAAE,iBAAiB,EAAE,MAAM,oBAAoB,CAAA;
|
|
1
|
+
{"version":3,"file":"gql.js","sourceRoot":"","sources":["../../../src/query/gql.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,gBAAgB,CAAA;AACpC,OAAO,EAAE,oBAAoB,EAAE,oBAAoB,EAAE,iBAAiB,EAAE,OAAO,EAAE,MAAM,oBAAoB,CAAA;AAE3G,MAAM,CAAC,IAAM,UAAU,GAAG,GAAG,gnBAAA,0eAcoD,EAAiB,iEAKjG,KALgF,iBAAiB,CAKjG,CAAA;AAED,MAAM,CAAC,IAAM,eAAe,GAAG,GAAG,2LAAA,wHAOjC,IAAA,CAAA;AACD,MAAM,CAAC,IAAM,0BAA0B,GAAG,GAAG,g1BAAA,6wBAgC5C,IAAA,CAAA;AACD,MAAM,CAAC,IAAM,eAAe,GAAG,GAAG,61BAAA,0xBAmCjC,IAAA,CAAA;AACD,MAAM,CAAC,IAAM,0BAA0B,GAAG,GAAG,0sBAAA,uoBA4B5C,IAAA,CAAA;AAED,MAAM,CAAC,IAAM,8BAA8B,GAAG,GAAG,6yEAAA,0uEA4FhD,IAAA,CAAA;AAED,MAAM,CAAC,IAAM,iBAAiB,GAAG,GAAG,6vGAAA,q+BAgCiB,EAAO,4/BAoCZ,EAAoB,2hBAsBpB,EAAoB,wrBA+BnE,KAzFoD,OAAO,EAoCZ,oBAAoB,EAsBpB,oBAAoB,CA+BnE,CAAA"}
|
|
@@ -7,6 +7,9 @@ export declare const switchSchool = "SWITCH";
|
|
|
7
7
|
export declare const KEY_LOGIN_LOGO = "login_logo";
|
|
8
8
|
export declare const KEY_SETTING = "setting_site";
|
|
9
9
|
export declare const KEY_QUERY_SETTING = "appearance";
|
|
10
|
+
export declare const ROLE_SV = "SV";
|
|
11
|
+
export declare const TEACHER_TYPE_LEADER = "1";
|
|
12
|
+
export declare const ROLE_TEACHER = "GV";
|
|
10
13
|
export declare const ITEM_LOCAL_STORAGE = "setting_site";
|
|
11
14
|
export declare const DEFAULT_AVATAR = "https://static-data-sisv2.phx-smartschool.com/common/prod/avatar/default_avatar.png";
|
|
12
15
|
export declare const DEFAULT_LOGO_LOGIN = "https://static-data-sisv2.phx-smartschool.com/demo-school/prod/phx-logo.png";
|
|
@@ -26,3 +29,14 @@ export declare const DF_MENU_ICON_HOVER_COLOR = "#a5f3fc";
|
|
|
26
29
|
export declare const DF_MENU_ICON_AND_TEXT_HOVER_COLOR = "#374151";
|
|
27
30
|
export declare const DF_MENU_ICON_ACTICE_COLOR = "#374151";
|
|
28
31
|
export declare const DF_MENU_HOVER_BG_COLOR = "#fff";
|
|
32
|
+
export declare const KEY_ATTENDANCE_LESSON = "student_affairs_attendance_lesson_detail";
|
|
33
|
+
export declare const KEY_ATTENDANCE_CLASS = "student_affairs_attendance_class_detail";
|
|
34
|
+
export declare const KEY_STUDENT_ON_LEAVE = "student_affairs_on_leave";
|
|
35
|
+
export declare const KEY_BUS_REPORT_MONTH = "bus_report_month";
|
|
36
|
+
export declare const KEY_BUS_REGISTER = "bus_register";
|
|
37
|
+
export declare const KEY_BUS_REGISTER_ROUTE = "bus_register_route";
|
|
38
|
+
export declare const KEY_BUS_REGISTER_ROUTE_TYPE_BUS = "bus_register_route_type_bus";
|
|
39
|
+
export declare const KEY_FOOD_REPORT = "food_report";
|
|
40
|
+
export declare const KEY_TUITION_STUDENT = "tuition_student";
|
|
41
|
+
export declare const BUS_SERVICE_TYPE_BTN = "BTN";
|
|
42
|
+
export declare const BUS_SERVICE_TYPE_BUS = "BUS";
|
|
@@ -7,6 +7,9 @@ export var switchSchool = 'SWITCH';
|
|
|
7
7
|
export var KEY_LOGIN_LOGO = 'login_logo';
|
|
8
8
|
export var KEY_SETTING = 'setting_site';
|
|
9
9
|
export var KEY_QUERY_SETTING = 'appearance';
|
|
10
|
+
export var ROLE_SV = 'SV';
|
|
11
|
+
export var TEACHER_TYPE_LEADER = '1';
|
|
12
|
+
export var ROLE_TEACHER = 'GV';
|
|
10
13
|
export var ITEM_LOCAL_STORAGE = 'setting_site';
|
|
11
14
|
export var DEFAULT_AVATAR = 'https://static-data-sisv2.phx-smartschool.com/common/prod/avatar/default_avatar.png';
|
|
12
15
|
export var DEFAULT_LOGO_LOGIN = 'https://static-data-sisv2.phx-smartschool.com/demo-school/prod/phx-logo.png';
|
|
@@ -26,4 +29,15 @@ export var DF_MENU_ICON_HOVER_COLOR = '#a5f3fc';
|
|
|
26
29
|
export var DF_MENU_ICON_AND_TEXT_HOVER_COLOR = '#374151';
|
|
27
30
|
export var DF_MENU_ICON_ACTICE_COLOR = '#374151';
|
|
28
31
|
export var DF_MENU_HOVER_BG_COLOR = '#fff';
|
|
32
|
+
export var KEY_ATTENDANCE_LESSON = 'student_affairs_attendance_lesson_detail';
|
|
33
|
+
export var KEY_ATTENDANCE_CLASS = 'student_affairs_attendance_class_detail';
|
|
34
|
+
export var KEY_STUDENT_ON_LEAVE = 'student_affairs_on_leave';
|
|
35
|
+
export var KEY_BUS_REPORT_MONTH = 'bus_report_month';
|
|
36
|
+
export var KEY_BUS_REGISTER = 'bus_register';
|
|
37
|
+
export var KEY_BUS_REGISTER_ROUTE = 'bus_register_route';
|
|
38
|
+
export var KEY_BUS_REGISTER_ROUTE_TYPE_BUS = 'bus_register_route_type_bus';
|
|
39
|
+
export var KEY_FOOD_REPORT = 'food_report';
|
|
40
|
+
export var KEY_TUITION_STUDENT = 'tuition_student';
|
|
41
|
+
export var BUS_SERVICE_TYPE_BTN = 'BTN'; // tại nhà
|
|
42
|
+
export var BUS_SERVICE_TYPE_BUS = 'BUS'; // tại điểm
|
|
29
43
|
//# sourceMappingURL=constants.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"constants.js","sourceRoot":"","sources":["../../../src/utils/constants.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,IAAM,cAAc,GAAG,YAAY,CAAA;AAC1C,MAAM,CAAC,IAAM,UAAU,GAAG,WAAW,CAAA;AACrC,MAAM,CAAC,IAAM,SAAS,GAAG,QAAQ,CAAA;AAEjC,MAAM,CAAC,IAAM,KAAK,GAAG,OAAO,CAAA;AAC5B,MAAM,CAAC,IAAM,UAAU,GAAG,KAAK,CAAA;AAC/B,MAAM,CAAC,IAAM,YAAY,GAAG,QAAQ,CAAA;AACpC,MAAM,CAAC,IAAM,cAAc,GAAG,YAAY,CAAA;AAC1C,MAAM,CAAC,IAAM,WAAW,GAAG,cAAc,CAAA;AACzC,MAAM,CAAC,IAAM,iBAAiB,GAAG,YAAY,CAAA;
|
|
1
|
+
{"version":3,"file":"constants.js","sourceRoot":"","sources":["../../../src/utils/constants.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,IAAM,cAAc,GAAG,YAAY,CAAA;AAC1C,MAAM,CAAC,IAAM,UAAU,GAAG,WAAW,CAAA;AACrC,MAAM,CAAC,IAAM,SAAS,GAAG,QAAQ,CAAA;AAEjC,MAAM,CAAC,IAAM,KAAK,GAAG,OAAO,CAAA;AAC5B,MAAM,CAAC,IAAM,UAAU,GAAG,KAAK,CAAA;AAC/B,MAAM,CAAC,IAAM,YAAY,GAAG,QAAQ,CAAA;AACpC,MAAM,CAAC,IAAM,cAAc,GAAG,YAAY,CAAA;AAC1C,MAAM,CAAC,IAAM,WAAW,GAAG,cAAc,CAAA;AACzC,MAAM,CAAC,IAAM,iBAAiB,GAAG,YAAY,CAAA;AAC7C,MAAM,CAAC,IAAM,OAAO,GAAG,IAAI,CAAA;AAC3B,MAAM,CAAC,IAAM,mBAAmB,GAAG,GAAG,CAAA;AACtC,MAAM,CAAC,IAAM,YAAY,GAAG,IAAI,CAAA;AAEhC,MAAM,CAAC,IAAM,kBAAkB,GAAG,cAAc,CAAA;AAChD,MAAM,CAAC,IAAM,cAAc,GAAG,qFAAqF,CAAA;AACnH,MAAM,CAAC,IAAM,kBAAkB,GAAG,6EAA6E,CAAA;AAC/G,MAAM,CAAC,IAAM,sBAAsB,GAAG,6EAA6E,CAAA;AAEnH,MAAM,CAAC,IAAM,kBAAkB,GAAG,SAAS,CAAA;AAC3C,MAAM,CAAC,IAAM,iBAAiB,GAAG,SAAS,CAAA;AAC1C,MAAM,CAAC,IAAM,oBAAoB,GAAG,SAAS,CAAA;AAC7C,MAAM,CAAC,IAAM,kBAAkB,GAAG,SAAS,CAAA;AAC3C,MAAM,CAAC,IAAM,sBAAsB,GAAG,SAAS,CAAA;AAC/C,MAAM,CAAC,IAAM,4BAA4B,GAAG,SAAS,CAAA;AACrD,MAAM,CAAC,IAAM,oBAAoB,GAAG,SAAS,CAAA;AAE7C,MAAM,CAAC,IAAM,gBAAgB,GAAG,SAAS,CAAA;AACzC,MAAM,CAAC,IAAM,kBAAkB,GAAG,SAAS,CAAA;AAC3C,MAAM,CAAC,IAAM,uBAAuB,GAAG,MAAM,CAAA;AAC7C,MAAM,CAAC,IAAM,kBAAkB,GAAG,SAAS,CAAA;AAC3C,MAAM,CAAC,IAAM,wBAAwB,GAAG,SAAS,CAAA;AACjD,MAAM,CAAC,IAAM,iCAAiC,GAAG,SAAS,CAAA;AAC1D,MAAM,CAAC,IAAM,yBAAyB,GAAG,SAAS,CAAA;AAClD,MAAM,CAAC,IAAM,sBAAsB,GAAG,MAAM,CAAA;AAE5C,MAAM,CAAC,IAAM,qBAAqB,GAAG,0CAA0C,CAAA;AAC/E,MAAM,CAAC,IAAM,oBAAoB,GAAG,yCAAyC,CAAA;AAC7E,MAAM,CAAC,IAAM,oBAAoB,GAAG,0BAA0B,CAAA;AAC9D,MAAM,CAAC,IAAM,oBAAoB,GAAG,kBAAkB,CAAA;AACtD,MAAM,CAAC,IAAM,gBAAgB,GAAG,cAAc,CAAA;AAC9C,MAAM,CAAC,IAAM,sBAAsB,GAAG,oBAAoB,CAAA;AAC1D,MAAM,CAAC,IAAM,+BAA+B,GAAG,6BAA6B,CAAA;AAC5E,MAAM,CAAC,IAAM,eAAe,GAAG,aAAa,CAAA;AAC5C,MAAM,CAAC,IAAM,mBAAmB,GAAG,iBAAiB,CAAA;AAEpD,MAAM,CAAC,IAAM,oBAAoB,GAAG,KAAK,CAAA,CAAC,UAAU;AACpD,MAAM,CAAC,IAAM,oBAAoB,GAAG,KAAK,CAAA,CAAC,WAAW"}
|