refactor: update configuration constants and clean up package scripts

- Modified time configuration constants in appconfig.constant.ts to reflect new operational hours.
- Removed linting and prettier scripts from package.json to streamline the build process.
This commit is contained in:
2024-12-03 18:19:08 +07:00
parent 81e6192974
commit b0317b0660
2 changed files with 4 additions and 6 deletions

View File

@@ -22,25 +22,25 @@ export const ConfigConstants: Record<
MID_DAY_BREAK_TIME_START: {
name: 'Mid Day Break Time Start',
key: 'MID_DAY_BREAK_TIME_START',
value: '12:00:00',
value: '05:00:00',
visible: true,
},
MID_DAY_BREAK_TIME_END: {
name: 'Mid Day Break Time End',
key: 'MID_DAY_BREAK_TIME_END',
value: '13:00:00',
value: '06:00:00',
visible: true,
},
DAY_START_TIME: {
name: 'Day Start Time',
key: 'DAY_START_TIME',
value: '08:00:00',
value: '01:00:00',
visible: true,
},
DAY_END_TIME: {
name: 'Day End Time',
key: 'DAY_END_TIME',
value: '22:00:00',
value: '15:00:00',
visible: true,
},
DEFAULT_COMMISSION: {