branch develop updated (eb9ad04 -> f45fb28)
This is an automated email from the git hooks/post-receive script. New change to branch develop in repository chorem. See https://gitlab.nuiton.org/chorem/chorem.git from eb9ad04 doc(README.md): Création du README.md new d5bfb5c fixes #1363 : Adding .setLimit(WikittyQuery.MAX); to queries new f45fb28 refs #1363 : clean code The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Detailed log of new commits: commit f45fb2828959c9a12c2c9dcbdd376508daeab88a Author: Jean Couteau <jean.couteau@gmail.com> Date: Tue Jul 26 10:10:58 2016 +0200 refs #1363 : clean code commit d5bfb5c82707f5e8c6d107d93839a1aaab35b0c2 Author: Jean Couteau <jean.couteau@gmail.com> Date: Tue Jul 26 10:09:53 2016 +0200 fixes #1363 : Adding .setLimit(WikittyQuery.MAX); to queries Summary of changes: .../webmotion/actions/financial/BillingPerAccountReportAction.java | 2 +- .../webmotion/actions/financial/BillingPerProjectReportAction.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.
This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository chorem. See https://gitlab.nuiton.org/chorem/chorem.git commit d5bfb5c82707f5e8c6d107d93839a1aaab35b0c2 Author: Jean Couteau <jean.couteau@gmail.com> Date: Tue Jul 26 10:09:53 2016 +0200 fixes #1363 : Adding .setLimit(WikittyQuery.MAX); to queries --- .../webmotion/actions/financial/BillingPerAccountReportAction.java | 2 +- .../webmotion/actions/financial/BillingPerProjectReportAction.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/chorem-webmotion/src/main/java/org/chorem/webmotion/actions/financial/BillingPerAccountReportAction.java b/chorem-webmotion/src/main/java/org/chorem/webmotion/actions/financial/BillingPerAccountReportAction.java index 8dbfb72..3e228cd 100644 --- a/chorem-webmotion/src/main/java/org/chorem/webmotion/actions/financial/BillingPerAccountReportAction.java +++ b/chorem-webmotion/src/main/java/org/chorem/webmotion/actions/financial/BillingPerAccountReportAction.java @@ -96,7 +96,7 @@ public class BillingPerAccountReportAction extends WebMotionController { .bw(FinancialTransaction.FQ_FIELD_FINANCIALTRANSACTION_EMITTEDDATE, first, last) .containsOne(FinancialTransaction.FQ_FIELD_FINANCIALTRANSACTION_BENEFICIARY) .select(Element.ID).filterOnCompanyOrEmployee(companyId) - .end(); + .end().setLimit(WikittyQuery.MAX);; List<FinancialTransaction> bills = client.findAllByQuery(FinancialTransaction.class, billsQuery).getAll(); diff --git a/chorem-webmotion/src/main/java/org/chorem/webmotion/actions/financial/BillingPerProjectReportAction.java b/chorem-webmotion/src/main/java/org/chorem/webmotion/actions/financial/BillingPerProjectReportAction.java index 55d2ee1..c7ad077 100644 --- a/chorem-webmotion/src/main/java/org/chorem/webmotion/actions/financial/BillingPerProjectReportAction.java +++ b/chorem-webmotion/src/main/java/org/chorem/webmotion/actions/financial/BillingPerProjectReportAction.java @@ -98,7 +98,7 @@ public class BillingPerProjectReportAction extends WebMotionController { .bw(FinancialTransaction.FQ_FIELD_FINANCIALTRANSACTION_EMITTEDDATE, first, last) .containsOne(FinancialTransaction.FQ_FIELD_FINANCIALTRANSACTION_BENEFICIARY) .select(Element.ID).filterOnCompanyOrEmployee(companyId) - .end(); + .end().setLimit(WikittyQuery.MAX);; List<FinancialTransaction> bills = client.findAllByQuery(FinancialTransaction.class, billsQuery.setLimit(WikittyQuery.MAX)).getAll(); -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.
This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository chorem. See https://gitlab.nuiton.org/chorem/chorem.git commit f45fb2828959c9a12c2c9dcbdd376508daeab88a Author: Jean Couteau <jean.couteau@gmail.com> Date: Tue Jul 26 10:10:58 2016 +0200 refs #1363 : clean code --- .../webmotion/actions/financial/BillingPerAccountReportAction.java | 2 +- .../webmotion/actions/financial/BillingPerProjectReportAction.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/chorem-webmotion/src/main/java/org/chorem/webmotion/actions/financial/BillingPerAccountReportAction.java b/chorem-webmotion/src/main/java/org/chorem/webmotion/actions/financial/BillingPerAccountReportAction.java index 3e228cd..0c0e25b 100644 --- a/chorem-webmotion/src/main/java/org/chorem/webmotion/actions/financial/BillingPerAccountReportAction.java +++ b/chorem-webmotion/src/main/java/org/chorem/webmotion/actions/financial/BillingPerAccountReportAction.java @@ -96,7 +96,7 @@ public class BillingPerAccountReportAction extends WebMotionController { .bw(FinancialTransaction.FQ_FIELD_FINANCIALTRANSACTION_EMITTEDDATE, first, last) .containsOne(FinancialTransaction.FQ_FIELD_FINANCIALTRANSACTION_BENEFICIARY) .select(Element.ID).filterOnCompanyOrEmployee(companyId) - .end().setLimit(WikittyQuery.MAX);; + .end().setLimit(WikittyQuery.MAX); List<FinancialTransaction> bills = client.findAllByQuery(FinancialTransaction.class, billsQuery).getAll(); diff --git a/chorem-webmotion/src/main/java/org/chorem/webmotion/actions/financial/BillingPerProjectReportAction.java b/chorem-webmotion/src/main/java/org/chorem/webmotion/actions/financial/BillingPerProjectReportAction.java index c7ad077..86ed453 100644 --- a/chorem-webmotion/src/main/java/org/chorem/webmotion/actions/financial/BillingPerProjectReportAction.java +++ b/chorem-webmotion/src/main/java/org/chorem/webmotion/actions/financial/BillingPerProjectReportAction.java @@ -98,7 +98,7 @@ public class BillingPerProjectReportAction extends WebMotionController { .bw(FinancialTransaction.FQ_FIELD_FINANCIALTRANSACTION_EMITTEDDATE, first, last) .containsOne(FinancialTransaction.FQ_FIELD_FINANCIALTRANSACTION_BENEFICIARY) .select(Element.ID).filterOnCompanyOrEmployee(companyId) - .end().setLimit(WikittyQuery.MAX);; + .end().setLimit(WikittyQuery.MAX); List<FinancialTransaction> bills = client.findAllByQuery(FinancialTransaction.class, billsQuery.setLimit(WikittyQuery.MAX)).getAll(); -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.
participants (1)
-
chorem.org scm