Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feature: ignore calendar switcher aded [WTEL-4560] #690

Merged
merged 1 commit into from
Jun 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"vue-router": "^4.2.5",
"vue2-dropzone": "^3.6.0",
"vuex": "^4.1.0",
"webitel-sdk": "^24.2.12"
"webitel-sdk": "^24.4.7"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.4.0",
Expand Down
1 change: 1 addition & 0 deletions src/app/locale/en/en.js
Original file line number Diff line number Diff line change
Expand Up @@ -872,6 +872,7 @@ export default {
manualDistribution: 'Manual distribution',
lastMessageTimeout: 'Timeout from the last message',
stickyIgnoreStatus: 'Ignore agent status',
ignoreCalendar: 'Ignore calendar',
processing: {
processing: 'Processing',
enabled: 'Waiting for call result',
Expand Down
1 change: 1 addition & 0 deletions src/app/locale/ru/ru.js
Original file line number Diff line number Diff line change
Expand Up @@ -871,6 +871,7 @@ export default {
manualDistribution: 'Ручное распределение',
lastMessageTimeout: 'Время ожидания от последнего сообщения',
stickyIgnoreStatus: 'Игнорировать статус оператора',
ignoreCalendar: 'Игнорировать календарь',
processing: {
processing: 'Обработка',
enabled: 'Ожидание результата задачи',
Expand Down
1 change: 1 addition & 0 deletions src/app/locale/ua/ua.js
Original file line number Diff line number Diff line change
Expand Up @@ -872,6 +872,7 @@ export default {
manualDistribution: 'Ручне розподілення',
lastMessageTimeout: 'Час очікування від останнього повідомлення',
stickyIgnoreStatus: 'Ігнорувати статус оператора',
ignoreCalendar: 'Ігнорувати календар',
processing: {
processing: 'Обробка',
enabled: 'Очікування результату задачі',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,13 @@
:value="itemInstance.payload.stickyIgnoreStatus"
@change="setItemPayloadProp({ prop: 'stickyIgnoreStatus', value: $event })"
/>
<wt-switcher
v-if="specificControls.ignoreCalendar"
:disabled="disableUserInput"
:label="$t('objects.ccenter.queues.ignoreCalendar')"
:value="itemInstance.payload.ignoreCalendar"
@change="setItemPayloadProp({ prop: 'ignoreCalendar', value: $event })"
/>
<wt-switcher
v-if="specificControls.manualDistribution"
:disabled="disableUserInput"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ const QueueTypeProperties = Object.freeze({
'stickyAgent',
'stickyAgentSec',
'stickyIgnoreStatus',
'ignoreCalendar',
'autoAnswerTone',
'minOnlineAgents',
'manualDistribution',
Expand Down Expand Up @@ -208,6 +209,7 @@ const QueueTypeProperties = Object.freeze({
'stickyAgent',
'stickyAgentSec',
'stickyIgnoreStatus',
'ignoreCalendar',
'minOnlineAgents',
'manualDistribution',
'lastMessageTimeout',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ const chatInboundQueue = () => ({
maxWaitTime: 60 * 60, // required
stickyAgentSec: 5,
stickyIgnoreStatus: false,
ignoreCalendar: false,
maxIdleAgent: 60 * 60, // hour
maxIdleClient: 60 * 60, // hour
maxIdleDialog: 0,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ const inboundQueue = () => ({
maxWaitTime: 60 * 60, // required
allowGreetingAgent: false,
stickyIgnoreStatus: false,
ignoreCalendar: false,
stickyAgentSec: 5,
maxWaitingSize: 0,
autoAnswerTone: null,
Expand Down
Loading