diff --git a/src/main/java/br/com/agapesistemas/agtemplate/agtemplate/view/DashboardBean.java b/src/main/java/br/com/agapesistemas/agtemplate/agtemplate/view/DashboardBean.java new file mode 100644 index 0000000..1aadcfd --- /dev/null +++ b/src/main/java/br/com/agapesistemas/agtemplate/agtemplate/view/DashboardBean.java @@ -0,0 +1,109 @@ +package br.com.agapesistemas.agtemplate.agtemplate.view; + +import jakarta.annotation.PostConstruct; +import jakarta.faces.view.ViewScoped; +import jakarta.inject.Named; +import java.io.Serializable; +import org.primefaces.model.chart.Axis; +import org.primefaces.model.chart.AxisType; +import org.primefaces.model.chart.BarChartModel; +import org.primefaces.model.chart.ChartSeries; + +@ViewScoped +@Named("agtemplateDashboardBean") +public class DashboardBean implements Serializable { + + private BarChartModel folhaModel; + private BarChartModel previdenciaModel; + private String filtro = "exemplo"; + + @PostConstruct + public void init() { + createFolhaModel(); + createPrevidenciaModel(); + } + + private void createFolhaModel() { + folhaModel = new BarChartModel(); + + ChartSeries serie1 = new ChartSeries(); + serie1.setLabel("Referência 1"); + serie1.set("Jan", 120); + serie1.set("Feb", 200); + serie1.set("Mar", 160); + serie1.set("Apr", 90); + serie1.set("May", 140); + serie1.set("Jun", 150); + + ChartSeries serie2 = new ChartSeries(); + serie2.setLabel("Referência 2"); + serie2.set("Jan", 60); + serie2.set("Feb", 160); + serie2.set("Mar", 90); + serie2.set("Apr", 140); + serie2.set("May", 100); + serie2.set("Jun", 120); + + folhaModel.addSeries(serie1); + folhaModel.addSeries(serie2); + folhaModel.setTitle("Demonstrativo da folha"); + folhaModel.setLegendPosition("ne"); + + Axis xAxis = folhaModel.getAxis(AxisType.X); + xAxis.setLabel("Mês"); + + Axis yAxis = folhaModel.getAxis(AxisType.Y); + yAxis.setLabel("Valor"); + yAxis.setMin(0); + yAxis.setMax(250); + } + + private void createPrevidenciaModel() { + previdenciaModel = new BarChartModel(); + + ChartSeries serie1 = new ChartSeries(); + serie1.setLabel("Referência 1"); + serie1.set("Jan", 110); + serie1.set("Feb", 210); + serie1.set("Mar", 170); + serie1.set("Apr", 95); + serie1.set("May", 135); + + ChartSeries serie2 = new ChartSeries(); + serie2.setLabel("Referência 2"); + serie2.set("Jan", 50); + serie2.set("Feb", 140); + serie2.set("Mar", 70); + serie2.set("Apr", 130); + serie2.set("May", 100); + + previdenciaModel.addSeries(serie1); + previdenciaModel.addSeries(serie2); + previdenciaModel.setTitle("Demonstrativo de previdência"); + previdenciaModel.setLegendPosition("ne"); + + Axis xAxis = previdenciaModel.getAxis(AxisType.X); + xAxis.setLabel("Mês"); + + Axis yAxis = previdenciaModel.getAxis(AxisType.Y); + yAxis.setLabel("Valor"); + yAxis.setMin(0); + yAxis.setMax(250); + } + + public BarChartModel getFolhaModel() { + return folhaModel; + } + + public BarChartModel getPrevidenciaModel() { + return previdenciaModel; + } + + public String getFiltro() { + return filtro; + } + + public void setFiltro(String filtro) { + this.filtro = filtro; + } +} diff --git a/src/main/java/br/com/agapesistemas/agtemplate/agtemplate/view/Tb_templateBean.java b/src/main/java/br/com/agapesistemas/agtemplate/agtemplate/view/Tb_templateBean.java index c051ca0..ad7ffca 100644 --- a/src/main/java/br/com/agapesistemas/agtemplate/agtemplate/view/Tb_templateBean.java +++ b/src/main/java/br/com/agapesistemas/agtemplate/agtemplate/view/Tb_templateBean.java @@ -7,17 +7,12 @@ import org.primefaces.model.FilterMeta; import org.primefaces.model.SortMeta; import org.primefaces.model.SortOrder; import java.util.Collection; -import java.io.IOException; import br.com.agapesistemas.agtemplate.agtemplate.view.base.BaseBean; import br.com.agapesistemas.agtemplate.agtemplate.model.to.Tb_template; import br.com.agapesistemas.agtemplate.agtemplate.filtro.Tb_templateFiltro; import br.com.agapesistemas.agtemplate.agtemplate.controller.Tb_templateController; -import br.com.agapesistemas.agtemplate.agtemplate.api.service.Tb_templateService; -import br.com.agapesistemas.agtemplate.agtemplate.exception.Tb_templateException; import java.util.List; import java.util.ArrayList; -import java.util.logging.Level; -import java.util.logging.Logger; import jakarta.faces.event.ActionEvent; import jakarta.inject.Named; import jakarta.faces.view.ViewScoped; diff --git a/src/main/webapp/WEB-INF/web.xml b/src/main/webapp/WEB-INF/web.xml index bd86268..f851972 100644 --- a/src/main/webapp/WEB-INF/web.xml +++ b/src/main/webapp/WEB-INF/web.xml @@ -53,7 +53,7 @@ *.xhtml - index.xhtml + ./agtemplate/dashboard.xhtml otf diff --git a/src/main/webapp/agtemplate/Tb_template.xhtml b/src/main/webapp/agtemplate/Tb_template.xhtml index 585a3b1..94bbedb 100644 --- a/src/main/webapp/agtemplate/Tb_template.xhtml +++ b/src/main/webapp/agtemplate/Tb_template.xhtml @@ -1,44 +1,104 @@ - - tb_template - - Agtemplate - tb_template - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + tb_template + + agTemplate + Dashboard + + +
+

Dashboard

+

Visualização dos dados parametrizados.

+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
diff --git a/src/main/webapp/agtemplate/dashboard.xhtml b/src/main/webapp/agtemplate/dashboard.xhtml index 585a3b1..83ef679 100644 --- a/src/main/webapp/agtemplate/dashboard.xhtml +++ b/src/main/webapp/agtemplate/dashboard.xhtml @@ -1,44 +1,180 @@ - - tb_template - - Agtemplate - tb_template - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + tb_template + + agTemplate + Dashboard + + +
+

Dashboard Folha e Previdência

+

Visão consolidada dos dados financeiros e previdenciários

+
+
+ + +
+ +
+
+
+ +
+
+

Folha de Pagamento

+

Comparativo entre valores líquidos e brutos

+
+
+ +
+
+
+
+
Jan
+
+
+
+
+
Fev
+
+
+
+
+
Mar
+
+
+
+
+
Abr
+
+
+
+
+
Mai
+
+
+
+
+
Jun
+
+
+ +
+
Valor Líquido
+
Valor Bruto
+
+
+ + +
+
+
+ +
+
+

Contribuições Previdenciárias

+

Desembolsos mensais para INSS

+
+
+ +
+ + + + + +
+ +
+
+
+ R$ 186k +
+
Jan
+
+
+
+ R$ 305k +
+
Fev
+
+
+
+ R$ 237k +
+
Mar
+
+
+
+ R$ 73k +
+
Abr
+
+
+
+ R$ 209k +
+
Mai
+
+
+
+ R$ 214k +
+
Jun
+
+
+
+ + +
+
+
+ +
+
+

Despesas por Departamento

+

Distribuição dos custos de pessoal

