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 385-390
Link Here
|
385 |
|
394 |
|
386 |
<script> |
395 |
<script> |
387 |
import ButtonSubmit from "../ButtonSubmit.vue" |
396 |
import ButtonSubmit from "../ButtonSubmit.vue" |
|
|
397 |
import FormSelectVendors from "../FormSelectVendors.vue" |
388 |
import { setMessage, setWarning } from "../../messages" |
398 |
import { setMessage, setWarning } from "../../messages" |
389 |
import { APIClient } from "../../fetch/api-client.js" |
399 |
import { APIClient } from "../../fetch/api-client.js" |
390 |
import { inject } from "vue" |
400 |
import { inject } from "vue" |
Lines 405-410
export default {
Link Here
|
405 |
erm_usage_data_provider_id: null, |
415 |
erm_usage_data_provider_id: null, |
406 |
name: "", |
416 |
name: "", |
407 |
description: "", |
417 |
description: "", |
|
|
418 |
vendor_id: null, |
408 |
active: 1, |
419 |
active: 1, |
409 |
method: "", |
420 |
method: "", |
410 |
aggregator: "", |
421 |
aggregator: "", |
Lines 620-625
export default {
Link Here
|
620 |
}, |
631 |
}, |
621 |
components: { |
632 |
components: { |
622 |
ButtonSubmit, |
633 |
ButtonSubmit, |
|
|
634 |
FormSelectVendors, |
623 |
}, |
635 |
}, |
624 |
name: "UsageStatisticsDataProvidersFormAdd", |
636 |
name: "UsageStatisticsDataProvidersFormAdd", |
625 |
} |
637 |
} |