|
Lines 95-100
Link Here
|
| 95 |
:disabled="!selected_provider && !manual_form" |
95 |
:disabled="!selected_provider && !manual_form" |
| 96 |
/> |
96 |
/> |
| 97 |
</li> |
97 |
</li> |
|
|
98 |
<li> |
| 99 |
<label for="usage_data_provider_vendor_id" |
| 100 |
>{{ $__("Vendor") }}:</label |
| 101 |
> |
| 102 |
<FormSelectVendors |
| 103 |
id="usage_data_provider_vendor_id" |
| 104 |
v-model="usage_data_provider.vendor_id" |
| 105 |
/> |
| 106 |
</li> |
| 98 |
<li> |
107 |
<li> |
| 99 |
<label for="usage_data_provider_status" |
108 |
<label for="usage_data_provider_status" |
| 100 |
>{{ $__("Harvester status") }}:</label |
109 |
>{{ $__("Harvester status") }}:</label |
|
Lines 391-396
Link Here
|
| 391 |
|
400 |
|
| 392 |
<script> |
401 |
<script> |
| 393 |
import ButtonSubmit from "../ButtonSubmit.vue"; |
402 |
import ButtonSubmit from "../ButtonSubmit.vue"; |
|
|
403 |
import FormSelectVendors from "../FormSelectVendors.vue"; |
| 394 |
import { setMessage, setWarning } from "../../messages"; |
404 |
import { setMessage, setWarning } from "../../messages"; |
| 395 |
import { APIClient } from "../../fetch/api-client.js"; |
405 |
import { APIClient } from "../../fetch/api-client.js"; |
| 396 |
import { inject, onBeforeMount, ref } from "vue"; |
406 |
import { inject, onBeforeMount, ref } from "vue"; |
|
Lines 411-416
export default {
Link Here
|
| 411 |
erm_usage_data_provider_id: null, |
421 |
erm_usage_data_provider_id: null, |
| 412 |
name: "", |
422 |
name: "", |
| 413 |
description: "", |
423 |
description: "", |
|
|
424 |
vendor_id: null, |
| 414 |
active: 1, |
425 |
active: 1, |
| 415 |
method: "", |
426 |
method: "", |
| 416 |
aggregator: "", |
427 |
aggregator: "", |
|
Lines 647-652
export default {
Link Here
|
| 647 |
}, |
658 |
}, |
| 648 |
components: { |
659 |
components: { |
| 649 |
ButtonSubmit, |
660 |
ButtonSubmit, |
|
|
661 |
FormSelectVendors, |
| 650 |
}, |
662 |
}, |
| 651 |
name: "UsageStatisticsDataProvidersFormAdd", |
663 |
name: "UsageStatisticsDataProvidersFormAdd", |
| 652 |
}; |
664 |
}; |