Skip to content

Commit

Permalink
Merge pull request #417 from webitel/hotfix/DEV-2606
Browse files Browse the repository at this point in the history
DEV-2606
  • Loading branch information
dlohvinov authored Feb 8, 2023
2 parents 81827a0 + fa53d34 commit c898139
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/app/locale/en/en.js
Original file line number Diff line number Diff line change
Expand Up @@ -755,6 +755,7 @@ export default {
maxCalls: 'Max tasks',
maxCallsHint: 'If value is 0, dialer won\'t call',
recordings: 'Recording',
recordAll: 'Start record after answer',
perNumbers: 'Dialing Attempts per each phone number',
maxWordLength: 'Maximum word length (ms)',
maxNumberOfWords: 'Maximum number of words',
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 @@ -754,6 +754,7 @@ export default {
maxCalls: 'Лимит задач',
maxCallsHint: 'Если значение равно 0, дайлер не будет звонить',
recordings: 'Запись',
recordAll: 'Начать запись после ответа',
perNumbers: 'Инициация для каждого номера',
maxWordLength: 'Максимальная продолжительность предложения (мс)',
maxNumberOfWords: 'Максимальное кол-во слов в приветствии',
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 @@ -755,6 +755,7 @@ export default {
maxCalls: 'Ліміт задач',
maxCallsHint: 'Якщо значення дорівнює 0, дайлер не буде дзвонити',
recordings: 'Запис',
recordAll: 'Почати запис після відповіді',
perNumbers: 'Ініціація на кожен номер',
maxWordLength: 'Максимальна тривалість речення (мс)',
maxNumberOfWords: 'Максимальна кількість слів в привітанні',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,13 @@
:value="itemInstance.payload.recordings"
@change="setItemPayloadProp({ prop: 'recordings', value: $event })"
></wt-switcher>
<wt-switcher
v-if="specificControls.recordings && itemInstance.payload.recordings"
:disabled="disableUserInput"
:label="$t('objects.ccenter.queues.recordAll')"
:value="itemInstance.payload.recordAll"
@change="setItemPayloadProp({ prop: 'recordAll', value: $event })"
></wt-switcher>
<wt-switcher
v-if="specificControls.perNumbers"
:disabled="disableUserInput"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ const offlineQueue = () => ({
payload: {
originateTimeout: 60, // required
recordings: false,
recordAll: false,
perNumbers: false,
},
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ const outboundIVRQueue = () => ({
waitBetweenRetriesDesc: false,
maxCalls: 10,
recordings: false,
recordAll: false,
amd: amd(),
strictCircuit: false,
perNumbers: false,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ const predictiveDialer = () => ({
waitBetweenRetriesDesc: false,
retryAbandoned: false,
recordings: false,
recordAll: false,
allowGreetingAgent: false,
maxCalls: 10,
amd: amd(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ const previewDialer = () => ({
waitBetweenRetriesDesc: false,
maxCalls: 10,
recordings: false,
recordAll: false,
allowGreetingAgent: false,
strictCircuit: false,
endless: false,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ const progressiveDialer = () => ({
waitBetweenRetries: 30 * 60, // required
waitBetweenRetriesDesc: false,
recordings: false,
recordAll: false,
allowGreetingAgent: false,
maxCalls: 10,
amd: amd(),
Expand Down

0 comments on commit c898139

Please sign in to comment.