surveys with ofbiz?

2017-03-08 Thread i...@agentur-m3.de
Hello everyone! I read about a survey component/module/framework within ofbiz. Has anyone experiences with it and could tell me where to start working with it (could not find it in menus and even in source there are some points, where it occurs, but I could not find any example or startpoint. Is t

ajax json response

2015-02-22 Thread i...@agentur-m3.de
Hello everyone! Here is a question concerning an ajax request: get next The request works fine and gives back correct values for idX and idY. My question is, if the line is correct (or if there is an better alternative), because th

Re: delete product

2015-02-01 Thread i...@agentur-m3.de
> setting "autoCreateKeywords" to "N" in Product entity. > > Kind regards > > Anahita > > 2015-01-30 9:16 GMT+01:00 i...@agentur-m3.de : > >> Hi All, >> >> I tried to create some test products (just product_id >> and description and a user defi

Re: delete product

2015-01-31 Thread i...@agentur-m3.de
Thanks for all your info and comments. I tried Michaels approach >> You first have to delete the product_keyword entities relating to >>your product before you can delete your product. and it solved the problem for me (I'm not sure if there had been records automatically created in other product

delete product

2015-01-30 Thread i...@agentur-m3.de
Hi All, I tried to create some test products (just product_id and description and a user defined PRODUCT_TYPE_ID "FLEAMARKETITEM") using a simple method. ofbiz now gives me an error when deleting them. Pressing delete-button the data engine says: Delete failed (write error): org.ofbiz.entity.

Groovy DSL

2015-01-21 Thread i...@agentur-m3.de
A test of Groovy DSL turned out an error due to unknown function select: import java.util.ArrayList; import javolution.util.FastList; import org.ofbiz.base.util.Debug; import org.ofbiz.base.util.UtilProperties; import org.ofbiz.base.util.UtilHttp; import org.ofbiz.base.util.UtilMisc; import org.o

Re: connection to external database: part 2

2014-12-20 Thread i...@agentur-m3.de
Thank you all for your help with understanding the datasource and delegator concepts! There is one additional point to this topic in the context of automatic importing the entities (it would be great if this connection would work at the end!): in ModelInduceFromDb there seems to be a problem with

Re: connection to external database: part 2

2014-12-17 Thread i...@agentur-m3.de
datasource-name="localpostgres"/> > datasource-name="localpostgres"/> > > In this case the defeault delegator you get in a service can fetch > record from any entity in the com.custom package. > > Personnaly, I use the first one if I need the external

connection to external database: part 2

2014-12-12 Thread i...@agentur-m3.de
Hi All! after setting up the connection with an external database without errors I have two more questions, on which I could not find some specific information: (1) after setting up an entity, a delegator and I datasource, which seem to work together now, how (or where?) is the exchange of RECORD

Re: connection with external database

2014-12-10 Thread i...@agentur-m3.de
I did and the error disappeared. Thanks! Am 07.12.2014 um 16:26 schrieb Adrian Crum: > Use the col-name attribute in the element to specify the MySQL > field name. > > Adrian Crum > Sandglass Software > www.sandglass-software.com > > On 12/7/2014 12:09 PM, i...@agentu

connection with external database

2014-12-07 Thread i...@agentur-m3.de
Hi All! still I try to connect ofbiz to a wordpress database. After editing of the field-types (see below) and reducing on a single table (wpposts) most of the field-type errors disappered (one still remains concerning the ID field, which is primary key, see below). Here is the error, which occu

null pointer from external mysql datasource connection

2014-12-03 Thread i...@agentur-m3.de
Hi All, trying to define an external datasource and to connect to the external mysql-database, ofbiz states a "null-pointer exception". Here is the datasource, which I appended into framework/entity/config/entityengine.xml: Calling https://localhost:8443/webtools/control/vie

Re: javascript and css directory

2014-12-03 Thread i...@agentur-m3.de
ing the existing >> examples. >> >> >> Adrian Crum >> Sandglass Software >> www.sandglass-software.com >> >> On 11/30/2014 8:23 AM, i...@agentur-m3.de wrote: >>> Hi All, >>> >>> I try to create a link for a javascript-

javascript and css directory

2014-11-30 Thread i...@agentur-m3.de
Hi All, I try to create a link for a javascript-file in a sub-directory of my compomenent. So I defined the links with @ofbizUrl or @ofbizContentUrl, but they don't give the results I did would expect. <@ofbizUrl> and <@ofbizUrl fullPath=true> give mycomponent/control/ (a /control sub-direct

Re: create Invoice

2014-10-31 Thread i...@agentur-m3.de
That is very useful, both for the minilang overview and the service overview (the parameter list is great!). Thank you! Ralf Am 31.10.2014 um 16:44 schrieb Adrian Crum: > An easier way to look up services, is by using Web Tools: > > https://localhost:8443/webtools/control/ServiceList > > Adrian

Re: create Invoice

2014-10-31 Thread i...@agentur-m3.de
I just took a second look at the the "data model resource book" and it in fact seems to have all information concerning invoices and explanation of the specific fields of an invoice. So if the ofbiz logic commits to this book (I don't really know, but I guess it does ?!?!?) I should be able to crea

Re: create Invoice

2014-10-31 Thread i...@agentur-m3.de
t; > location="component://accounting/webapp/accounting/WEB-INF/controller.xml"/> > > > search that file for createInvoiceItem request map: > > > > > > > > > So, the URL will invoke the createInvoiceItem service - using request > parameters as s

Re: create Invoice

2014-10-30 Thread i...@agentur-m3.de
Hello Joel, thank you. I tried to evaulate the user screens , and still got stuck with some search problems, like: In https://localhost:8443/ap/control/createInvoiceItem the forms action is action="/ap/control/createInvoiceItem". This should (???-> I am not quite sure about that) lead to account

create Invoice

2014-10-27 Thread i...@agentur-m3.de
Hello! This is an ofbiz-beginners question, which arose while trying my first steps with ofbiz. Thanks to the lots of good tutorials and the beginners book I already could successfully create own forms, using services and handling simple requests. This is amazing and really promising regarding th