diff --git a/repository/BpmBusinessIntelligence.package/BpmChartType.class/instance/renderReport.on.parent..st b/repository/BpmBusinessIntelligence.package/BpmChartType.class/instance/renderReport.on.parent..st new file mode 100644 index 000000000..65596f7ef --- /dev/null +++ b/repository/BpmBusinessIntelligence.package/BpmChartType.class/instance/renderReport.on.parent..st @@ -0,0 +1,6 @@ +other +renderReport: anAppDistributionReport on: html parent: aWebComponent + "The receiver render the report on canvas with parent . + If the chart is a then the parent can be ignored becuase there is no Seaside component involved for the chart" + + ^self renderReport: anAppDistributionReport on: html \ No newline at end of file diff --git a/repository/BpmBusinessIntelligence.package/BpmChartType.class/methodProperties.json b/repository/BpmBusinessIntelligence.package/BpmChartType.class/methodProperties.json index 5bdfb4b9c..54b1c5d61 100644 --- a/repository/BpmBusinessIntelligence.package/BpmChartType.class/methodProperties.json +++ b/repository/BpmBusinessIntelligence.package/BpmChartType.class/methodProperties.json @@ -3,4 +3,5 @@ "instanciableDistributionSubclasses" : "brunobb 06/04/2018 10:43" }, "instance" : { "renderReport:on:" : "brunobb 05/24/2018 04:17", - "renderReport:on:atDiv:" : "brunobb 09/20/2018 07:54" } } + "renderReport:on:atDiv:" : "brunobb 09/20/2018 07:54", + "renderReport:on:parent:" : "brunobb 10/04/2019 12:35" } } diff --git a/repository/BpmBusinessIntelligence.package/BpmSingleChartDefinition.class/instance/renderReport.on.parent..st b/repository/BpmBusinessIntelligence.package/BpmSingleChartDefinition.class/instance/renderReport.on.parent..st new file mode 100644 index 000000000..56703850d --- /dev/null +++ b/repository/BpmBusinessIntelligence.package/BpmSingleChartDefinition.class/instance/renderReport.on.parent..st @@ -0,0 +1,6 @@ +html render +renderReport: anAppDistributionReport on: html parent: aWebComponent + "The receiver render the report on canvas with parent . + If the chart is a then the parent can be ignored becuase there is no Seaside component involved for the chart" + + self chartType renderReport: anAppDistributionReport on: html parent: aWebComponent \ No newline at end of file diff --git a/repository/BpmBusinessIntelligence.package/BpmSingleChartDefinition.class/instance/renderTasksHeatmapChartDistribution.on..st b/repository/BpmBusinessIntelligence.package/BpmSingleChartDefinition.class/instance/renderTasksHeatmapChartDistribution.on..st index fd3325087..0b08ae2ba 100644 --- a/repository/BpmBusinessIntelligence.package/BpmSingleChartDefinition.class/instance/renderTasksHeatmapChartDistribution.on..st +++ b/repository/BpmBusinessIntelligence.package/BpmSingleChartDefinition.class/instance/renderTasksHeatmapChartDistribution.on..st @@ -1,4 +1,4 @@ -other +html render renderTasksHeatmapChartDistribution: anAppDistributionReport on: html html render: (WAHeatMapBpmnCanvasComposite new model: self scope processes last) \ No newline at end of file diff --git a/repository/BpmBusinessIntelligence.package/BpmSingleChartDefinition.class/instance/renderTasksHeatmapChartDistribution.on.parent..st b/repository/BpmBusinessIntelligence.package/BpmSingleChartDefinition.class/instance/renderTasksHeatmapChartDistribution.on.parent..st new file mode 100644 index 000000000..8eaf2cb5c --- /dev/null +++ b/repository/BpmBusinessIntelligence.package/BpmSingleChartDefinition.class/instance/renderTasksHeatmapChartDistribution.on.parent..st @@ -0,0 +1,4 @@ +html render +renderTasksHeatmapChartDistribution: anAppDistributionReport on: html parent: aWebComponent + + html render: ((WAHeatMapBpmnCanvasComposite parent: aWebComponent) model: self scope processes last) \ No newline at end of file diff --git a/repository/BpmBusinessIntelligence.package/BpmSingleChartDefinition.class/methodProperties.json b/repository/BpmBusinessIntelligence.package/BpmSingleChartDefinition.class/methodProperties.json index 5c4e13208..d1701d446 100644 --- a/repository/BpmBusinessIntelligence.package/BpmSingleChartDefinition.class/methodProperties.json +++ b/repository/BpmBusinessIntelligence.package/BpmSingleChartDefinition.class/methodProperties.json @@ -54,11 +54,13 @@ "renderPieChartDistribution:on:" : "brunobb 12/03/2018 11:41", "renderPieChartDistribution:on:atDiv:" : "brunobb 12/03/2018 11:41", "renderReport:on:" : "brunobb 12/03/2018 11:41", + "renderReport:on:parent:" : "brunobb 10/04/2019 12:40", "renderSplineAreaChartDistribution:on:" : "brunobb 12/03/2018 11:41", "renderSplineAreaChartDistribution:on:atDiv:" : "brunobb 12/03/2018 11:41", "renderSplineChartDistribution:on:" : "brunobb 12/03/2018 11:41", "renderSplineChartDistribution:on:atDiv:" : "brunobb 12/03/2018 11:41", "renderTasksHeatmapChartDistribution:on:" : "brunobb 09/25/2019 13:34", + "renderTasksHeatmapChartDistribution:on:parent:" : "brunobb 10/04/2019 12:36", "report" : "brunobb 12/03/2018 11:41", "report:" : "brunobb 12/03/2018 11:41", "reportName" : "brunobb 12/03/2018 11:41", diff --git a/repository/BpmBusinessIntelligence.package/BpmTasksHeatmapChart.class/instance/renderReport.on.parent..st b/repository/BpmBusinessIntelligence.package/BpmTasksHeatmapChart.class/instance/renderReport.on.parent..st new file mode 100644 index 000000000..cda7f4221 --- /dev/null +++ b/repository/BpmBusinessIntelligence.package/BpmTasksHeatmapChart.class/instance/renderReport.on.parent..st @@ -0,0 +1,5 @@ +other +renderReport: anAppDistributionReport on: html parent: aWebComponent + "The receiver render the report on canvas with parent ." + + chartDefinition renderTasksHeatmapChartDistribution: anAppDistributionReport on: html parent: aWebComponent \ No newline at end of file diff --git a/repository/BpmBusinessIntelligence.package/BpmTasksHeatmapChart.class/methodProperties.json b/repository/BpmBusinessIntelligence.package/BpmTasksHeatmapChart.class/methodProperties.json index fc49a2818..1016e59b9 100644 --- a/repository/BpmBusinessIntelligence.package/BpmTasksHeatmapChart.class/methodProperties.json +++ b/repository/BpmBusinessIntelligence.package/BpmTasksHeatmapChart.class/methodProperties.json @@ -2,4 +2,5 @@ "class" : { "getComboName" : "brunobb 09/26/2019 03:14" }, "instance" : { - "renderReport:on:" : "brunobb 09/25/2019 13:13" } } + "renderReport:on:" : "brunobb 09/25/2019 13:13", + "renderReport:on:parent:" : "brunobb 10/04/2019 12:36" } } diff --git a/repository/BpmBusinessIntelligence.package/monticello.meta/version b/repository/BpmBusinessIntelligence.package/monticello.meta/version index f9f6023e5..eccb1968f 100644 --- a/repository/BpmBusinessIntelligence.package/monticello.meta/version +++ b/repository/BpmBusinessIntelligence.package/monticello.meta/version @@ -1 +1 @@ -(name 'BpmBusinessIntelligence-brunobb.119' message '' id '23c1a835-15cd-4e17-9bdc-1a75ec1fc55a' date '09/26/2019' time '03:22:37' author 'brunobb' ancestors ((name 'BpmBusinessIntelligence-brunobb.118' message '' id '0d049e07-2a99-4149-9b85-5dfbed6f8b58' date '09/26/2019' time '02:21:48' author 'brunobb' ancestors ((name 'BpmBusinessIntelligence-brunobb.117' message '' id 'fce488cd-db4c-4645-8f0a-5c2fb976fddd' date '07/03/2019' time '11:34:07' author 'brunobb' ancestors ((name 'BpmBusinessIntelligence-brunobb.116' message '' id '36e2fc4e-dbe4-4491-95e7-0169af9b4832' date '06/25/2019' time '05:28:40' author 'brunobb' ancestors ((name 'BpmBusinessIntelligence-brunobb.115' message '' id 'ed0e80fd-cecc-446f-b719-c8c3bc458975' date '06/24/2019' time '12:51:27' author 'brunobb' ancestors ((name 'BpmBusinessIntelligence-brunobb.114' message '' id 'b544adcf-cc8f-4ac4-8442-d0ec6ec52a06' date '06/24/2019' time '10:39:38' author 'brunobb' ancestors ((name 'BpmBusinessIntelligence-brunobb.113' message '' id '97f3aace-dbac-4fb4-b226-ffd91df86ab9' date '06/11/2019' time '10:41:56' author 'brunobb' ancestors ((name 'BpmBusinessIntelligence-brunobb.112' message '' id '854a6178-891d-43b2-9f1e-bda150001aa3' date '06/11/2019' time '09:39:36' author 'brunobb' ancestors ((name 'BpmBusinessIntelligence-brunobb.111' message '' id 'ab43dfcb-072c-43de-bb78-1d962487bbf1' date '06/11/2019' time '03:23:14' author 'brunobb' ancestors ((name 'BpmBusinessIntelligence-brunobb.110' message '' id 'd60f8934-9715-489d-af5e-30fee42c7787' date '06/10/2019' time '13:35:09' author 'brunobb' ancestors ((name 'BpmBusinessIntelligence-brunobb.109' message '' id '19ede3df-9204-4c9f-8e34-c3747c74dd6f' date '06/10/2019' time '10:34:16' author 'brunobb' ancestors ((name 'BpmBusinessIntelligence-brunobb.108' message '' id '17c0ddc9-15fe-421f-9edb-590e2282ca5d' date '06/07/2019' time '12:39:48' author 'brunobb' ancestors ((name 'BpmBusinessIntelligence-brunobb.107' message '' id 'b77c9ce2-e70c-460e-a0b7-9fc152abbbfb' date '06/07/2019' time '10:08:58' author 'brunobb' ancestors ((name 'BpmBusinessIntelligence-brunobb.106' message '' id 'd636bea2-ffaf-4c36-a6b5-d79dcb4efbae' date '06/04/2019' time '04:43:37' author 'brunobb' ancestors ((name 'BpmBusinessIntelligence-brunobb.105' message '' id 'ae054b1d-2270-4a23-9ec3-8c596a228251' date '06/03/2019' time '12:19:56' author 'brunobb' ancestors ((name 'BpmBusinessIntelligence-brunobb.104' message '' id '0a81be89-11fd-446a-873a-f284cfba005d' date '03/25/2019' time '10:25:09' author 'brunobb' ancestors ((name 'BpmBusinessIntelligence-brunobb.103' message '' id '12422f64-f263-4724-8d1e-9a82a98a6404' date '03/25/2019' time '09:13:44' author 'brunobb' ancestors ((name 'BpmBusinessIntelligence-brunobb.102' message '' id '53afb027-ba95-48ed-8241-9fef09c1de10' date '03/25/2019' time '08:51:36' author 'brunobb' ancestors ((name 'BpmBusinessIntelligence-brunobb.101' message '' id '48705a3c-e482-4b74-9324-072ee73e3f48' date '02/01/2019' time '09:24:00' author 'brunobb' ancestors ((name 'BpmBusinessIntelligence-brunobb.100' message '' id '5ee2deaf-c0f4-47bd-a39a-b2de7fc4e57f' date '12/03/2018' time '12:10:00' author 'brunobb' ancestors ((name 'BpmBusinessIntelligence-brunobb.99' message '' id '05538f5e-2c3b-4b97-a208-828b69860223' date '11/30/2018' time '10:35:22' author 'brunobb' ancestors ((name 'BpmBusinessIntelligence-brunobb.98' message '' id '7dec2012-9dff-48d6-a84a-b3c055eb0aaf' date '11/28/2018' time '11:05:35' author 'brunobb' ancestors ((name 'BpmBusinessIntelligence-brunobb.97' message '' id '26fd7354-0be7-4db1-accb-1d0e0631cc07' date '11/28/2018' time '08:32:54' author 'brunobb' ancestors () stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ()) \ No newline at end of file +(name 'BpmBusinessIntelligence-brunobb.120' message '' id '62be4aa8-13bb-4d59-bc17-51299538d234' date '10/04/2019' time '12:40:50' author 'brunobb' ancestors ((name 'BpmBusinessIntelligence-brunobb.119' message '' id '23c1a835-15cd-4e17-9bdc-1a75ec1fc55a' date '09/26/2019' time '03:22:37' author 'brunobb' ancestors ((name 'BpmBusinessIntelligence-brunobb.118' message '' id '0d049e07-2a99-4149-9b85-5dfbed6f8b58' date '09/26/2019' time '02:21:48' author 'brunobb' ancestors ((name 'BpmBusinessIntelligence-brunobb.117' message '' id 'fce488cd-db4c-4645-8f0a-5c2fb976fddd' date '07/03/2019' time '11:34:07' author 'brunobb' ancestors ((name 'BpmBusinessIntelligence-brunobb.116' message '' id '36e2fc4e-dbe4-4491-95e7-0169af9b4832' date '06/25/2019' time '05:28:40' author 'brunobb' ancestors ((name 'BpmBusinessIntelligence-brunobb.115' message '' id 'ed0e80fd-cecc-446f-b719-c8c3bc458975' date '06/24/2019' time '12:51:27' author 'brunobb' ancestors ((name 'BpmBusinessIntelligence-brunobb.114' message '' id 'b544adcf-cc8f-4ac4-8442-d0ec6ec52a06' date '06/24/2019' time '10:39:38' author 'brunobb' ancestors ((name 'BpmBusinessIntelligence-brunobb.113' message '' id '97f3aace-dbac-4fb4-b226-ffd91df86ab9' date '06/11/2019' time '10:41:56' author 'brunobb' ancestors ((name 'BpmBusinessIntelligence-brunobb.112' message '' id '854a6178-891d-43b2-9f1e-bda150001aa3' date '06/11/2019' time '09:39:36' author 'brunobb' ancestors ((name 'BpmBusinessIntelligence-brunobb.111' message '' id 'ab43dfcb-072c-43de-bb78-1d962487bbf1' date '06/11/2019' time '03:23:14' author 'brunobb' ancestors ((name 'BpmBusinessIntelligence-brunobb.110' message '' id 'd60f8934-9715-489d-af5e-30fee42c7787' date '06/10/2019' time '13:35:09' author 'brunobb' ancestors ((name 'BpmBusinessIntelligence-brunobb.109' message '' id '19ede3df-9204-4c9f-8e34-c3747c74dd6f' date '06/10/2019' time '10:34:16' author 'brunobb' ancestors ((name 'BpmBusinessIntelligence-brunobb.108' message '' id '17c0ddc9-15fe-421f-9edb-590e2282ca5d' date '06/07/2019' time '12:39:48' author 'brunobb' ancestors ((name 'BpmBusinessIntelligence-brunobb.107' message '' id 'b77c9ce2-e70c-460e-a0b7-9fc152abbbfb' date '06/07/2019' time '10:08:58' author 'brunobb' ancestors ((name 'BpmBusinessIntelligence-brunobb.106' message '' id 'd636bea2-ffaf-4c36-a6b5-d79dcb4efbae' date '06/04/2019' time '04:43:37' author 'brunobb' ancestors ((name 'BpmBusinessIntelligence-brunobb.105' message '' id 'ae054b1d-2270-4a23-9ec3-8c596a228251' date '06/03/2019' time '12:19:56' author 'brunobb' ancestors ((name 'BpmBusinessIntelligence-brunobb.104' message '' id '0a81be89-11fd-446a-873a-f284cfba005d' date '03/25/2019' time '10:25:09' author 'brunobb' ancestors ((name 'BpmBusinessIntelligence-brunobb.103' message '' id '12422f64-f263-4724-8d1e-9a82a98a6404' date '03/25/2019' time '09:13:44' author 'brunobb' ancestors ((name 'BpmBusinessIntelligence-brunobb.102' message '' id '53afb027-ba95-48ed-8241-9fef09c1de10' date '03/25/2019' time '08:51:36' author 'brunobb' ancestors ((name 'BpmBusinessIntelligence-brunobb.101' message '' id '48705a3c-e482-4b74-9324-072ee73e3f48' date '02/01/2019' time '09:24:00' author 'brunobb' ancestors ((name 'BpmBusinessIntelligence-brunobb.100' message '' id '5ee2deaf-c0f4-47bd-a39a-b2de7fc4e57f' date '12/03/2018' time '12:10:00' author 'brunobb' ancestors ((name 'BpmBusinessIntelligence-brunobb.99' message '' id '05538f5e-2c3b-4b97-a208-828b69860223' date '11/30/2018' time '10:35:22' author 'brunobb' ancestors ((name 'BpmBusinessIntelligence-brunobb.98' message '' id '7dec2012-9dff-48d6-a84a-b3c055eb0aaf' date '11/28/2018' time '11:05:35' author 'brunobb' ancestors ((name 'BpmBusinessIntelligence-brunobb.97' message '' id '26fd7354-0be7-4db1-accb-1d0e0631cc07' date '11/28/2018' time '08:32:54' author 'brunobb' ancestors () stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ()) \ No newline at end of file diff --git a/repository/BpmWebBusinessIntelligence.package/WABpmBIPortal.class/methodProperties.json b/repository/BpmWebBusinessIntelligence.package/WABpmBIPortal.class/methodProperties.json index 9af56eee4..3a9079960 100644 --- a/repository/BpmWebBusinessIntelligence.package/WABpmBIPortal.class/methodProperties.json +++ b/repository/BpmWebBusinessIntelligence.package/WABpmBIPortal.class/methodProperties.json @@ -23,5 +23,5 @@ "showMyHistoricalDashboardsComposite" : "brunobb 06/14/2019 13:25", "showMyOldDashboardsComposite" : "brunobb 01/31/2019 03:12", "showNewDashboardComposite" : "brunobb 01/31/2019 03:12", - "updateRoot:" : "brunobb 07/12/2019 13:00", + "updateRoot:" : "brunobb 10/03/2019 09:22", "versionName" : "brunobb 01/31/2019 03:12" } } diff --git a/repository/BpmWebBusinessIntelligence.package/WAMyBpmDashboardsComposite.class/instance/renderItemComponentOn..st b/repository/BpmWebBusinessIntelligence.package/WAMyBpmDashboardsComposite.class/instance/renderItemComponentOn..st index 61891b6cb..e0d44d4e7 100644 --- a/repository/BpmWebBusinessIntelligence.package/WAMyBpmDashboardsComposite.class/instance/renderItemComponentOn..st +++ b/repository/BpmWebBusinessIntelligence.package/WAMyBpmDashboardsComposite.class/instance/renderItemComponentOn..st @@ -13,7 +13,7 @@ renderItemComponentOn: html html div style: 'display: inline-grid; background-color: white; margin: 2px;'; with: [ renderChartOptions ifTrue: [html div with: [self renderActionsOn: html forChart: dashboardInstance itemDefinition in: dashboardInstance]]. - html div with: [chartDefinition renderReport: dashboardInstance report on: html]. + html div with: [chartDefinition renderReport: dashboardInstance report on: html parent: self]. ]. ]. ]. \ No newline at end of file diff --git a/repository/BpmWebBusinessIntelligence.package/WAMyBpmDashboardsComposite.class/methodProperties.json b/repository/BpmWebBusinessIntelligence.package/WAMyBpmDashboardsComposite.class/methodProperties.json index 3c2a6b2dc..3cd94f38e 100644 --- a/repository/BpmWebBusinessIntelligence.package/WAMyBpmDashboardsComposite.class/methodProperties.json +++ b/repository/BpmWebBusinessIntelligence.package/WAMyBpmDashboardsComposite.class/methodProperties.json @@ -17,7 +17,7 @@ "renderEditChartDefinitionOptions:from:on:" : "brunobb 06/11/2019 10:15", "renderEditChartIconsOn:" : "brunobb 06/07/2019 08:36", "renderEditDashboardIconOn:" : "brunobb 06/07/2019 08:28", - "renderItemComponentOn:" : "brunobb 10/03/2019 03:30", + "renderItemComponentOn:" : "brunobb 10/04/2019 12:32", "renderItemDescriptionAditionalDataOn:" : "brunobb 06/07/2019 08:28", "renderItemDescriptionSecondaryDataOn:" : "brunobb 06/07/2019 08:28", "renderItemDescriptionTitleOn:" : "brunobb 06/07/2019 08:36", diff --git a/repository/BpmWebBusinessIntelligence.package/monticello.meta/version b/repository/BpmWebBusinessIntelligence.package/monticello.meta/version index 04719faaf..32b226866 100644 --- a/repository/BpmWebBusinessIntelligence.package/monticello.meta/version +++ b/repository/BpmWebBusinessIntelligence.package/monticello.meta/version @@ -1 +1 @@ -(name 'BpmWebBusinessIntelligence-brunobb.174' message '' id 'a6542c24-76dd-4835-b2ef-8b5c1f5e7120' date '10/03/2019' time '03:39:54' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.173' message '' id 'd21b6377-1f30-4f4e-8c13-0d8008915950' date '10/02/2019' time '13:27:17' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.172' message '' id '67312383-b2b4-4669-9885-b7bd463b48ee' date '09/26/2019' time '03:22:52' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.171' message '' id '897c3e74-31ce-4dca-b32d-459d78158dbf' date '09/26/2019' time '02:16:41' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.170' message '' id '163c076f-4466-409c-b78e-6318ba1ad9aa' date '07/12/2019' time '13:07:16' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.169' message '' id '0ad51eae-3c64-4bdb-ac7c-312c20b9e545' date '06/24/2019' time '12:51:58' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.168' message '' id 'db11896a-a704-44cc-b3b8-0d2ab67a9345' date '06/24/2019' time '11:50:52' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.167' message '' id '8bf382da-12e8-4f2f-bbcb-eebb67974132' date '06/14/2019' time '13:26:20' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.166' message '' id 'c4e7bc67-b80e-4322-9655-928bf600a568' date '06/12/2019' time '13:02:58' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.165' message '' id 'ee369cd9-8529-4876-9d27-ae6132f20e49' date '06/11/2019' time '10:41:38' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.164' message '' id '56128849-c530-466e-ab6a-15cd259b54e8' date '06/07/2019' time '12:39:34' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.163' message '' id '587e8400-f5b3-40f2-98ba-dc5d3647bf86' date '06/07/2019' time '10:31:29' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.162' message '' id '76ab1aa2-856b-48f7-90c3-be36d002430b' date '06/07/2019' time '10:09:05' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.161' message '' id '0c83ff80-285f-460e-9a8c-e3c83f90b35a' date '06/07/2019' time '08:37:57' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.160' message '' id '9f2942ab-6e81-4fe2-be82-2f29bcf7ee64' date '06/05/2019' time '13:03:24' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.159' message '' id '3aa7f4bd-13b2-4ce4-8db9-603755b1837b' date '06/05/2019' time '12:05:14' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.158' message '' id 'e5c714b5-d9a6-49c4-b283-02100ce5dd36' date '06/05/2019' time '06:55:32' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.157' message '' id 'a6e148d7-2df6-4447-8048-b4486db9c917' date '06/05/2019' time '05:54:35' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.156' message '' id 'e00d3533-7094-448f-a0a6-9790791a0d9a' date '06/05/2019' time '05:21:11' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.155' message '' id 'b8710b66-c0f5-4337-a4f3-335f51557069' date '06/04/2019' time '05:18:04' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.154' message '' id 'fb5ef627-56d9-4d32-ac57-042f8a463979' date '06/04/2019' time '04:43:27' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.153' message '' id '4ce9368c-295a-4b51-9f68-c1a6d3752f79' date '05/31/2019' time '13:01:29' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.152' message '' id 'b401b7c9-237a-4be3-b2e8-eb167a110f36' date '05/31/2019' time '12:51:18' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.151' message '' id '58bd5abe-30eb-472d-a0f5-18aaf6b62115' date '05/31/2019' time '11:05:14' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.150' message '' id '9b232bf6-a459-41d6-a3fc-9493ee1744b6' date '03/25/2019' time '09:14:16' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.149' message '' id '6080e2a7-4186-4280-ba39-49b898a090d7' date '03/25/2019' time '08:52:19' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.148' message '' id 'f8436130-fddb-445b-8bcb-294207088049' date '03/25/2019' time '07:51:17' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.147' message '' id '55fcd09c-1ee1-43da-b0c3-a740bfbe69bf' date '02/05/2019' time '06:13:13' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.146' message '' id 'a6f3899d-583e-4885-bda4-c0c8cf553514' date '02/01/2019' time '08:14:37' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.145' message '' id 'ad61206b-014d-4acf-88ac-f337d129a67d' date '02/01/2019' time '06:46:28' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.144' message '' id 'd1670de1-1d01-4007-b49c-8aa61aea114f' date '01/31/2019' time '03:25:01' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.143' message '' id '3833b632-1809-47b5-9ed2-798269f6731a' date '01/31/2019' time '03:13:35' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.142' message '' id '0d2f8455-669f-48c7-ba5b-dfdaf76698b8' date '01/31/2019' time '03:06:33' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.141' message '' id '9b865c5a-86e7-4b8e-9b88-f833f356b215' date '01/30/2019' time '10:20:35' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.140' message '' id '4d06639a-60b8-4b76-adba-c86d99f2a601' date '01/22/2019' time '03:37:17' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.139' message '' id '3a7f2024-2f21-4665-a6f1-265501090f7c' date '01/21/2019' time '07:39:11' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.138' message '' id 'f1c9b6e8-faba-474c-bd6a-d3ed590c64fc' date '12/04/2018' time '03:43:51' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.137' message '' id 'eba5b37e-1d17-48ab-87cf-a709c539f7e6' date '12/03/2018' time '12:09:37' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.136' message '' id 'fa277cfe-792a-4aad-a337-21dc246032e1' date '11/28/2018' time '08:38:54' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.1' message '' id '34edeeab-dc91-48ee-9b54-fc7c69e9f26e' date '11/28/2018' time '08:38:29' author 'brunobb' ancestors () stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ()) \ No newline at end of file +(name 'BpmWebBusinessIntelligence-brunobb.175' message '' id 'bdb62452-0764-439f-a2fd-557bb029b427' date '10/04/2019' time '12:41:12' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.174' message '' id 'a6542c24-76dd-4835-b2ef-8b5c1f5e7120' date '10/03/2019' time '03:39:54' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.173' message '' id 'd21b6377-1f30-4f4e-8c13-0d8008915950' date '10/02/2019' time '13:27:17' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.172' message '' id '67312383-b2b4-4669-9885-b7bd463b48ee' date '09/26/2019' time '03:22:52' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.171' message '' id '897c3e74-31ce-4dca-b32d-459d78158dbf' date '09/26/2019' time '02:16:41' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.170' message '' id '163c076f-4466-409c-b78e-6318ba1ad9aa' date '07/12/2019' time '13:07:16' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.169' message '' id '0ad51eae-3c64-4bdb-ac7c-312c20b9e545' date '06/24/2019' time '12:51:58' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.168' message '' id 'db11896a-a704-44cc-b3b8-0d2ab67a9345' date '06/24/2019' time '11:50:52' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.167' message '' id '8bf382da-12e8-4f2f-bbcb-eebb67974132' date '06/14/2019' time '13:26:20' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.166' message '' id 'c4e7bc67-b80e-4322-9655-928bf600a568' date '06/12/2019' time '13:02:58' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.165' message '' id 'ee369cd9-8529-4876-9d27-ae6132f20e49' date '06/11/2019' time '10:41:38' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.164' message '' id '56128849-c530-466e-ab6a-15cd259b54e8' date '06/07/2019' time '12:39:34' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.163' message '' id '587e8400-f5b3-40f2-98ba-dc5d3647bf86' date '06/07/2019' time '10:31:29' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.162' message '' id '76ab1aa2-856b-48f7-90c3-be36d002430b' date '06/07/2019' time '10:09:05' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.161' message '' id '0c83ff80-285f-460e-9a8c-e3c83f90b35a' date '06/07/2019' time '08:37:57' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.160' message '' id '9f2942ab-6e81-4fe2-be82-2f29bcf7ee64' date '06/05/2019' time '13:03:24' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.159' message '' id '3aa7f4bd-13b2-4ce4-8db9-603755b1837b' date '06/05/2019' time '12:05:14' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.158' message '' id 'e5c714b5-d9a6-49c4-b283-02100ce5dd36' date '06/05/2019' time '06:55:32' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.157' message '' id 'a6e148d7-2df6-4447-8048-b4486db9c917' date '06/05/2019' time '05:54:35' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.156' message '' id 'e00d3533-7094-448f-a0a6-9790791a0d9a' date '06/05/2019' time '05:21:11' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.155' message '' id 'b8710b66-c0f5-4337-a4f3-335f51557069' date '06/04/2019' time '05:18:04' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.154' message '' id 'fb5ef627-56d9-4d32-ac57-042f8a463979' date '06/04/2019' time '04:43:27' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.153' message '' id '4ce9368c-295a-4b51-9f68-c1a6d3752f79' date '05/31/2019' time '13:01:29' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.152' message '' id 'b401b7c9-237a-4be3-b2e8-eb167a110f36' date '05/31/2019' time '12:51:18' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.151' message '' id '58bd5abe-30eb-472d-a0f5-18aaf6b62115' date '05/31/2019' time '11:05:14' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.150' message '' id '9b232bf6-a459-41d6-a3fc-9493ee1744b6' date '03/25/2019' time '09:14:16' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.149' message '' id '6080e2a7-4186-4280-ba39-49b898a090d7' date '03/25/2019' time '08:52:19' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.148' message '' id 'f8436130-fddb-445b-8bcb-294207088049' date '03/25/2019' time '07:51:17' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.147' message '' id '55fcd09c-1ee1-43da-b0c3-a740bfbe69bf' date '02/05/2019' time '06:13:13' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.146' message '' id 'a6f3899d-583e-4885-bda4-c0c8cf553514' date '02/01/2019' time '08:14:37' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.145' message '' id 'ad61206b-014d-4acf-88ac-f337d129a67d' date '02/01/2019' time '06:46:28' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.144' message '' id 'd1670de1-1d01-4007-b49c-8aa61aea114f' date '01/31/2019' time '03:25:01' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.143' message '' id '3833b632-1809-47b5-9ed2-798269f6731a' date '01/31/2019' time '03:13:35' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.142' message '' id '0d2f8455-669f-48c7-ba5b-dfdaf76698b8' date '01/31/2019' time '03:06:33' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.141' message '' id '9b865c5a-86e7-4b8e-9b88-f833f356b215' date '01/30/2019' time '10:20:35' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.140' message '' id '4d06639a-60b8-4b76-adba-c86d99f2a601' date '01/22/2019' time '03:37:17' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.139' message '' id '3a7f2024-2f21-4665-a6f1-265501090f7c' date '01/21/2019' time '07:39:11' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.138' message '' id 'f1c9b6e8-faba-474c-bd6a-d3ed590c64fc' date '12/04/2018' time '03:43:51' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.137' message '' id 'eba5b37e-1d17-48ab-87cf-a709c539f7e6' date '12/03/2018' time '12:09:37' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.136' message '' id 'fa277cfe-792a-4aad-a337-21dc246032e1' date '11/28/2018' time '08:38:54' author 'brunobb' ancestors ((name 'BpmWebBusinessIntelligence-brunobb.1' message '' id '34edeeab-dc91-48ee-9b54-fc7c69e9f26e' date '11/28/2018' time '08:38:29' author 'brunobb' ancestors () stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ())) stepChildren ()) \ No newline at end of file