This commit is contained in:
2020-07-16 19:32:59 +00:00
parent 57c478ae81
commit a8187678eb

View File

@@ -129,19 +129,6 @@
@input="fieldValueChanged('inTags')" @input="fieldValueChanged('inTags')"
></gz-tag-picker> ></gz-tag-picker>
</v-col> </v-col>
<v-col v-if="showOutTags" cols="12">
<gz-tag-picker
v-model="obj.outTags"
:label="$ay.t('OutTags')"
:readonly="formState.readOnly"
:disabled="formState.readOnly"
ref="outTags"
:data-cy="!!$ay.dev ? 'outTags' : false"
:error-messages="form().serverErrors(this, 'outTags')"
@input="fieldValueChanged('outTags')"
></gz-tag-picker>
</v-col>
</v-row> </v-row>
</v-form> </v-form>
</v-col> </v-col>
@@ -239,8 +226,7 @@ export default {
public NotifyDeliveryMethod DeliveryMethod { get; set; } public NotifyDeliveryMethod DeliveryMethod { get; set; }
public string DeliveryAddress { get; set; } public string DeliveryAddress { get; set; }
public long? AttachReportId { get; set; } public long? AttachReportId { get; set; }
public List<string> InTags { get; set; } public List<string> InTags { get; set; }*/
public List<string> OutTags { get; set; } */
obj: { obj: {
id: 0, id: 0,
concurrency: 0, concurrency: 0,
@@ -253,8 +239,7 @@ export default {
deliveryMethod: 0, deliveryMethod: 0,
deliveryAddress: null, deliveryAddress: null,
attachReportId: null, attachReportId: null,
inTags: [], inTags: []
outTags: []
}, },
formState: { formState: {
@@ -363,9 +348,6 @@ export default {
}, },
showInTags() { showInTags() {
return true; return true;
},
showOutTags() {
return true;
} }
}, },
methods: { methods: {
@@ -725,7 +707,6 @@ async function fetchTranslatedText(vm) {
"NotifyEventType", "NotifyEventType",
"NotifyDeliveryAddress", "NotifyDeliveryAddress",
"InTags", "InTags",
"OutTags",
"NotifyEventObjectDeleted", "NotifyEventObjectDeleted",
"NotifyEventObjectCreated", "NotifyEventObjectCreated",
"NotifyEventObjectModified", "NotifyEventObjectModified",