Thanks BJ, I had some dinner and remembered while I was eating. Forgot to
add the the guy to the entitygroup.xml file. Skip -----Original Message----- From: BJ Freeman [mailto:[hidden email]] Sent: Thursday, December 06, 2007 6:47 PM To: [hidden email] Subject: Re: Error /** Gets the helper name that corresponds to this delegator and the specified entityName *@param entityName The name of the entity to get the helper name for *@return String with the helper name that corresponds to this delegator and the specified entityName */ public String getEntityHelperName(String entityName) { String groupName = getModelGroupReader().getEntityGroupName(entityName); return this.getGroupHelperName(groupName); } /** Gets the an instance of helper that corresponds to this delegator and the specified entityName *@param entityName The name of the entity to get the helper for *@return GenericHelper that corresponds to this delegator and the specified entityName */ public GenericHelper getEntityHelper(String entityName) throws GenericEntityException { String helperName = getEntityHelperName(entityName); if (helperName != null && helperName.length() > 0) return GenericHelperFactory.getHelper(helperName); else throw new GenericEntityException("Helper name not found for entity " + entityName); } skip@thedevers sent the following on 12/6/2007 6:10 PM: > I am getting this error: > > Target exception: org.ofbiz.entity.GenericEntityException: Helper name not > found for entity > >>From webtools entitymaint > > On this new Entity I just added: > > <!-- Simple entity to store a list of statements that a user wants to > print --> > <entity entity-name="StatementPrintList" > package-name="org.ofbiz.accounting.ar" > title="A list of customers that will have statements printed."> > <field name="partyId" type="id-ne"/> > <field name="partyName" type="name"/> > <field name="userLoginId" type="id-ne"/> > <prim-key field="partyId"/> > <prim-key field="userLoginId"/> > <relation type="one" rel-entity-name="Party"> > <key-map field-name="partyId"/> > </relation> > </entity> > > I've seen this before, but for the life of me can't remember what the > it. Does anyone remember? > > Skip > > > > |
In reply to this post by SkipDever
is your entity defined in entitymodel.xml but not in entitygroup.xml?
On Thu, 2007-12-06 at 18:10 -0800, skip@thedevers wrote: > I am getting this error: > > Target exception: org.ofbiz.entity.GenericEntityException: Helper name not > found for entity > > >From webtools entitymaint > > On this new Entity I just added: > > <!-- Simple entity to store a list of statements that a user wants to > print --> > <entity entity-name="StatementPrintList" > package-name="org.ofbiz.accounting.ar" > title="A list of customers that will have statements printed."> > <field name="partyId" type="id-ne"/> > <field name="partyName" type="name"/> > <field name="userLoginId" type="id-ne"/> > <prim-key field="partyId"/> > <prim-key field="userLoginId"/> > <relation type="one" rel-entity-name="Party"> > <key-map field-name="partyId"/> > </relation> > </entity> > > I've seen this before, but for the life of me can't remember what the cause > it. Does anyone remember? > > Skip > > http://Antwebsystems.com : OFBiz Quality support for competitive rates. |
In reply to this post by BJ Freeman
Or rather, 99% so.
You can download it here: https://issues.apache.org/jira/browse/OFBIZ-1421 Make sure you take the latest ar.zip as there are two. You can get a description of it, how to install it, and few screen shots here: http://www.ofbizdev.org/ofbiz/skipswork.html If you find any bugs, please email me directly. Skip |
Just to avoid confusion for anyone, Skip's work is unrelated to the current
Accounting module development work taking place in the OFBiz trunk by Jacopo, Anil and others. Regards Scott On 07/12/2007, skip@thedevers <[hidden email]> wrote: > > Or rather, 99% so. > > You can download it here: > > https://issues.apache.org/jira/browse/OFBIZ-1421 > > Make sure you take the latest ar.zip as there are two. > > You can get a description of it, how to install it, and few screen shots > here: > > http://www.ofbizdev.org/ofbiz/skipswork.html > > If you find any bugs, please email me directly. > > Skip > > |
Yes,
it is an independent effort done by Skip. Skip, your work is interesting (I just had a look at the screenshot), for example it looks like you have implemented also some good reports that could be a good fit for the OFBiz accounting component. Would you mind to prepare (after others have reviewed your work) some smaller patches to include them to the OFBiz's accounting component (trunk)? If you are not available (I understand this is a lot of extra work on your side), could you please at least resubmit your patch to Jira, granting the ASF license? In this way, if others are interested working on your patch and modify it to fit into the OFBiz accounting component, we will be able to commit the work. Of course, just do it if you have not included modified files from the Opentaps project... this would not be allowed due to the nature of the Opentaps' license (HPL). Jacopo Scott Gray wrote: > Just to avoid confusion for anyone, Skip's work is unrelated to the current > Accounting module development work taking place in the OFBiz trunk by > Jacopo, Anil and others. > > Regards > Scott > > On 07/12/2007, skip@thedevers <[hidden email]> wrote: >> Or rather, 99% so. >> >> You can download it here: >> >> https://issues.apache.org/jira/browse/OFBIZ-1421 >> >> Make sure you take the latest ar.zip as there are two. >> >> You can get a description of it, how to install it, and few screen shots >> here: >> >> http://www.ofbizdev.org/ofbiz/skipswork.html >> >> If you find any bugs, please email me directly. >> >> Skip >> >> > |
In reply to this post by Scott Gray
Yes yes, I should have said "Accounts Receivable Module". This has nothing
to do with GL accounting. Forgive me, it's really late. Skip -----Original Message----- From: Scott Gray [mailto:[hidden email]] Sent: Friday, December 07, 2007 1:21 AM To: [hidden email] Subject: Re: Accounting Module Finished Just to avoid confusion for anyone, Skip's work is unrelated to the current Accounting module development work taking place in the OFBiz trunk by Jacopo, Anil and others. Regards Scott On 07/12/2007, skip@thedevers <[hidden email]> wrote: > > Or rather, 99% so. > > You can download it here: > > https://issues.apache.org/jira/browse/OFBIZ-1421 > > Make sure you take the latest ar.zip as there are two. > > You can get a description of it, how to install it, and few screen shots > here: > > http://www.ofbizdev.org/ofbiz/skipswork.html > > If you find any bugs, please email me directly. > > Skip > > |
In reply to this post by Jacopo Cappellato
Jacopo
Yes, I can do that. I can just suck out the widget code and submit it separately. -----Original Message----- From: Jacopo Cappellato [mailto:[hidden email]] Sent: Friday, December 07, 2007 1:36 AM To: [hidden email] Subject: Re: Accounting Module Finished Yes, it is an independent effort done by Skip. Skip, your work is interesting (I just had a look at the screenshot), for example it looks like you have implemented also some good reports that could be a good fit for the OFBiz accounting component. Would you mind to prepare (after others have reviewed your work) some smaller patches to include them to the OFBiz's accounting component (trunk)? If you are not available (I understand this is a lot of extra work on your side), could you please at least resubmit your patch to Jira, granting the ASF license? In this way, if others are interested working on your patch and modify it to fit into the OFBiz accounting component, we will be able to commit the work. Of course, just do it if you have not included modified files from the Opentaps project... this would not be allowed due to the nature of the Opentaps' license (HPL). Jacopo Scott Gray wrote: > Just to avoid confusion for anyone, Skip's work is unrelated to the current > Accounting module development work taking place in the OFBiz trunk by > Jacopo, Anil and others. > > Regards > Scott > > On 07/12/2007, skip@thedevers <[hidden email]> wrote: >> Or rather, 99% so. >> >> You can download it here: >> >> https://issues.apache.org/jira/browse/OFBIZ-1421 >> >> Make sure you take the latest ar.zip as there are two. >> >> You can get a description of it, how to install it, and few screen shots >> here: >> >> http://www.ofbizdev.org/ofbiz/skipswork.html >> >> If you find any bugs, please email me directly. >> >> Skip >> >> > |
In reply to this post by Jacopo Cappellato
Jacopo
I have uploaded a zip file stripped of the Opentaps specific code and granted the required license. Skip -----Original Message----- From: Jacopo Cappellato [mailto:[hidden email]] Sent: Friday, December 07, 2007 1:36 AM To: [hidden email] Subject: Re: Accounting Module Finished Yes, it is an independent effort done by Skip. Skip, your work is interesting (I just had a look at the screenshot), for example it looks like you have implemented also some good reports that could be a good fit for the OFBiz accounting component. Would you mind to prepare (after others have reviewed your work) some smaller patches to include them to the OFBiz's accounting component (trunk)? If you are not available (I understand this is a lot of extra work on your side), could you please at least resubmit your patch to Jira, granting the ASF license? In this way, if others are interested working on your patch and modify it to fit into the OFBiz accounting component, we will be able to commit the work. Of course, just do it if you have not included modified files from the Opentaps project... this would not be allowed due to the nature of the Opentaps' license (HPL). Jacopo Scott Gray wrote: > Just to avoid confusion for anyone, Skip's work is unrelated to the current > Accounting module development work taking place in the OFBiz trunk by > Jacopo, Anil and others. > > Regards > Scott > > On 07/12/2007, skip@thedevers <[hidden email]> wrote: >> Or rather, 99% so. >> >> You can download it here: >> >> https://issues.apache.org/jira/browse/OFBIZ-1421 >> >> Make sure you take the latest ar.zip as there are two. >> >> You can get a description of it, how to install it, and few screen shots >> here: >> >> http://www.ofbizdev.org/ofbiz/skipswork.html >> >> If you find any bugs, please email me directly. >> >> Skip >> >> > |
Free forum by Nabble | Edit this page |