MT#63047 API add 'own' field to subscriber and customer phonebook

* add own field to contract and subscriber phonebook views to
  identify if the entry was created by the subscriber/contract_id
  or inherited.

Change-Id: I775be31ec6aced4a76c9701e24b7ab1021dc36b2
mr13.5
Kirill Solomko 4 months ago
parent a38cd246c4
commit f44b43eb77

@ -43,4 +43,13 @@ has_field 'number' => (
},
);
has_field 'own' => (
type => 'Boolean',
required => 0,
default_value => 0,
label => 'Number allegiance',
element_attr => { rel => ['tooltip'], title => ['Defines if the Phonebook entry belongs to the customer'],
},
);
1;

@ -60,7 +60,18 @@ has_field 'shared' => (
label => 'Share phonebook entry',
element_attr => {
rel => ['tooltip'],
title => ['Define if the Phonebook entry is visible to other subscribers within the same contract'],
title => ['Defines if the Phonebook entry is visible to other subscribers within the same contract'],
},
);
has_field 'own' => (
type => 'Boolean',
required => 0,
default_value => 0,
label => 'Number allegiance',
element_attr => {
rel => ['tooltip'],
title => ['Defines if the Phonebook entry belongs to the subscriber'],
},
);

Loading…
Cancel
Save