|
add the BIRT as the ofbiz component
----------------------------------- Key: OFBIZ-1348 URL: https://issues.apache.org/jira/browse/OFBIZ-1348 Project: OFBiz Issue Type: Improvement Components: framework Affects Versions: SVN trunk Reporter: jack_guo Fix For: SVN trunk put the BIRT run environment to the ofbiz, make the BIRT as the ofbiz component, and let the user can develop the BI more easily and efficiently -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. |
|
[ https://issues.apache.org/jira/browse/OFBIZ-1348?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12535256 ] Walter Vaughan commented on OFBIZ-1348: --------------------------------------- AFAIK, BIRT uses EPL (the Eclipse Public Licence) http://www.eclipse.org/org/documents/epl-v10.php and I thought we needed to have everything under Apache License. I doubt we can get everyone in the BIRT project to agree to relicense under ASF terms. I'm guessing this will be closed in a matter of minutes... Which is sad, because it would be nice to have a hundreds of quickly edited reports in the system. > add the BIRT as the ofbiz component > ----------------------------------- > > Key: OFBIZ-1348 > URL: https://issues.apache.org/jira/browse/OFBIZ-1348 > Project: OFBiz > Issue Type: Improvement > Components: framework > Affects Versions: SVN trunk > Reporter: jack_guo > Fix For: SVN trunk > > > put the BIRT run environment to the ofbiz, make the BIRT as the ofbiz component, and let the user can develop the BI more easily and efficiently -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. |
|
I think EPL is compatible with Apache same as BSD and MIT. It should not
be a problem using the binaries. AFAIK, Apache Tomcat uses Eclipse compiler for JSP compilation and this compiler falls under same license. Thanks, Raj Walter Vaughan (JIRA) wrote: > [ https://issues.apache.org/jira/browse/OFBIZ-1348?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12535256 ] > > Walter Vaughan commented on OFBIZ-1348: > --------------------------------------- > > AFAIK, BIRT uses EPL (the Eclipse Public Licence) http://www.eclipse.org/org/documents/epl-v10.php and I thought we needed to have everything under Apache License. I doubt we can get everyone in the BIRT project to agree to relicense under ASF terms. > > I'm guessing this will be closed in a matter of minutes... > > Which is sad, because it would be nice to have a hundreds of quickly edited reports in the system. > > >> add the BIRT as the ofbiz component >> ----------------------------------- >> >> Key: OFBIZ-1348 >> URL: https://issues.apache.org/jira/browse/OFBIZ-1348 >> Project: OFBiz >> Issue Type: Improvement >> Components: framework >> Affects Versions: SVN trunk >> Reporter: jack_guo >> Fix For: SVN trunk >> >> >> put the BIRT run environment to the ofbiz, make the BIRT as the ofbiz component, and let the user can develop the BI more easily and efficiently >> > > |
|
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-1348?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] jack_guo updated OFBIZ-1348: ---------------------------- Attachment: birt.zip Hi All, I need some report function for a project, so I try to integrate ofbiz with the birt, here is some ideas and want to share with you, and if there is any problems, please let me know. 1. BIRT is the open source project and the license is the Eclipse Public License that is compatible with Apache; 2. It's a report designer based on Eclipse, and a runtime component that you can add to your app server. BIRT also offers a charting engine that lets you add charts to your own application, that's what I need. 3. I want to Ofbiz deal the *.rptdesign as convenient as the jsp; 4.. I want to use the birt servlet to display the rptdesign file as it have provider full display function, and I can update this code with the birt easily. So I create the rpt view handler, this handler doesn't really display the rpt file but get the display info from the control.xml and pass the parameters to the birt servlet, and I take the "info" parameter in view-map as the permission, here is the example: <handler name="birt" type="view" class=" org.ofbiz.webapp.view.BirtViewHandler" /> <request-map uri="birt"> <security https="false" auth="false"/> <response name="success" type="view" value="testbirt"/> </request-map> <view-map name="testbirt" type="birt" page="/new_report.rptdesign" info="FACILITY_ADMIN"/> here is the render code: ///////////////////BirtViewHandler ////////////////////////////////////// public class BirtViewHandler implements ViewHandler { public static final String module = BirtViewHandler.class.getName(); protected ServletContext context; public void init(ServletContext context) throws ViewHandlerException { this.context = context; // context.. } public void render(String name, String page, String info, String contentType, String encoding, HttpServletRequest request, HttpServletResponse response) throws ViewHandlerException { // some containers call filters on EVERY request, even forwarded ones, // so let it know that it came from the control servlet if (request == null) { throw new ViewHandlerException("Null HttpServletRequest object"); } if (page == null || page.length() == 0) { throw new ViewHandlerException("Null or empty source"); } String baseURL = request.getScheme( ) + "://" + request.getServerName( ) + ":" + request.getServerPort( ); String path=context.getRealPath(page); BirtViewHelper.PATH = path; BirtViewHelper.PERMISSION = info; try{ response.sendRedirect (baseURL+"/birt/control/frameset?"+LoginWorker.EXTERNAL_LOGIN_KEY_ATTR+"="+request.getSession().getAttribute( LoginWorker.EXTERNAL_LOGIN_KEY_ATTR)); }catch( Exception e){} } } ///////////////////END BirtViewHandler ////////////////////////////////////// ///////////////////BirtViewHelper////////////////////////////////////// package org.ofbiz.webapp.view; public class BirtViewHelper{ public static String PATH = new String(); public static String PERMISSION = new String(); } ///////////////////END BirtViewHelper////////////////////////////////////// here is the permission check in birt servlet : ///////////////////AuthenticateHelper ////////////////////////////////////// package org.eclipse.birt.report.servlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import javax.servlet.ServletContext; import org.ofbiz.security.Security; import org.ofbiz.entity.GenericValue; import org.ofbiz.webapp.control.LoginWorker; import org.ofbiz.webapp.view.BirtViewHelper; public class AuthenticateHelper { public static boolean hasPemission(HttpServletRequest request, HttpServletResponse response, ServletContext context) { LoginWorker.checkExternalLoginKey(request, response) ; GenericValue userLogin = (GenericValue)request.getSession().getAttribute("userLogin"); Security security = (Security)request.getAttribute("security"); if (security == null) { security = (Security) context.getAttribute("security"); } return security.hasPermission(BirtViewHelper.PERMISSION, userLogin); } } ///////////////////END AuthenticateHelper ////////////////////////////////////// you can download the BIRT code , place those code in the framework folder add add this module to the ofbiz-component.xml, and add the BirtViewHandler.java ,BirtViewHelper.java in the ofbiz\framework\webapp\src\org\ofbiz\webapp\view. Birt has a bug when export as word document, it will be fixed later. > add the BIRT as the ofbiz component > ----------------------------------- > > Key: OFBIZ-1348 > URL: https://issues.apache.org/jira/browse/OFBIZ-1348 > Project: OFBiz > Issue Type: Improvement > Components: framework > Affects Versions: SVN trunk > Reporter: jack_guo > Fix For: SVN trunk > > Attachments: birt.zip > > > put the BIRT run environment to the ofbiz, make the BIRT as the ofbiz component, and let the user can develop the BI more easily and efficiently -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. |
|
In reply to this post by rajsaini
really? will be closed? Someone will need this package.
Wait for someone sure answer, but I think EPL is compatible with Apache too. Is there someone can take charge this and tell me this jira is legal or not? 2007/10/16, Raj Saini <[hidden email]>: > > I think EPL is compatible with Apache same as BSD and MIT. It should not > be a problem using the binaries. AFAIK, Apache Tomcat uses Eclipse > compiler for JSP compilation and this compiler falls under same license. > > Thanks, > > Raj > > Walter Vaughan (JIRA) wrote: > > [ > https://issues.apache.org/jira/browse/OFBIZ-1348?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12535256] > > > > Walter Vaughan commented on OFBIZ-1348: > > --------------------------------------- > > > > AFAIK, BIRT uses EPL (the Eclipse Public Licence) > http://www.eclipse.org/org/documents/epl-v10.php and I thought we needed > to have everything under Apache License. I doubt we can get everyone in the > BIRT project to agree to relicense under ASF terms. > > > > I'm guessing this will be closed in a matter of minutes... > > > > Which is sad, because it would be nice to have a hundreds of quickly > edited reports in the system. > > > > > >> add the BIRT as the ofbiz component > >> ----------------------------------- > >> > >> Key: OFBIZ-1348 > >> URL: https://issues.apache.org/jira/browse/OFBIZ-1348 > >> Project: OFBiz > >> Issue Type: Improvement > >> Components: framework > >> Affects Versions: SVN trunk > >> Reporter: jack_guo > >> Fix For: SVN trunk > >> > >> > >> put the BIRT run environment to the ofbiz, make the BIRT as the ofbiz > component, and let the user can develop the BI more easily and efficiently > >> > > > > > > |
|
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-1348?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] jack_guo updated OFBIZ-1348: ---------------------------- Attachment: plugins1.zip > add the BIRT as the ofbiz component > ----------------------------------- > > Key: OFBIZ-1348 > URL: https://issues.apache.org/jira/browse/OFBIZ-1348 > Project: OFBiz > Issue Type: Improvement > Components: framework > Affects Versions: SVN trunk > Reporter: jack_guo > Fix For: SVN trunk > > Attachments: birt.zip, plugins1.zip > > > put the BIRT run environment to the ofbiz, make the BIRT as the ofbiz component, and let the user can develop the BI more easily and efficiently -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. |
|
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-1348?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12535264 ] Jacopo Cappellato commented on OFBIZ-1348: ------------------------------------------ Jack, thanks for your work. Could you please send the source code as a patch or (the complete java file if it is new), instead of a Jira comment? Thanks!!! > add the BIRT as the ofbiz component > ----------------------------------- > > Key: OFBIZ-1348 > URL: https://issues.apache.org/jira/browse/OFBIZ-1348 > Project: OFBiz > Issue Type: Improvement > Components: framework > Affects Versions: SVN trunk > Reporter: jack_guo > Fix For: SVN trunk > > Attachments: birt.zip, plugins1.zip > > > put the BIRT run environment to the ofbiz, make the BIRT as the ofbiz component, and let the user can develop the BI more easily and efficiently -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. |
|
ok, I will create this later
2007/10/16, Jacopo Cappellato (JIRA) <[hidden email]>: > > > [ > https://issues.apache.org/jira/browse/OFBIZ-1348?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12535264] > > Jacopo Cappellato commented on OFBIZ-1348: > ------------------------------------------ > > Jack, > > thanks for your work. Could you please send the source code as a patch or > (the complete java file if it is new), instead of a Jira comment? > > Thanks!!! > > > add the BIRT as the ofbiz component > > ----------------------------------- > > > > Key: OFBIZ-1348 > > URL: https://issues.apache.org/jira/browse/OFBIZ-1348 > > Project: OFBiz > > Issue Type: Improvement > > Components: framework > > Affects Versions: SVN trunk > > Reporter: jack_guo > > Fix For: SVN trunk > > > > Attachments: birt.zip, plugins1.zip > > > > > > put the BIRT run environment to the ofbiz, make the BIRT as the ofbiz > component, and let the user can develop the BI more easily and efficiently > > -- > This message is automatically generated by JIRA. > - > You can reply to this email to add a comment to the issue online. > > |
|
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-1348?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] jack_guo updated OFBIZ-1348: ---------------------------- Attachment: plugins2.zip > add the BIRT as the ofbiz component > ----------------------------------- > > Key: OFBIZ-1348 > URL: https://issues.apache.org/jira/browse/OFBIZ-1348 > Project: OFBiz > Issue Type: Improvement > Components: framework > Affects Versions: SVN trunk > Reporter: jack_guo > Fix For: SVN trunk > > Attachments: birt.zip, plugins1.zip, plugins2.zip > > > put the BIRT run environment to the ofbiz, make the BIRT as the ofbiz component, and let the user can develop the BI more easily and efficiently -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. |
|
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-1348?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] jack_guo updated OFBIZ-1348: ---------------------------- Attachment: plugins3.zip > add the BIRT as the ofbiz component > ----------------------------------- > > Key: OFBIZ-1348 > URL: https://issues.apache.org/jira/browse/OFBIZ-1348 > Project: OFBiz > Issue Type: Improvement > Components: framework > Affects Versions: SVN trunk > Reporter: jack_guo > Fix For: SVN trunk > > Attachments: birt.zip, plugins1.zip, plugins2.zip, plugins3.zip > > > put the BIRT run environment to the ofbiz, make the BIRT as the ofbiz component, and let the user can develop the BI more easily and efficiently -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. |
|
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-1348?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12535273 ] Jacques Le Roux commented on OFBIZ-1348: ---------------------------------------- About EPL licence,please have a look at http://people.apache.org/~rubys/3party.html#category-b. Seems fine with some light constraints > add the BIRT as the ofbiz component > ----------------------------------- > > Key: OFBIZ-1348 > URL: https://issues.apache.org/jira/browse/OFBIZ-1348 > Project: OFBiz > Issue Type: Improvement > Components: framework > Affects Versions: SVN trunk > Reporter: jack_guo > Fix For: SVN trunk > > Attachments: birt.zip, plugins1.zip, plugins2.zip, plugins3.zip > > > put the BIRT run environment to the ofbiz, make the BIRT as the ofbiz component, and let the user can develop the BI more easily and efficiently -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. |
|
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-1348?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] jack_guo updated OFBIZ-1348: ---------------------------- Attachment: BirtViewHelper.java > add the BIRT as the ofbiz component > ----------------------------------- > > Key: OFBIZ-1348 > URL: https://issues.apache.org/jira/browse/OFBIZ-1348 > Project: OFBiz > Issue Type: Improvement > Components: framework > Affects Versions: SVN trunk > Reporter: jack_guo > Fix For: SVN trunk > > Attachments: birt.zip, BirtViewHandler.java, BirtViewHelper.java, plugins1.zip, plugins2.zip, plugins3.zip > > > put the BIRT run environment to the ofbiz, make the BIRT as the ofbiz component, and let the user can develop the BI more easily and efficiently -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. |
|
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-1348?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] jack_guo updated OFBIZ-1348: ---------------------------- Attachment: BirtViewHandler.java > add the BIRT as the ofbiz component > ----------------------------------- > > Key: OFBIZ-1348 > URL: https://issues.apache.org/jira/browse/OFBIZ-1348 > Project: OFBiz > Issue Type: Improvement > Components: framework > Affects Versions: SVN trunk > Reporter: jack_guo > Fix For: SVN trunk > > Attachments: birt.zip, BirtViewHandler.java, BirtViewHelper.java, plugins1.zip, plugins2.zip, plugins3.zip > > > put the BIRT run environment to the ofbiz, make the BIRT as the ofbiz component, and let the user can develop the BI more easily and efficiently -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. |
|
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-1348?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12535274 ] Jacques Le Roux commented on OFBIZ-1348: ---------------------------------------- I just checked http://docs.ofbiz.org/display/OFBADMIN/Libraries+Included+in+OFBiz there are currently no use of EPL licences. Be sure to check the link above about the constraints before any huge work for OFBiz integration. > add the BIRT as the ofbiz component > ----------------------------------- > > Key: OFBIZ-1348 > URL: https://issues.apache.org/jira/browse/OFBIZ-1348 > Project: OFBiz > Issue Type: Improvement > Components: framework > Affects Versions: SVN trunk > Reporter: jack_guo > Fix For: SVN trunk > > Attachments: birt.zip, BirtViewHandler.java, BirtViewHelper.java, plugins1.zip, plugins2.zip, plugins3.zip > > > put the BIRT run environment to the ofbiz, make the BIRT as the ofbiz component, and let the user can develop the BI more easily and efficiently -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. |
|
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-1348?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12535276 ] jack_guo commented on OFBIZ-1348: --------------------------------- unzip birt.zip to the "framework" folder and upzip plugins1.zip, plugins2.zip and plugins3.zip to the "ofbiz\framework\birt\webapp\birt\WEB-INF\platform\plugins" folder. place the BirtViewHandler.java and BirtViewHelper.java in the "ofbiz\framework\webapp\src\org\ofbiz\webapp\view" folder. rebuild the component, then you can run the BIRT with ofbiz! this is just the first step to integret BIRT with ofbiz, more work need to be done to make more perfect, please let me know if there is any problem or advise. > add the BIRT as the ofbiz component > ----------------------------------- > > Key: OFBIZ-1348 > URL: https://issues.apache.org/jira/browse/OFBIZ-1348 > Project: OFBiz > Issue Type: Improvement > Components: framework > Affects Versions: SVN trunk > Reporter: jack_guo > Fix For: SVN trunk > > Attachments: birt.zip, BirtViewHandler.java, BirtViewHelper.java, plugins1.zip, plugins2.zip, plugins3.zip > > > put the BIRT run environment to the ofbiz, make the BIRT as the ofbiz component, and let the user can develop the BI more easily and efficiently -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. |
|
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-1348?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12535460 ] Jacopo Cappellato commented on OFBIZ-1348: ------------------------------------------ This is an interesting first step. My main concern is: do we really need +20MB plugins to run the reports? If the answer is yes, then we could think of including in the trunk the 3 source files and leave out the birt component (and just provide a link to download it): I've noticed that your new classes don't require any external jar to compile (and this is good). Jack, would you be brave enough to provide an example of a report based on the following view definition: SalesInvoiceItemStarSchema ? I'd love to see how the birt reports integrate with the existing ofbiz applications, and your example could be compared with the existing simple 'report' over the same view entity (in the Business Intelligence component). Thanks > add the BIRT as the ofbiz component > ----------------------------------- > > Key: OFBIZ-1348 > URL: https://issues.apache.org/jira/browse/OFBIZ-1348 > Project: OFBiz > Issue Type: Improvement > Components: framework > Affects Versions: SVN trunk > Reporter: jack_guo > Fix For: SVN trunk > > Attachments: birt.zip, BirtViewHandler.java, BirtViewHelper.java, plugins1.zip, plugins2.zip, plugins3.zip > > > put the BIRT run environment to the ofbiz, make the BIRT as the ofbiz component, and let the user can develop the BI more easily and efficiently -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. |
|
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-1348?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12535494 ] jack_guo commented on OFBIZ-1348: --------------------------------- As the first step, the BIRT cann't work with the Ofbiz view definition, it just the let the BIRT web viewer run with the OFBIZ, and can use the BIRT designer to design the report, the data sources come from the db maintenancing by BIRT . here is the data sources configuration code: <data-sources> <oda-data-source extensionID="org.eclipse.birt.report.data.oda.jdbc" name="Data Source" id="7"> <text-property name="displayName"></text-property> <property name="odaDriverClass">com.microsoft.sqlserver.jdbc.SQLServerDriver</property> <property name="odaURL">jdbc:sqlserver://localhost\\SQLEXPRESS:1433;DatabaseName=jins</property> <property name="odaUser">sa</property> <encrypted-property name="odaPassword">MTIzNCFAIyRxd2Vy</encrypted-property> </oda-data-source> </data-sources> of course it's no the good way as the BI component to ofbiz. I also want to let the BIRT can work with the Ofbiz view/entity So, the next step what I need to do is: 1. Make the BIRT web viewer can work with Ofbiz view/Entity .(high PRI) 2. Fix the bug and improve the permission mechanism..(mid PRI) 3. Make the BIRT designer can work with Ofbiz view/entity (low PRI) > add the BIRT as the ofbiz component > ----------------------------------- > > Key: OFBIZ-1348 > URL: https://issues.apache.org/jira/browse/OFBIZ-1348 > Project: OFBiz > Issue Type: Improvement > Components: framework > Affects Versions: SVN trunk > Reporter: jack_guo > Fix For: SVN trunk > > Attachments: birt.zip, BirtViewHandler.java, BirtViewHelper.java, plugins1.zip, plugins2.zip, plugins3.zip > > > put the BIRT run environment to the ofbiz, make the BIRT as the ofbiz component, and let the user can develop the BI more easily and efficiently -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. |
|
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-1348?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] jack_guo updated OFBIZ-1348: ---------------------------- Attachment: CreateDataSource.java this is class get the data from the Ofbiz and return the list, placed it in the framework\birt\src\org\ofbiz\birt > add the BIRT as the ofbiz component > ----------------------------------- > > Key: OFBIZ-1348 > URL: https://issues.apache.org/jira/browse/OFBIZ-1348 > Project: OFBiz > Issue Type: Improvement > Components: framework > Affects Versions: SVN trunk > Reporter: jack_guo > Fix For: SVN trunk > > Attachments: birt.zip, BirtViewHandler.java, BirtViewHelper.java, CreateDataSource.java, plugins1.zip, plugins2.zip, plugins3.zip > > > put the BIRT run environment to the ofbiz, make the BIRT as the ofbiz component, and let the user can develop the BI more easily and efficiently -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. |
|
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-1348?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] jack_guo updated OFBIZ-1348: ---------------------------- Attachment: AuthenticateHelper.java update AuthenticateHelper.java > add the BIRT as the ofbiz component > ----------------------------------- > > Key: OFBIZ-1348 > URL: https://issues.apache.org/jira/browse/OFBIZ-1348 > Project: OFBiz > Issue Type: Improvement > Components: framework > Affects Versions: SVN trunk > Reporter: jack_guo > Fix For: SVN trunk > > Attachments: AuthenticateHelper.java, birt.zip, BirtViewHandler.java, BirtViewHelper.java, CreateDataSource.java, OfbizScripted.rptdesign, plugins1.zip, plugins2.zip, plugins3.zip > > > put the BIRT run environment to the ofbiz, make the BIRT as the ofbiz component, and let the user can develop the BI more easily and efficiently -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. |
|
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-1348?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] jack_guo updated OFBIZ-1348: ---------------------------- Attachment: OfbizScripted.rptdesign take the OrderItemPriceInfo entity for example > add the BIRT as the ofbiz component > ----------------------------------- > > Key: OFBIZ-1348 > URL: https://issues.apache.org/jira/browse/OFBIZ-1348 > Project: OFBiz > Issue Type: Improvement > Components: framework > Affects Versions: SVN trunk > Reporter: jack_guo > Fix For: SVN trunk > > Attachments: AuthenticateHelper.java, birt.zip, BirtViewHandler.java, BirtViewHelper.java, CreateDataSource.java, OfbizScripted.rptdesign, plugins1.zip, plugins2.zip, plugins3.zip > > > put the BIRT run environment to the ofbiz, make the BIRT as the ofbiz component, and let the user can develop the BI more easily and efficiently -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. |
| Free forum by Nabble | Edit this page |
