Beispiel #1
0
 def unique_representation(self):
     if not hasattr(self, "_unique_representation"):
         result_type_desc = request_object_attribute(
             self.resultaattype, "omschrijving", "resultaattype")
         self._unique_representation = (
             f"({self.zaak.unique_representation()}) - {result_type_desc}")
     return self._unique_representation
Beispiel #2
0
 def unique_representation(self):
     if not hasattr(self, "_unique_representation"):
         io_id = request_object_attribute(
             self.object, "identificatie", self.object_type
         )
         self._unique_representation = f"({self.informatieobject.latest_version.unique_representation()}) - {io_id}"
     return self._unique_representation
Beispiel #3
0
 def unique_representation(self):
     if not hasattr(self, "_unique_representation"):
         io_id = request_object_attribute(self.informatieobject,
                                          "identificatie",
                                          "enkelvoudiginformatieobject")
         self._unique_representation = (
             f"({self.verzoek.unique_representation()}) - {io_id}")
     return self._unique_representation
Beispiel #4
0
 def unique_representation(self):
     if not hasattr(self, '_unique_representation'):
         io_id = request_object_attribute(self.informatieobject, 'identificatie', 'enkelvoudiginformatieobject')
         self._unique_representation = f"({self.zaak.unique_representation()}) - {io_id}"
     return self._unique_representation
Beispiel #5
0
 def unique_representation(self):
     if not hasattr(self, '_unique_representation'):
         result_type_desc = request_object_attribute(self.resultaat_type, 'omschrijving', 'resultaattype')
         self._unique_representation = f"({self.zaak.unique_representation()}) - {result_type_desc}"
     return self._unique_representation