|
Lines 319-324
Link Here
|
| 319 |
:disabled="!selected_provider && !manual_form" |
319 |
:disabled="!selected_provider && !manual_form" |
| 320 |
/> |
320 |
/> |
| 321 |
</li> |
321 |
</li> |
|
|
322 |
<li> |
| 323 |
<label for="usage_data_provider_dateformat" |
| 324 |
>{{ $__("Date format") }}: |
| 325 |
</label> |
| 326 |
<v-select |
| 327 |
id="usage_data_provider_dateformat" |
| 328 |
v-model="usage_data_provider.dateformat" |
| 329 |
label="description" |
| 330 |
:reduce="dateformat => dateformat.value" |
| 331 |
:options="dateformats" |
| 332 |
/> |
| 333 |
</li> |
| 322 |
</ol> |
334 |
</ol> |
| 323 |
<ol class="credentials_form" v-if="sushi_service"> |
335 |
<ol class="credentials_form" v-if="sushi_service"> |
| 324 |
<h3>{{ $__("Credentials information") }}</h3> |
336 |
<h3>{{ $__("Credentials information") }}</h3> |
|
Lines 430-435
export default {
Link Here
|
| 430 |
{ description: $__("Active"), value: 1 }, |
442 |
{ description: $__("Active"), value: 1 }, |
| 431 |
{ description: $__("Inactive"), value: 0 }, |
443 |
{ description: $__("Inactive"), value: 0 }, |
| 432 |
]); |
444 |
]); |
|
|
445 |
const dateformats = ref([ |
| 446 |
{ description: $__("7 digit"), value: 7 }, |
| 447 |
{ description: $__("10 digit"), value: 10 }, |
| 448 |
]); |
| 433 |
const registry_data = ref([]); |
449 |
const registry_data = ref([]); |
| 434 |
const valid_report_types = ref([ |
450 |
const valid_report_types = ref([ |
| 435 |
...authorisedValues.value.av_report_types, |
451 |
...authorisedValues.value.av_report_types, |
|
Lines 629-634
export default {
Link Here
|
| 629 |
initialized, |
645 |
initialized, |
| 630 |
previous_route, |
646 |
previous_route, |
| 631 |
statuses, |
647 |
statuses, |
|
|
648 |
dateformats, |
| 632 |
registry_data, |
649 |
registry_data, |
| 633 |
valid_report_types, |
650 |
valid_report_types, |
| 634 |
selected_provider, |
651 |
selected_provider, |
| 635 |
- |
|
|