+
+
+ +
+
+ TI + R$ 186k +
+
+ Administrativo + R$ 305k +
+
+ Vendas + R$ 237k +
+
+ RH + R$ 73k +
+
+ Produção + R$ 209k +
+
+ Marketing + R$ 214k +
+
+
+
+
+
\ No newline at end of file diff --git a/src/main/webapp/agtemplate/index.xhtml b/src/main/webapp/agtemplate/index.xhtml index 12b2a4a..847df20 100644 --- a/src/main/webapp/agtemplate/index.xhtml +++ b/src/main/webapp/agtemplate/index.xhtml @@ -10,8 +10,7 @@ template="../template/template.xhtml" > HOME agtemplate - - + diff --git a/src/main/webapp/resources/poseidon-layout/css/layout-light.css b/src/main/webapp/resources/poseidon-layout/css/layout-light.css index 58e5b27..30eec03 100644 --- a/src/main/webapp/resources/poseidon-layout/css/layout-light.css +++ b/src/main/webapp/resources/poseidon-layout/css/layout-light.css @@ -114,6 +114,17 @@ src: url("#{resource['poseidon-layout:fonts/din-next-black-italic.otf']}") format('opentype'); } + +.headerContainer { + padding: 12px 32px; +} + +.headerContainer .headerTitle { + margin: 0; + font-size: 28px; + font-weight: 500; +} + h1, h2, h3, @@ -3806,6 +3817,7 @@ p:last-child { .menu-wrapper .layout-menu-container { overflow: auto; height: 100%; + padding: 12px 32px; } .menu-wrapper .layout-menu-container .layout-menu { list-style-type: none; @@ -4175,7 +4187,6 @@ p:last-child { .layout-menu-container .layout-menu { list-style-type: none; - margin: 0px 16px; padding-bottom: 0px; display: -ms-flexbox; display: flex; diff --git a/src/main/webapp/resources/primefaces-poseidon-amber-light/theme.css b/src/main/webapp/resources/primefaces-poseidon-amber-light/theme.css index 2e66fad..999cb01 100644 --- a/src/main/webapp/resources/primefaces-poseidon-amber-light/theme.css +++ b/src/main/webapp/resources/primefaces-poseidon-amber-light/theme.css @@ -8697,11 +8697,8 @@ body .ui-tabs .ui-tabs-navscroller .ui-tabs-navscroller-btn.ui-state-hover { } body .ui-toolbar { - border: 1px solid #e4e5e5; - background: #f6f9fe; color: #515c66; padding: 1rem; - border-radius: 3px; } body .ui-wizard .ui-wizard-step-titles .ui-wizard-step-title { diff --git a/src/main/webapp/resources/primefaces-poseidon-amethyst-light/theme.css b/src/main/webapp/resources/primefaces-poseidon-amethyst-light/theme.css index af5395d..b9023a3 100644 --- a/src/main/webapp/resources/primefaces-poseidon-amethyst-light/theme.css +++ b/src/main/webapp/resources/primefaces-poseidon-amethyst-light/theme.css @@ -8697,11 +8697,8 @@ body .ui-tabs .ui-tabs-navscroller .ui-tabs-navscroller-btn.ui-state-hover { } body .ui-toolbar { - border: 1px solid #e4e5e5; - background: #f6f9fe; color: #515c66; padding: 1rem; - border-radius: 3px; } body .ui-wizard .ui-wizard-step-titles .ui-wizard-step-title { diff --git a/src/main/webapp/resources/primefaces-poseidon-apple-light/theme.css b/src/main/webapp/resources/primefaces-poseidon-apple-light/theme.css index 8b7ba3a..e066318 100644 --- a/src/main/webapp/resources/primefaces-poseidon-apple-light/theme.css +++ b/src/main/webapp/resources/primefaces-poseidon-apple-light/theme.css @@ -8697,11 +8697,8 @@ body .ui-tabs .ui-tabs-navscroller .ui-tabs-navscroller-btn.ui-state-hover { } body .ui-toolbar { - border: 1px solid #e4e5e5; - background: #f6f9fe; color: #515c66; padding: 1rem; - border-radius: 3px; } body .ui-wizard .ui-wizard-step-titles .ui-wizard-step-title { diff --git a/src/main/webapp/resources/primefaces-poseidon-camelot-light/theme.css b/src/main/webapp/resources/primefaces-poseidon-camelot-light/theme.css index 9766a84..7c42269 100644 --- a/src/main/webapp/resources/primefaces-poseidon-camelot-light/theme.css +++ b/src/main/webapp/resources/primefaces-poseidon-camelot-light/theme.css @@ -8697,11 +8697,8 @@ body .ui-tabs .ui-tabs-navscroller .ui-tabs-navscroller-btn.ui-state-hover { } body .ui-toolbar { - border: 1px solid #e4e5e5; - background: #f6f9fe; color: #515c66; padding: 1rem; - border-radius: 3px; } body .ui-wizard .ui-wizard-step-titles .ui-wizard-step-title { diff --git a/src/main/webapp/resources/primefaces-poseidon-cape-palliser-light/theme.css b/src/main/webapp/resources/primefaces-poseidon-cape-palliser-light/theme.css index bda5aa9..a5a2e7f 100644 --- a/src/main/webapp/resources/primefaces-poseidon-cape-palliser-light/theme.css +++ b/src/main/webapp/resources/primefaces-poseidon-cape-palliser-light/theme.css @@ -8697,11 +8697,8 @@ body .ui-tabs .ui-tabs-navscroller .ui-tabs-navscroller-btn.ui-state-hover { } body .ui-toolbar { - border: 1px solid #e4e5e5; - background: #f6f9fe; color: #515c66; padding: 1rem; - border-radius: 3px; } body .ui-wizard .ui-wizard-step-titles .ui-wizard-step-title { diff --git a/src/main/webapp/resources/primefaces-poseidon-cyan-light/theme.css b/src/main/webapp/resources/primefaces-poseidon-cyan-light/theme.css index 8b2bbb3..0bf2d39 100644 --- a/src/main/webapp/resources/primefaces-poseidon-cyan-light/theme.css +++ b/src/main/webapp/resources/primefaces-poseidon-cyan-light/theme.css @@ -8697,11 +8697,8 @@ body .ui-tabs .ui-tabs-navscroller .ui-tabs-navscroller-btn.ui-state-hover { } body .ui-toolbar { - border: 1px solid #e4e5e5; - background: #f6f9fe; color: #515c66; padding: 1rem; - border-radius: 3px; } body .ui-wizard .ui-wizard-step-titles .ui-wizard-step-title { diff --git a/src/main/webapp/resources/primefaces-poseidon-denim-light/theme.css b/src/main/webapp/resources/primefaces-poseidon-denim-light/theme.css index 09d1ce5..60a5940 100644 --- a/src/main/webapp/resources/primefaces-poseidon-denim-light/theme.css +++ b/src/main/webapp/resources/primefaces-poseidon-denim-light/theme.css @@ -8697,11 +8697,8 @@ body .ui-tabs .ui-tabs-navscroller .ui-tabs-navscroller-btn.ui-state-hover { } body .ui-toolbar { - border: 1px solid #e4e5e5; - background: #f6f9fe; color: #515c66; padding: 1rem; - border-radius: 3px; } body .ui-wizard .ui-wizard-step-titles .ui-wizard-step-title { diff --git a/src/main/webapp/resources/primefaces-poseidon-gigas-light/theme.css b/src/main/webapp/resources/primefaces-poseidon-gigas-light/theme.css index 629fc3c..1933e58 100644 --- a/src/main/webapp/resources/primefaces-poseidon-gigas-light/theme.css +++ b/src/main/webapp/resources/primefaces-poseidon-gigas-light/theme.css @@ -8697,11 +8697,8 @@ body .ui-tabs .ui-tabs-navscroller .ui-tabs-navscroller-btn.ui-state-hover { } body .ui-toolbar { - border: 1px solid #e4e5e5; - background: #f6f9fe; color: #515c66; padding: 1rem; - border-radius: 3px; } body .ui-wizard .ui-wizard-step-titles .ui-wizard-step-title { diff --git a/src/main/webapp/resources/primefaces-poseidon-jungle-green-light/theme.css b/src/main/webapp/resources/primefaces-poseidon-jungle-green-light/theme.css index 3488b55..ff82dbb 100644 --- a/src/main/webapp/resources/primefaces-poseidon-jungle-green-light/theme.css +++ b/src/main/webapp/resources/primefaces-poseidon-jungle-green-light/theme.css @@ -8697,11 +8697,8 @@ body .ui-tabs .ui-tabs-navscroller .ui-tabs-navscroller-btn.ui-state-hover { } body .ui-toolbar { - border: 1px solid #e4e5e5; - background: #f6f9fe; color: #515c66; padding: 1rem; - border-radius: 3px; } body .ui-wizard .ui-wizard-step-titles .ui-wizard-step-title { diff --git a/src/main/webapp/resources/primefaces-poseidon-sea-green-light/theme.css b/src/main/webapp/resources/primefaces-poseidon-sea-green-light/theme.css index 1659594..a53196a 100644 --- a/src/main/webapp/resources/primefaces-poseidon-sea-green-light/theme.css +++ b/src/main/webapp/resources/primefaces-poseidon-sea-green-light/theme.css @@ -8697,11 +8697,8 @@ body .ui-tabs .ui-tabs-navscroller .ui-tabs-navscroller-btn.ui-state-hover { } body .ui-toolbar { - border: 1px solid #e4e5e5; - background: #f6f9fe; color: #515c66; padding: 1rem; - border-radius: 3px; } body .ui-wizard .ui-wizard-step-titles .ui-wizard-step-title { diff --git a/src/main/webapp/resources/primefaces-poseidon-tapestry-light/theme.css b/src/main/webapp/resources/primefaces-poseidon-tapestry-light/theme.css index 4280403..8304591 100644 --- a/src/main/webapp/resources/primefaces-poseidon-tapestry-light/theme.css +++ b/src/main/webapp/resources/primefaces-poseidon-tapestry-light/theme.css @@ -8697,11 +8697,8 @@ body .ui-tabs .ui-tabs-navscroller .ui-tabs-navscroller-btn.ui-state-hover { } body .ui-toolbar { - border: 1px solid #e4e5e5; - background: #f6f9fe; color: #515c66; padding: 1rem; - border-radius: 3px; } body .ui-wizard .ui-wizard-step-titles .ui-wizard-step-title { diff --git a/src/main/webapp/resources/primefaces-poseidon-wedgewood-light/theme.css b/src/main/webapp/resources/primefaces-poseidon-wedgewood-light/theme.css index 93ee2b4..a23b8aa 100644 --- a/src/main/webapp/resources/primefaces-poseidon-wedgewood-light/theme.css +++ b/src/main/webapp/resources/primefaces-poseidon-wedgewood-light/theme.css @@ -8697,11 +8697,8 @@ body .ui-tabs .ui-tabs-navscroller .ui-tabs-navscroller-btn.ui-state-hover { } body .ui-toolbar { - border: 1px solid #e4e5e5; - background: #f6f9fe; color: #515c66; padding: 1rem; - border-radius: 3px; } body .ui-wizard .ui-wizard-step-titles .ui-wizard-step-title { diff --git a/src/main/webapp/template/template.xhtml b/src/main/webapp/template/template.xhtml index 93539b5..c2b00ce 100644 --- a/src/main/webapp/template/template.xhtml +++ b/src/main/webapp/template/template.xhtml @@ -103,21 +103,23 @@
+ + +
-
+
- - + diff --git a/target/agtemplate-1.0.0.war b/target/agtemplate-1.0.0.war index d7cd916..f5bd782 100644 Binary files a/target/agtemplate-1.0.0.war and b/target/agtemplate-1.0.0.war differ diff --git a/target/agtemplate-1.0.0/WEB-INF/classes/br/com/agapesistemas/agtemplate/agtemplate/view/DashboardBean.class b/target/agtemplate-1.0.0/WEB-INF/classes/br/com/agapesistemas/agtemplate/agtemplate/view/DashboardBean.class new file mode 100644 index 0000000..ad9cad3 Binary files /dev/null and b/target/agtemplate-1.0.0/WEB-INF/classes/br/com/agapesistemas/agtemplate/agtemplate/view/DashboardBean.class differ diff --git a/target/agtemplate-1.0.0/WEB-INF/classes/br/com/agapesistemas/agtemplate/agtemplate/view/Tb_templateBean$1.class b/target/agtemplate-1.0.0/WEB-INF/classes/br/com/agapesistemas/agtemplate/agtemplate/view/Tb_templateBean$1.class index a79eefe..1be5da6 100644 Binary files a/target/agtemplate-1.0.0/WEB-INF/classes/br/com/agapesistemas/agtemplate/agtemplate/view/Tb_templateBean$1.class and b/target/agtemplate-1.0.0/WEB-INF/classes/br/com/agapesistemas/agtemplate/agtemplate/view/Tb_templateBean$1.class differ diff --git a/target/agtemplate-1.0.0/WEB-INF/classes/br/com/agapesistemas/agtemplate/agtemplate/view/Tb_templateBean.class b/target/agtemplate-1.0.0/WEB-INF/classes/br/com/agapesistemas/agtemplate/agtemplate/view/Tb_templateBean.class index c9f5ffa..14dad7e 100644 Binary files a/target/agtemplate-1.0.0/WEB-INF/classes/br/com/agapesistemas/agtemplate/agtemplate/view/Tb_templateBean.class and b/target/agtemplate-1.0.0/WEB-INF/classes/br/com/agapesistemas/agtemplate/agtemplate/view/Tb_templateBean.class differ diff --git a/target/agtemplate-1.0.0/WEB-INF/web.xml b/target/agtemplate-1.0.0/WEB-INF/web.xml index bd86268..f851972 100644 --- a/target/agtemplate-1.0.0/WEB-INF/web.xml +++ b/target/agtemplate-1.0.0/WEB-INF/web.xml @@ -53,7 +53,7 @@ *.xhtml - index.xhtml + ./agtemplate/dashboard.xhtml otf diff --git a/target/agtemplate-1.0.0/agtemplate/Tb_template.xhtml b/target/agtemplate-1.0.0/agtemplate/Tb_template.xhtml index 585a3b1..94bbedb 100644 --- a/target/agtemplate-1.0.0/agtemplate/Tb_template.xhtml +++ b/target/agtemplate-1.0.0/agtemplate/Tb_template.xhtml @@ -1,44 +1,104 @@ - - tb_template - - Agtemplate - tb_template - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + tb_template + + agTemplate + Dashboard + + +
+

Dashboard

+

Visualização dos dados parametrizados.

+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
diff --git a/target/agtemplate-1.0.0/agtemplate/dashboard.xhtml b/target/agtemplate-1.0.0/agtemplate/dashboard.xhtml new file mode 100644 index 0000000..83ef679 --- /dev/null +++ b/target/agtemplate-1.0.0/agtemplate/dashboard.xhtml @@ -0,0 +1,180 @@ + + + + tb_template + + agTemplate + Dashboard + + +
+

Dashboard Folha e Previdência

+

Visão consolidada dos dados financeiros e previdenciários

+
+
+ + +
+ +
+
+
+ +
+
+

Folha de Pagamento

+

Comparativo entre valores líquidos e brutos

+
+
+ +
+
+
+
+
Jan
+
+
+
+
+
Fev
+
+
+
+
+
Mar
+
+
+
+
+
Abr
+
+
+
+
+
Mai
+
+
+
+
+
Jun
+
+
+ +
+
Valor Líquido
+
Valor Bruto
+
+
+ + +
+
+
+ +
+
+

Contribuições Previdenciárias

+

Desembolsos mensais para INSS

+
+
+ +
+ + + + + +
+ +
+
+
+ R$ 186k +
+
Jan
+
+
+
+ R$ 305k +
+
Fev
+
+
+
+ R$ 237k +
+
Mar
+
+
+
+ R$ 73k +
+
Abr
+
+
+
+ R$ 209k +
+
Mai
+
+
+
+ R$ 214k +
+
Jun
+
+
+
+ + +
+
+
+ +
+
+

Despesas por Departamento

+

Distribuição dos custos de pessoal

+
+
+ +
+
+ TI + R$ 186k +
+
+ Administrativo + R$ 305k +
+
+ Vendas + R$ 237k +
+
+ RH + R$ 73k +
+
+ Produção + R$ 209k +
+
+ Marketing + R$ 214k +
+
+
+
+
+
\ No newline at end of file diff --git a/target/agtemplate-1.0.0/agtemplate/index.xhtml b/target/agtemplate-1.0.0/agtemplate/index.xhtml index 12b2a4a..847df20 100644 --- a/target/agtemplate-1.0.0/agtemplate/index.xhtml +++ b/target/agtemplate-1.0.0/agtemplate/index.xhtml @@ -10,8 +10,7 @@ template="../template/template.xhtml" > HOME agtemplate - - + diff --git a/target/agtemplate-1.0.0/resources/poseidon-layout/css/layout-light.css b/target/agtemplate-1.0.0/resources/poseidon-layout/css/layout-light.css index 58e5b27..30eec03 100644 --- a/target/agtemplate-1.0.0/resources/poseidon-layout/css/layout-light.css +++ b/target/agtemplate-1.0.0/resources/poseidon-layout/css/layout-light.css @@ -114,6 +114,17 @@ src: url("#{resource['poseidon-layout:fonts/din-next-black-italic.otf']}") format('opentype'); } + +.headerContainer { + padding: 12px 32px; +} + +.headerContainer .headerTitle { + margin: 0; + font-size: 28px; + font-weight: 500; +} + h1, h2, h3, @@ -3806,6 +3817,7 @@ p:last-child { .menu-wrapper .layout-menu-container { overflow: auto; height: 100%; + padding: 12px 32px; } .menu-wrapper .layout-menu-container .layout-menu { list-style-type: none; @@ -4175,7 +4187,6 @@ p:last-child { .layout-menu-container .layout-menu { list-style-type: none; - margin: 0px 16px; padding-bottom: 0px; display: -ms-flexbox; display: flex; diff --git a/target/agtemplate-1.0.0/resources/primefaces-poseidon-amber-light/theme.css b/target/agtemplate-1.0.0/resources/primefaces-poseidon-amber-light/theme.css index 2e66fad..999cb01 100644 --- a/target/agtemplate-1.0.0/resources/primefaces-poseidon-amber-light/theme.css +++ b/target/agtemplate-1.0.0/resources/primefaces-poseidon-amber-light/theme.css @@ -8697,11 +8697,8 @@ body .ui-tabs .ui-tabs-navscroller .ui-tabs-navscroller-btn.ui-state-hover { } body .ui-toolbar { - border: 1px solid #e4e5e5; - background: #f6f9fe; color: #515c66; padding: 1rem; - border-radius: 3px; } body .ui-wizard .ui-wizard-step-titles .ui-wizard-step-title { diff --git a/target/agtemplate-1.0.0/resources/primefaces-poseidon-amethyst-light/theme.css b/target/agtemplate-1.0.0/resources/primefaces-poseidon-amethyst-light/theme.css index af5395d..b9023a3 100644 --- a/target/agtemplate-1.0.0/resources/primefaces-poseidon-amethyst-light/theme.css +++ b/target/agtemplate-1.0.0/resources/primefaces-poseidon-amethyst-light/theme.css @@ -8697,11 +8697,8 @@ body .ui-tabs .ui-tabs-navscroller .ui-tabs-navscroller-btn.ui-state-hover { } body .ui-toolbar { - border: 1px solid #e4e5e5; - background: #f6f9fe; color: #515c66; padding: 1rem; - border-radius: 3px; } body .ui-wizard .ui-wizard-step-titles .ui-wizard-step-title { diff --git a/target/agtemplate-1.0.0/resources/primefaces-poseidon-apple-light/theme.css b/target/agtemplate-1.0.0/resources/primefaces-poseidon-apple-light/theme.css index 8b7ba3a..e066318 100644 --- a/target/agtemplate-1.0.0/resources/primefaces-poseidon-apple-light/theme.css +++ b/target/agtemplate-1.0.0/resources/primefaces-poseidon-apple-light/theme.css @@ -8697,11 +8697,8 @@ body .ui-tabs .ui-tabs-navscroller .ui-tabs-navscroller-btn.ui-state-hover { } body .ui-toolbar { - border: 1px solid #e4e5e5; - background: #f6f9fe; color: #515c66; padding: 1rem; - border-radius: 3px; } body .ui-wizard .ui-wizard-step-titles .ui-wizard-step-title { diff --git a/target/agtemplate-1.0.0/resources/primefaces-poseidon-camelot-light/theme.css b/target/agtemplate-1.0.0/resources/primefaces-poseidon-camelot-light/theme.css index 9766a84..7c42269 100644 --- a/target/agtemplate-1.0.0/resources/primefaces-poseidon-camelot-light/theme.css +++ b/target/agtemplate-1.0.0/resources/primefaces-poseidon-camelot-light/theme.css @@ -8697,11 +8697,8 @@ body .ui-tabs .ui-tabs-navscroller .ui-tabs-navscroller-btn.ui-state-hover { } body .ui-toolbar { - border: 1px solid #e4e5e5; - background: #f6f9fe; color: #515c66; padding: 1rem; - border-radius: 3px; } body .ui-wizard .ui-wizard-step-titles .ui-wizard-step-title { diff --git a/target/agtemplate-1.0.0/resources/primefaces-poseidon-cape-palliser-light/theme.css b/target/agtemplate-1.0.0/resources/primefaces-poseidon-cape-palliser-light/theme.css index bda5aa9..a5a2e7f 100644 --- a/target/agtemplate-1.0.0/resources/primefaces-poseidon-cape-palliser-light/theme.css +++ b/target/agtemplate-1.0.0/resources/primefaces-poseidon-cape-palliser-light/theme.css @@ -8697,11 +8697,8 @@ body .ui-tabs .ui-tabs-navscroller .ui-tabs-navscroller-btn.ui-state-hover { } body .ui-toolbar { - border: 1px solid #e4e5e5; - background: #f6f9fe; color: #515c66; padding: 1rem; - border-radius: 3px; } body .ui-wizard .ui-wizard-step-titles .ui-wizard-step-title { diff --git a/target/agtemplate-1.0.0/resources/primefaces-poseidon-cyan-light/theme.css b/target/agtemplate-1.0.0/resources/primefaces-poseidon-cyan-light/theme.css index 8b2bbb3..0bf2d39 100644 --- a/target/agtemplate-1.0.0/resources/primefaces-poseidon-cyan-light/theme.css +++ b/target/agtemplate-1.0.0/resources/primefaces-poseidon-cyan-light/theme.css @@ -8697,11 +8697,8 @@ body .ui-tabs .ui-tabs-navscroller .ui-tabs-navscroller-btn.ui-state-hover { } body .ui-toolbar { - border: 1px solid #e4e5e5; - background: #f6f9fe; color: #515c66; padding: 1rem; - border-radius: 3px; } body .ui-wizard .ui-wizard-step-titles .ui-wizard-step-title { diff --git a/target/agtemplate-1.0.0/resources/primefaces-poseidon-denim-light/theme.css b/target/agtemplate-1.0.0/resources/primefaces-poseidon-denim-light/theme.css index 09d1ce5..60a5940 100644 --- a/target/agtemplate-1.0.0/resources/primefaces-poseidon-denim-light/theme.css +++ b/target/agtemplate-1.0.0/resources/primefaces-poseidon-denim-light/theme.css @@ -8697,11 +8697,8 @@ body .ui-tabs .ui-tabs-navscroller .ui-tabs-navscroller-btn.ui-state-hover { } body .ui-toolbar { - border: 1px solid #e4e5e5; - background: #f6f9fe; color: #515c66; padding: 1rem; - border-radius: 3px; } body .ui-wizard .ui-wizard-step-titles .ui-wizard-step-title { diff --git a/target/agtemplate-1.0.0/resources/primefaces-poseidon-gigas-light/theme.css b/target/agtemplate-1.0.0/resources/primefaces-poseidon-gigas-light/theme.css index 629fc3c..1933e58 100644 --- a/target/agtemplate-1.0.0/resources/primefaces-poseidon-gigas-light/theme.css +++ b/target/agtemplate-1.0.0/resources/primefaces-poseidon-gigas-light/theme.css @@ -8697,11 +8697,8 @@ body .ui-tabs .ui-tabs-navscroller .ui-tabs-navscroller-btn.ui-state-hover { } body .ui-toolbar { - border: 1px solid #e4e5e5; - background: #f6f9fe; color: #515c66; padding: 1rem; - border-radius: 3px; } body .ui-wizard .ui-wizard-step-titles .ui-wizard-step-title { diff --git a/target/agtemplate-1.0.0/resources/primefaces-poseidon-jungle-green-light/theme.css b/target/agtemplate-1.0.0/resources/primefaces-poseidon-jungle-green-light/theme.css index 3488b55..ff82dbb 100644 --- a/target/agtemplate-1.0.0/resources/primefaces-poseidon-jungle-green-light/theme.css +++ b/target/agtemplate-1.0.0/resources/primefaces-poseidon-jungle-green-light/theme.css @@ -8697,11 +8697,8 @@ body .ui-tabs .ui-tabs-navscroller .ui-tabs-navscroller-btn.ui-state-hover { } body .ui-toolbar { - border: 1px solid #e4e5e5; - background: #f6f9fe; color: #515c66; padding: 1rem; - border-radius: 3px; } body .ui-wizard .ui-wizard-step-titles .ui-wizard-step-title { diff --git a/target/agtemplate-1.0.0/resources/primefaces-poseidon-sea-green-light/theme.css b/target/agtemplate-1.0.0/resources/primefaces-poseidon-sea-green-light/theme.css index 1659594..a53196a 100644 --- a/target/agtemplate-1.0.0/resources/primefaces-poseidon-sea-green-light/theme.css +++ b/target/agtemplate-1.0.0/resources/primefaces-poseidon-sea-green-light/theme.css @@ -8697,11 +8697,8 @@ body .ui-tabs .ui-tabs-navscroller .ui-tabs-navscroller-btn.ui-state-hover { } body .ui-toolbar { - border: 1px solid #e4e5e5; - background: #f6f9fe; color: #515c66; padding: 1rem; - border-radius: 3px; } body .ui-wizard .ui-wizard-step-titles .ui-wizard-step-title { diff --git a/target/agtemplate-1.0.0/resources/primefaces-poseidon-tapestry-light/theme.css b/target/agtemplate-1.0.0/resources/primefaces-poseidon-tapestry-light/theme.css index 4280403..8304591 100644 --- a/target/agtemplate-1.0.0/resources/primefaces-poseidon-tapestry-light/theme.css +++ b/target/agtemplate-1.0.0/resources/primefaces-poseidon-tapestry-light/theme.css @@ -8697,11 +8697,8 @@ body .ui-tabs .ui-tabs-navscroller .ui-tabs-navscroller-btn.ui-state-hover { } body .ui-toolbar { - border: 1px solid #e4e5e5; - background: #f6f9fe; color: #515c66; padding: 1rem; - border-radius: 3px; } body .ui-wizard .ui-wizard-step-titles .ui-wizard-step-title { diff --git a/target/agtemplate-1.0.0/resources/primefaces-poseidon-wedgewood-light/theme.css b/target/agtemplate-1.0.0/resources/primefaces-poseidon-wedgewood-light/theme.css index 93ee2b4..a23b8aa 100644 --- a/target/agtemplate-1.0.0/resources/primefaces-poseidon-wedgewood-light/theme.css +++ b/target/agtemplate-1.0.0/resources/primefaces-poseidon-wedgewood-light/theme.css @@ -8697,11 +8697,8 @@ body .ui-tabs .ui-tabs-navscroller .ui-tabs-navscroller-btn.ui-state-hover { } body .ui-toolbar { - border: 1px solid #e4e5e5; - background: #f6f9fe; color: #515c66; padding: 1rem; - border-radius: 3px; } body .ui-wizard .ui-wizard-step-titles .ui-wizard-step-title { diff --git a/target/agtemplate-1.0.0/template/template.xhtml b/target/agtemplate-1.0.0/template/template.xhtml index 93539b5..c2b00ce 100644 --- a/target/agtemplate-1.0.0/template/template.xhtml +++ b/target/agtemplate-1.0.0/template/template.xhtml @@ -103,21 +103,23 @@
+ + +
-
+
- - + diff --git a/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/assembler/Tb_templateInputAssembler.class b/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/assembler/Tb_templateInputAssembler.class index e7457a9..a8d0226 100644 Binary files a/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/assembler/Tb_templateInputAssembler.class and b/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/assembler/Tb_templateInputAssembler.class differ diff --git a/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/assembler/Tb_templateModelDisassembler.class b/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/assembler/Tb_templateModelDisassembler.class index 22d5d11..311671a 100644 Binary files a/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/assembler/Tb_templateModelDisassembler.class and b/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/assembler/Tb_templateModelDisassembler.class differ diff --git a/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/model/ModelMapperConfiguration$1.class b/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/model/ModelMapperConfiguration$1.class index 7b2ad21..033ab03 100644 Binary files a/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/model/ModelMapperConfiguration$1.class and b/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/model/ModelMapperConfiguration$1.class differ diff --git a/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/model/ModelMapperConfiguration$2.class b/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/model/ModelMapperConfiguration$2.class index 96a0fbf..c515448 100644 Binary files a/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/model/ModelMapperConfiguration$2.class and b/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/model/ModelMapperConfiguration$2.class differ diff --git a/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/model/ModelMapperConfiguration$3.class b/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/model/ModelMapperConfiguration$3.class index 3194d3e..0c64dc3 100644 Binary files a/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/model/ModelMapperConfiguration$3.class and b/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/model/ModelMapperConfiguration$3.class differ diff --git a/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/model/ModelMapperConfiguration.class b/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/model/ModelMapperConfiguration.class index 9fcdf1b..cb8eddd 100644 Binary files a/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/model/ModelMapperConfiguration.class and b/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/model/ModelMapperConfiguration.class differ diff --git a/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/model/Tb_templateModel.class b/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/model/Tb_templateModel.class index 9b2e962..27a47a2 100644 Binary files a/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/model/Tb_templateModel.class and b/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/model/Tb_templateModel.class differ diff --git a/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/model/input/Tb_templateIdInput.class b/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/model/input/Tb_templateIdInput.class index f904791..345d4cc 100644 Binary files a/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/model/input/Tb_templateIdInput.class and b/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/model/input/Tb_templateIdInput.class differ diff --git a/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/model/input/Tb_templateInput.class b/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/model/input/Tb_templateInput.class index 9c5e780..652d4fc 100644 Binary files a/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/model/input/Tb_templateInput.class and b/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/model/input/Tb_templateInput.class differ diff --git a/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/model/view/Tb_templateView.class b/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/model/view/Tb_templateView.class index 387154c..57e0ef3 100644 Binary files a/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/model/view/Tb_templateView.class and b/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/model/view/Tb_templateView.class differ diff --git a/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/service/Tb_templateService$1.class b/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/service/Tb_templateService$1.class index 3c0d6ad..ef4c607 100644 Binary files a/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/service/Tb_templateService$1.class and b/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/service/Tb_templateService$1.class differ diff --git a/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/service/Tb_templateService$2.class b/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/service/Tb_templateService$2.class index 49d6ffd..bb17d80 100644 Binary files a/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/service/Tb_templateService$2.class and b/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/service/Tb_templateService$2.class differ diff --git a/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/service/Tb_templateService$3.class b/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/service/Tb_templateService$3.class index f1976fc..ea497bd 100644 Binary files a/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/service/Tb_templateService$3.class and b/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/service/Tb_templateService$3.class differ diff --git a/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/service/Tb_templateService$4.class b/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/service/Tb_templateService$4.class index 995c82e..e1dae98 100644 Binary files a/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/service/Tb_templateService$4.class and b/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/service/Tb_templateService$4.class differ diff --git a/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/service/Tb_templateService$5.class b/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/service/Tb_templateService$5.class index 6d7c106..d95d7b9 100644 Binary files a/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/service/Tb_templateService$5.class and b/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/service/Tb_templateService$5.class differ diff --git a/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/service/Tb_templateService$6.class b/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/service/Tb_templateService$6.class index 30006e0..2161efa 100644 Binary files a/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/service/Tb_templateService$6.class and b/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/service/Tb_templateService$6.class differ diff --git a/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/service/Tb_templateService$7.class b/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/service/Tb_templateService$7.class index 0a9adfd..310e59e 100644 Binary files a/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/service/Tb_templateService$7.class and b/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/service/Tb_templateService$7.class differ diff --git a/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/service/Tb_templateService.class b/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/service/Tb_templateService.class index 72f9377..670519a 100644 Binary files a/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/service/Tb_templateService.class and b/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/service/Tb_templateService.class differ diff --git a/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/service/base/AgtemplateApiBase.class b/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/service/base/AgtemplateApiBase.class index 35af1ba..38ac747 100644 Binary files a/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/service/base/AgtemplateApiBase.class and b/target/classes/br/com/agapesistemas/agtemplate/agtemplate/api/service/base/AgtemplateApiBase.class differ diff --git a/target/classes/br/com/agapesistemas/agtemplate/agtemplate/controller/Tb_templateController.class b/target/classes/br/com/agapesistemas/agtemplate/agtemplate/controller/Tb_templateController.class index c510eb8..56f5963 100644 Binary files a/target/classes/br/com/agapesistemas/agtemplate/agtemplate/controller/Tb_templateController.class and b/target/classes/br/com/agapesistemas/agtemplate/agtemplate/controller/Tb_templateController.class differ diff --git a/target/classes/br/com/agapesistemas/agtemplate/agtemplate/converter/Tb_templateConverter.class b/target/classes/br/com/agapesistemas/agtemplate/agtemplate/converter/Tb_templateConverter.class index b919ecb..8fefe84 100644 Binary files a/target/classes/br/com/agapesistemas/agtemplate/agtemplate/converter/Tb_templateConverter.class and b/target/classes/br/com/agapesistemas/agtemplate/agtemplate/converter/Tb_templateConverter.class differ diff --git a/target/classes/br/com/agapesistemas/agtemplate/agtemplate/exception/Tb_templateException.class b/target/classes/br/com/agapesistemas/agtemplate/agtemplate/exception/Tb_templateException.class index 49cb77b..7a1a25a 100644 Binary files a/target/classes/br/com/agapesistemas/agtemplate/agtemplate/exception/Tb_templateException.class and b/target/classes/br/com/agapesistemas/agtemplate/agtemplate/exception/Tb_templateException.class differ diff --git a/target/classes/br/com/agapesistemas/agtemplate/agtemplate/filter/AgtemplateFilter.class b/target/classes/br/com/agapesistemas/agtemplate/agtemplate/filter/AgtemplateFilter.class index ec83ec5..6473e7c 100644 Binary files a/target/classes/br/com/agapesistemas/agtemplate/agtemplate/filter/AgtemplateFilter.class and b/target/classes/br/com/agapesistemas/agtemplate/agtemplate/filter/AgtemplateFilter.class differ diff --git a/target/classes/br/com/agapesistemas/agtemplate/agtemplate/filtro/Filtro.class b/target/classes/br/com/agapesistemas/agtemplate/agtemplate/filtro/Filtro.class index c8637c5..f21f8cc 100644 Binary files a/target/classes/br/com/agapesistemas/agtemplate/agtemplate/filtro/Filtro.class and b/target/classes/br/com/agapesistemas/agtemplate/agtemplate/filtro/Filtro.class differ diff --git a/target/classes/br/com/agapesistemas/agtemplate/agtemplate/filtro/Tb_templateFiltro.class b/target/classes/br/com/agapesistemas/agtemplate/agtemplate/filtro/Tb_templateFiltro.class index cdffb0b..a3af48d 100644 Binary files a/target/classes/br/com/agapesistemas/agtemplate/agtemplate/filtro/Tb_templateFiltro.class and b/target/classes/br/com/agapesistemas/agtemplate/agtemplate/filtro/Tb_templateFiltro.class differ diff --git a/target/classes/br/com/agapesistemas/agtemplate/agtemplate/model/dao/Tb_templateDAO.class b/target/classes/br/com/agapesistemas/agtemplate/agtemplate/model/dao/Tb_templateDAO.class index 421df17..4b54694 100644 Binary files a/target/classes/br/com/agapesistemas/agtemplate/agtemplate/model/dao/Tb_templateDAO.class and b/target/classes/br/com/agapesistemas/agtemplate/agtemplate/model/dao/Tb_templateDAO.class differ diff --git a/target/classes/br/com/agapesistemas/agtemplate/agtemplate/model/to/Tb_template.class b/target/classes/br/com/agapesistemas/agtemplate/agtemplate/model/to/Tb_template.class index df0a1de..f6fe983 100644 Binary files a/target/classes/br/com/agapesistemas/agtemplate/agtemplate/model/to/Tb_template.class and b/target/classes/br/com/agapesistemas/agtemplate/agtemplate/model/to/Tb_template.class differ diff --git a/target/classes/br/com/agapesistemas/agtemplate/agtemplate/view/DashboardBean.class b/target/classes/br/com/agapesistemas/agtemplate/agtemplate/view/DashboardBean.class new file mode 100644 index 0000000..d94d2ff Binary files /dev/null and b/target/classes/br/com/agapesistemas/agtemplate/agtemplate/view/DashboardBean.class differ diff --git a/target/classes/br/com/agapesistemas/agtemplate/agtemplate/view/Tb_templateBean$1.class b/target/classes/br/com/agapesistemas/agtemplate/agtemplate/view/Tb_templateBean$1.class index a79eefe..90c295c 100644 Binary files a/target/classes/br/com/agapesistemas/agtemplate/agtemplate/view/Tb_templateBean$1.class and b/target/classes/br/com/agapesistemas/agtemplate/agtemplate/view/Tb_templateBean$1.class differ diff --git a/target/classes/br/com/agapesistemas/agtemplate/agtemplate/view/Tb_templateBean.class b/target/classes/br/com/agapesistemas/agtemplate/agtemplate/view/Tb_templateBean.class index c9f5ffa..3a1caec 100644 Binary files a/target/classes/br/com/agapesistemas/agtemplate/agtemplate/view/Tb_templateBean.class and b/target/classes/br/com/agapesistemas/agtemplate/agtemplate/view/Tb_templateBean.class differ diff --git a/target/classes/br/com/agapesistemas/agtemplate/agtemplate/view/base/BaseBean$AlertaEnum.class b/target/classes/br/com/agapesistemas/agtemplate/agtemplate/view/base/BaseBean$AlertaEnum.class index 83dc5ed..0fb98b6 100644 Binary files a/target/classes/br/com/agapesistemas/agtemplate/agtemplate/view/base/BaseBean$AlertaEnum.class and b/target/classes/br/com/agapesistemas/agtemplate/agtemplate/view/base/BaseBean$AlertaEnum.class differ diff --git a/target/classes/br/com/agapesistemas/agtemplate/agtemplate/view/base/BaseBean.class b/target/classes/br/com/agapesistemas/agtemplate/agtemplate/view/base/BaseBean.class index d25db57..97c50ee 100644 Binary files a/target/classes/br/com/agapesistemas/agtemplate/agtemplate/view/base/BaseBean.class and b/target/classes/br/com/agapesistemas/agtemplate/agtemplate/view/base/BaseBean.class differ diff --git a/target/classes/br/com/agapesistemas/agtemplate/converter/BooleanConverter.class b/target/classes/br/com/agapesistemas/agtemplate/converter/BooleanConverter.class index ec891d9..2064c9d 100644 Binary files a/target/classes/br/com/agapesistemas/agtemplate/converter/BooleanConverter.class and b/target/classes/br/com/agapesistemas/agtemplate/converter/BooleanConverter.class differ diff --git a/target/classes/br/com/agapesistemas/agtemplate/exception/base/BaseException.class b/target/classes/br/com/agapesistemas/agtemplate/exception/base/BaseException.class index c78b7d5..6b697ae 100644 Binary files a/target/classes/br/com/agapesistemas/agtemplate/exception/base/BaseException.class and b/target/classes/br/com/agapesistemas/agtemplate/exception/base/BaseException.class differ diff --git a/target/classes/br/com/agapesistemas/agtemplate/jdbc/ConnectionFactory.class b/target/classes/br/com/agapesistemas/agtemplate/jdbc/ConnectionFactory.class index 767a72f..8962f65 100644 Binary files a/target/classes/br/com/agapesistemas/agtemplate/jdbc/ConnectionFactory.class and b/target/classes/br/com/agapesistemas/agtemplate/jdbc/ConnectionFactory.class differ diff --git a/target/classes/br/com/agapesistemas/agtemplate/jdbc/TransactionManager.class b/target/classes/br/com/agapesistemas/agtemplate/jdbc/TransactionManager.class index fb57d0a..e2b5cf8 100644 Binary files a/target/classes/br/com/agapesistemas/agtemplate/jdbc/TransactionManager.class and b/target/classes/br/com/agapesistemas/agtemplate/jdbc/TransactionManager.class differ diff --git a/target/classes/br/com/agapesistemas/agtemplate/model/dao/BaseDAO.class b/target/classes/br/com/agapesistemas/agtemplate/model/dao/BaseDAO.class index cacb72e..5fc7d69 100644 Binary files a/target/classes/br/com/agapesistemas/agtemplate/model/dao/BaseDAO.class and b/target/classes/br/com/agapesistemas/agtemplate/model/dao/BaseDAO.class differ diff --git a/target/classes/br/com/agapesistemas/agtemplate/model/dao/LogDAO.class b/target/classes/br/com/agapesistemas/agtemplate/model/dao/LogDAO.class index b6d9890..0b0ef31 100644 Binary files a/target/classes/br/com/agapesistemas/agtemplate/model/dao/LogDAO.class and b/target/classes/br/com/agapesistemas/agtemplate/model/dao/LogDAO.class differ diff --git a/target/classes/br/com/agapesistemas/agtemplate/model/to/Log.class b/target/classes/br/com/agapesistemas/agtemplate/model/to/Log.class index 245fdef..e62abf2 100644 Binary files a/target/classes/br/com/agapesistemas/agtemplate/model/to/Log.class and b/target/classes/br/com/agapesistemas/agtemplate/model/to/Log.class differ diff --git a/target/classes/br/com/agapesistemas/agtemplate/service/BaseService.class b/target/classes/br/com/agapesistemas/agtemplate/service/BaseService.class index e4b5ecb..dd99e2d 100644 Binary files a/target/classes/br/com/agapesistemas/agtemplate/service/BaseService.class and b/target/classes/br/com/agapesistemas/agtemplate/service/BaseService.class differ diff --git a/target/classes/br/com/agapesistemas/agtemplate/service/Problem$Object.class b/target/classes/br/com/agapesistemas/agtemplate/service/Problem$Object.class index e1aff99..38da3f2 100644 Binary files a/target/classes/br/com/agapesistemas/agtemplate/service/Problem$Object.class and b/target/classes/br/com/agapesistemas/agtemplate/service/Problem$Object.class differ diff --git a/target/classes/br/com/agapesistemas/agtemplate/service/Problem.class b/target/classes/br/com/agapesistemas/agtemplate/service/Problem.class index 2415115..5a1995e 100644 Binary files a/target/classes/br/com/agapesistemas/agtemplate/service/Problem.class and b/target/classes/br/com/agapesistemas/agtemplate/service/Problem.class differ diff --git a/target/classes/br/com/agapesistemas/agtemplate/util/Utils.class b/target/classes/br/com/agapesistemas/agtemplate/util/Utils.class index ed203c4..ab02084 100644 Binary files a/target/classes/br/com/agapesistemas/agtemplate/util/Utils.class and b/target/classes/br/com/agapesistemas/agtemplate/util/Utils.class differ diff --git a/target/classes/br/com/agapesistemas/agtemplate/view/ComboUtilsBean.class b/target/classes/br/com/agapesistemas/agtemplate/view/ComboUtilsBean.class index e8bd069..a8b70e6 100644 Binary files a/target/classes/br/com/agapesistemas/agtemplate/view/ComboUtilsBean.class and b/target/classes/br/com/agapesistemas/agtemplate/view/ComboUtilsBean.class differ diff --git a/target/classes/org/primefaces/poseidon/blockviewer/BlockViewer$PropertyKeys.class b/target/classes/org/primefaces/poseidon/blockviewer/BlockViewer$PropertyKeys.class index 5390ecb..927fa62 100644 Binary files a/target/classes/org/primefaces/poseidon/blockviewer/BlockViewer$PropertyKeys.class and b/target/classes/org/primefaces/poseidon/blockviewer/BlockViewer$PropertyKeys.class differ diff --git a/target/classes/org/primefaces/poseidon/blockviewer/BlockViewer.class b/target/classes/org/primefaces/poseidon/blockviewer/BlockViewer.class index 96091bb..4ec7f85 100644 Binary files a/target/classes/org/primefaces/poseidon/blockviewer/BlockViewer.class and b/target/classes/org/primefaces/poseidon/blockviewer/BlockViewer.class differ diff --git a/target/classes/org/primefaces/poseidon/component/PoseidonMenu$PropertyKeys.class b/target/classes/org/primefaces/poseidon/component/PoseidonMenu$PropertyKeys.class index cd3a406..919f815 100644 Binary files a/target/classes/org/primefaces/poseidon/component/PoseidonMenu$PropertyKeys.class and b/target/classes/org/primefaces/poseidon/component/PoseidonMenu$PropertyKeys.class differ diff --git a/target/classes/org/primefaces/poseidon/component/PoseidonMenu.class b/target/classes/org/primefaces/poseidon/component/PoseidonMenu.class index 07a8f13..fee8397 100644 Binary files a/target/classes/org/primefaces/poseidon/component/PoseidonMenu.class and b/target/classes/org/primefaces/poseidon/component/PoseidonMenu.class differ diff --git a/target/classes/org/primefaces/poseidon/component/PoseidonMenuRenderer.class b/target/classes/org/primefaces/poseidon/component/PoseidonMenuRenderer.class index 2f78971..6aed66f 100644 Binary files a/target/classes/org/primefaces/poseidon/component/PoseidonMenuRenderer.class and b/target/classes/org/primefaces/poseidon/component/PoseidonMenuRenderer.class differ diff --git a/target/classes/org/primefaces/poseidon/domain/Country.class b/target/classes/org/primefaces/poseidon/domain/Country.class index dd469f9..73cfc6f 100644 Binary files a/target/classes/org/primefaces/poseidon/domain/Country.class and b/target/classes/org/primefaces/poseidon/domain/Country.class differ diff --git a/target/classes/org/primefaces/poseidon/domain/Customer.class b/target/classes/org/primefaces/poseidon/domain/Customer.class index 0b0fbc6..10f5e8d 100644 Binary files a/target/classes/org/primefaces/poseidon/domain/Customer.class and b/target/classes/org/primefaces/poseidon/domain/Customer.class differ diff --git a/target/classes/org/primefaces/poseidon/domain/CustomerStatus.class b/target/classes/org/primefaces/poseidon/domain/CustomerStatus.class index 369ca6c..3be8bdd 100644 Binary files a/target/classes/org/primefaces/poseidon/domain/CustomerStatus.class and b/target/classes/org/primefaces/poseidon/domain/CustomerStatus.class differ diff --git a/target/classes/org/primefaces/poseidon/domain/Document.class b/target/classes/org/primefaces/poseidon/domain/Document.class index bbf35ac..b9f7730 100644 Binary files a/target/classes/org/primefaces/poseidon/domain/Document.class and b/target/classes/org/primefaces/poseidon/domain/Document.class differ diff --git a/target/classes/org/primefaces/poseidon/domain/InventoryStatus.class b/target/classes/org/primefaces/poseidon/domain/InventoryStatus.class index a90fcc4..6ee42bd 100644 Binary files a/target/classes/org/primefaces/poseidon/domain/InventoryStatus.class and b/target/classes/org/primefaces/poseidon/domain/InventoryStatus.class differ diff --git a/target/classes/org/primefaces/poseidon/domain/Order.class b/target/classes/org/primefaces/poseidon/domain/Order.class index fbe747f..fafd019 100644 Binary files a/target/classes/org/primefaces/poseidon/domain/Order.class and b/target/classes/org/primefaces/poseidon/domain/Order.class differ diff --git a/target/classes/org/primefaces/poseidon/domain/OrderStatus.class b/target/classes/org/primefaces/poseidon/domain/OrderStatus.class index 0022b0f..2c36e0c 100644 Binary files a/target/classes/org/primefaces/poseidon/domain/OrderStatus.class and b/target/classes/org/primefaces/poseidon/domain/OrderStatus.class differ diff --git a/target/classes/org/primefaces/poseidon/domain/Photo.class b/target/classes/org/primefaces/poseidon/domain/Photo.class index 610e1a5..339f7d1 100644 Binary files a/target/classes/org/primefaces/poseidon/domain/Photo.class and b/target/classes/org/primefaces/poseidon/domain/Photo.class differ diff --git a/target/classes/org/primefaces/poseidon/domain/Product.class b/target/classes/org/primefaces/poseidon/domain/Product.class index 1d6ccbf..d366e84 100644 Binary files a/target/classes/org/primefaces/poseidon/domain/Product.class and b/target/classes/org/primefaces/poseidon/domain/Product.class differ diff --git a/target/classes/org/primefaces/poseidon/domain/Representative.class b/target/classes/org/primefaces/poseidon/domain/Representative.class index f805ec5..241a27d 100644 Binary files a/target/classes/org/primefaces/poseidon/domain/Representative.class and b/target/classes/org/primefaces/poseidon/domain/Representative.class differ diff --git a/target/classes/org/primefaces/poseidon/filter/CharacterEncodingFilter.class b/target/classes/org/primefaces/poseidon/filter/CharacterEncodingFilter.class index 9888402..6c501a6 100644 Binary files a/target/classes/org/primefaces/poseidon/filter/CharacterEncodingFilter.class and b/target/classes/org/primefaces/poseidon/filter/CharacterEncodingFilter.class differ diff --git a/target/classes/org/primefaces/poseidon/service/CustomerService.class b/target/classes/org/primefaces/poseidon/service/CustomerService.class index 47bf6f1..bb83d2e 100644 Binary files a/target/classes/org/primefaces/poseidon/service/CustomerService.class and b/target/classes/org/primefaces/poseidon/service/CustomerService.class differ diff --git a/target/classes/org/primefaces/poseidon/service/DocumentService.class b/target/classes/org/primefaces/poseidon/service/DocumentService.class index cc71ce6..22d3554 100644 Binary files a/target/classes/org/primefaces/poseidon/service/DocumentService.class and b/target/classes/org/primefaces/poseidon/service/DocumentService.class differ diff --git a/target/classes/org/primefaces/poseidon/service/OrderService.class b/target/classes/org/primefaces/poseidon/service/OrderService.class index 73f9bd8..9f9d2c2 100644 Binary files a/target/classes/org/primefaces/poseidon/service/OrderService.class and b/target/classes/org/primefaces/poseidon/service/OrderService.class differ diff --git a/target/classes/org/primefaces/poseidon/service/PhotoService.class b/target/classes/org/primefaces/poseidon/service/PhotoService.class index 52f25c6..1f29eb7 100644 Binary files a/target/classes/org/primefaces/poseidon/service/PhotoService.class and b/target/classes/org/primefaces/poseidon/service/PhotoService.class differ diff --git a/target/classes/org/primefaces/poseidon/service/ProductService.class b/target/classes/org/primefaces/poseidon/service/ProductService.class index 3ac74d3..6ca5b8b 100644 Binary files a/target/classes/org/primefaces/poseidon/service/ProductService.class and b/target/classes/org/primefaces/poseidon/service/ProductService.class differ diff --git a/target/classes/org/primefaces/poseidon/view/CrudDemoView.class b/target/classes/org/primefaces/poseidon/view/CrudDemoView.class index 27827f8..3c83e48 100644 Binary files a/target/classes/org/primefaces/poseidon/view/CrudDemoView.class and b/target/classes/org/primefaces/poseidon/view/CrudDemoView.class differ diff --git a/target/classes/org/primefaces/poseidon/view/GuestPreferences$ComponentTheme.class b/target/classes/org/primefaces/poseidon/view/GuestPreferences$ComponentTheme.class index 55a8c60..00381b3 100644 Binary files a/target/classes/org/primefaces/poseidon/view/GuestPreferences$ComponentTheme.class and b/target/classes/org/primefaces/poseidon/view/GuestPreferences$ComponentTheme.class differ diff --git a/target/classes/org/primefaces/poseidon/view/GuestPreferences.class b/target/classes/org/primefaces/poseidon/view/GuestPreferences.class index 3ced617..35d4a85 100644 Binary files a/target/classes/org/primefaces/poseidon/view/GuestPreferences.class and b/target/classes/org/primefaces/poseidon/view/GuestPreferences.class differ diff --git a/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst b/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst index fa2b5e9..335d743 100644 --- a/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst +++ b/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst @@ -59,6 +59,7 @@ br\com\agapesistemas\agtemplate\exception\base\BaseException.class br\com\agapesistemas\agtemplate\view\ComboUtilsBean.class org\primefaces\poseidon\domain\Customer.class org\primefaces\poseidon\view\CrudDemoView.class +br\com\agapesistemas\agtemplate\agtemplate\view\DashboardBean.class br\com\agapesistemas\agtemplate\service\Problem.class br\com\agapesistemas\agtemplate\agtemplate\api\model\input\Tb_templateInput.class br\com\agapesistemas\agtemplate\jdbc\TransactionManager.class diff --git a/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst b/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst index 049222f..c9f720d 100644 --- a/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst +++ b/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst @@ -8,6 +8,7 @@ C:\Users\guilh\OneDrive\Documents\agape\Sprint 6 - Desenv\agtemplate\src\main\ja C:\Users\guilh\OneDrive\Documents\agape\Sprint 6 - Desenv\agtemplate\src\main\java\org\primefaces\poseidon\service\ProductService.java C:\Users\guilh\OneDrive\Documents\agape\Sprint 6 - Desenv\agtemplate\src\main\java\org\primefaces\poseidon\domain\Country.java C:\Users\guilh\OneDrive\Documents\agape\Sprint 6 - Desenv\agtemplate\src\main\java\org\primefaces\poseidon\domain\Product.java +C:\Users\guilh\OneDrive\Documents\agape\Sprint 6 - Desenv\agtemplate\src\main\java\br\com\agapesistemas\agtemplate\agtemplate\view\DashboardBean.java C:\Users\guilh\OneDrive\Documents\agape\Sprint 6 - Desenv\agtemplate\src\main\java\org\primefaces\poseidon\blockviewer\BlockViewer.java C:\Users\guilh\OneDrive\Documents\agape\Sprint 6 - Desenv\agtemplate\src\main\java\br\com\agapesistemas\agtemplate\service\Problem.java C:\Users\guilh\OneDrive\Documents\agape\Sprint 6 - Desenv\agtemplate\src\main\java\br\com\agapesistemas\agtemplate\model\dao\BaseDAO.java diff --git a/target/classes/.netbeans_automatic_build b/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst similarity index 100% rename from target/classes/.netbeans_automatic_build rename to target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst diff --git a/target/test-classes/.netbeans_automatic_build b/target/test-classes/.netbeans_automatic_build deleted file mode 100644 index e69de29..0000000 diff --git a/target/web.xml b/target/web.xml index bd86268..f851972 100644 --- a/target/web.xml +++ b/target/web.xml @@ -53,7 +53,7 @@ *.xhtml - index.xhtml + ./agtemplate/dashboard.xhtml otf