Re: New proprietary ERP software based on the OFBiz data model

2015-02-28 Thread Deyan Tsvetanov | Moveltix
time next week to prepare a document and will forward it to you. Still, we can’t reveal everything, its a competitive world :) Best regards, Deyan Deyan Tsvetanov CEO Moveltix OOD www.moveltix.com https://www.moveltix.com/ On Feb 28, 2015, at 11:32 , Gavin Mabie kwikst...@gmail.com wrote: Hi

New proprietary ERP software based on the OFBiz data model

2015-02-27 Thread Deyan Tsvetanov | Moveltix
Hello, my name is Deyan Tsvetanov, I’m the founder and CEO of Moveltix. Moveltix OOD is a self-funded startup company, based in Sofia, Bulgaria. We spent the last two years in implementing a new software stack around the great OFBiz data model. Few days ago we reached public beta state, so

Re: Hi can anybody came across this problem

2010-10-01 Thread Deyan Tsvetanov
i would suggest there is a problem in either the harddrive of the machine or ram memory. try the same setup on another computer. On Sep 29, 2010 7:54 AM, S K Pradeep Kumar s.k.pradeepku...@gmail.com wrote: hi bj Thanks for your help. With regards, S K Pradeep kumar, 9980609494 On Tue, Sep

Re: Entity Engine: GenericDuplicateKeyException

2010-07-22 Thread Deyan Tsvetanov
--- On Mon, 7/19/10, Deyan Tsvetanov deyan_of...@flexbrix.com wrote: From: Deyan Tsvetanov deyan_of...@flexbrix.com Subject: Re: Entity Engine: GenericDuplicateKeyException To: user@ofbiz.apache.org Date: Monday, July 19, 2010, 6:22 AM The benefit here would be that developers

Re: Add created_by and updated_by to all tables ?

2010-07-21 Thread Deyan Tsvetanov
have you looked at the myportal and how it shows only data done for that login, that has roles and security? you can have a page for EntityAuditLog that shows who changed what relative to the page they are on. Deyan Tsvetanov sent the following on 7/19/2010 11:20 PM: What about the entity

Re: Add created_by and updated_by to all tables ?

2010-07-21 Thread Deyan Tsvetanov
and cheers Deyan On Tue, 2010-07-20 at 14:02 -0700, BJ Freeman wrote: please note I am just giving alternatives to accomplish what you stated. I am no way the end answer to this situation. this is just a discussion. if you want to submit a patch with your idea then do so. Deyan Tsvetanov

Re: Add created_by and updated_by to all tables ?

2010-07-21 Thread Deyan Tsvetanov
could have happened since the optimistic lock was started. Even the current created by and last updated by fields are a hack IMO, and only marginally useful as it hides the history and only marginally shows what happened. -David On Jul 21, 2010, at 1:07 AM, Deyan Tsvetanov wrote: #1

Re: Add created_by and updated_by to all tables ?

2010-07-20 Thread Deyan Tsvetanov
wrote: There's even a general auditing feature in the entity engine that saves changes, who changed it, when, visitId, etc. See the EntityAuditLog entity and the audit flag on the entity - field element on an entity definition. -David On Jul 19, 2010, at 11:36 PM, Deyan Tsvetanov wrote

Re: Add created_by and updated_by to all tables ?

2010-07-20 Thread Deyan Tsvetanov
, that has roles and security? you can have a page for EntityAuditLog that shows who changed what relative to the page they are on. Deyan Tsvetanov sent the following on 7/19/2010 11:20 PM: What about the entity locking and record based security ? 1) When we enable locking for an entity

Entity Engine: GenericDuplicateKeyException

2010-07-19 Thread Deyan Tsvetanov
Hi guys, there is a problem in entity engine which I would like to fix. Reproduction: I am trying to create a party with a duplicate partyId. In general I thought I have to expect a GenericDuplicateKeyException. However the exception that I get is a regular GenericEntityException with a

Re: Entity Engine: GenericDuplicateKeyException

2010-07-19 Thread Deyan Tsvetanov
violation could be used as an alternate way to get the next invoice number. The problem with using SQLIntegrityConstraintViolationException is that not all JDBC drivers will support it, so it might not get caught. -Adrian --- On Mon, 7/19/10, Deyan Tsvetanov deyan_of...@flexbrix.com wrote

Re: Entity Engine: GenericDuplicateKeyException

2010-07-19 Thread Deyan Tsvetanov
is that not all JDBC drivers will support it, so it might not get caught. -Adrian --- On Mon, 7/19/10, Deyan Tsvetanov deyan_of...@flexbrix.com wrote: From: Deyan Tsvetanov deyan_of...@flexbrix.com Subject: Entity Engine: GenericDuplicateKeyException To: user@ofbiz.apache.org Date

Add created_by and updated_by to all tables ?

2010-07-19 Thread Deyan Tsvetanov
Hi guys, another suggestion: to add 2 mandatory fields created_by and updated_by to all tables by default like created_stamp and updated_stamp. Currently there columns are added on demand in the entity definition but they are often needed. Examples of usage: 1) status change - there is no

Re: Entity Engine: GenericDuplicateKeyException

2010-07-19 Thread Deyan Tsvetanov
to that exception by using a subclass of SQLException, then they are welcome to do so - but they are not *required* to do so. SQLIntegrityConstraintViolationException was added in Java 6. Any JDBC drivers written before Java 6 will not use it. -Adrian --- On Mon, 7/19/10, Deyan Tsvetanov

Re: Add created_by and updated_by to all tables ?

2010-07-19 Thread Deyan Tsvetanov
is not created without a dependence on another one so those should not need those two fields. Deyan Tsvetanov sent the following on 7/19/2010 8:03 AM: Hi guys, another suggestion: to add 2 mandatory fields created_by and updated_by to all tables by default like created_stamp and updated_stamp

Re: Entity Engine: GenericDuplicateKeyException

2010-07-19 Thread Deyan Tsvetanov
ok , thanks :) On Mon, 2010-07-19 at 08:27 -0700, Adrian Crum wrote: Then create a Jira issue and attach a patch. We might need to support both specs by having them specified in the entitytengine datasource element. -Adrian On 7/19/2010 8:19 AM, Deyan Tsvetanov wrote: Right

Re: Add created_by and updated_by to all tables ?

2010-07-19 Thread Deyan Tsvetanov
being added but not every entity. Many entities data is not created without a dependence on another one so those should not need those two fields. Deyan Tsvetanov sent the following on 7/19/2010 8:03 AM: Hi guys, another suggestion: to add 2 mandatory fields created_by and updated_by

Entity Engine: GenericDuplicateKeyException

2010-07-19 Thread Deyan Tsvetanov
Hi guys, there is a problem in entity engine which I would like to fix. Reproduction: I am trying to create a party with a duplicate partyId. In general I thought I have to expect a GenericDuplicateKeyException. However the exception that I get is a regular GenericEntityException with a

Re: Add created_by and updated_by to all tables ?

2010-07-19 Thread Deyan Tsvetanov
the changelog model for audit, like changeprice? Deyan Tsvetanov sent the following on 7/19/2010 9:01 AM: Well I don't agree. A classic example of entities relation is party- person. One could update only the Person entity - change the lastName. So we update updated_by field only

EntityEngine field types

2010-06-11 Thread Deyan Tsvetanov
Hi guys, I am trying to find some description of the field types in entity engine. Currently it supports the following: date date-time time id-ne name id long-varchar comment description very-short id-long-ne id-long id-vlong id-vlong-ne very-long short-varchar value url

Re: EntityEngine field types

2010-06-11 Thread Deyan Tsvetanov
there ? Or it is not implemented that way. -- Deyan On Fri, 2010-06-11 at 11:54 +0200, Erwan de FERRIERES wrote: Le 11/06/2010 11:45, Deyan Tsvetanov a écrit : but there is no such info on that page. Cheers, Deyan Hi Deyan, take a look in framework/entity/fieldtype, and the file related to the DB you

Re: How to Use event driven parser in Ofbiz Code

2010-06-02 Thread Deyan Tsvetanov
Hi, go to google.com type java sax parser example and hit I am feelin' lucky :) -- Deyan On Wed, 2010-06-02 at 00:26 -0700, rrhati2010 wrote: Hi , I am facing memory issue in ofbiz when I run it on JBOSS . Can we use Event driven parser through out ofbiz code in place of dom parser ? If

Re: Performance issue: org.ofbiz.entity.transaction.TransactionUtil seems to be bottleneck

2010-06-01 Thread Deyan Tsvetanov
Hi guys, removing synchronized from begin( int timeout) will cause issues. The problematic code is the following: (starting from line 180 in TransactionUtil.java - trunk ) // reset the transaction stamps, just in case... clearTransactionStamps(); // initialize the start stamp

Re: Performance issue: org.ofbiz.entity.transaction.TransactionUtil seems to be bottleneck

2010-06-01 Thread Deyan Tsvetanov
I take my words back about the workaround. It's much more complicated. On Tue, 2010-06-01 at 09:23 +0300, Deyan Tsvetanov wrote: Hi guys, removing synchronized from begin( int timeout) will cause issues. The problematic code is the following: (starting from line 180

Re: Performance issue: org.ofbiz.entity.transaction.TransactionUtil seems to be bottleneck

2010-06-01 Thread Deyan Tsvetanov
Hi rhh, this looks like a different issue. It is a memory leak and imho has nothing to do with the synchronized TransactionUtil.begin() and commit() methods. First you have to check out the max heap memory set for JBoss. Look for an option -Xmx256m. Increase it to 1024m. If the test

Re: Performance issue: org.ofbiz.entity.transaction.TransactionUtil seems to be bottleneck

2010-06-01 Thread Deyan Tsvetanov
Hi rhh, yes, it looks like a memory leak. When you have a memory leak you have to profile each component you have doubts about. What screens have you tested with jMeter ? You have to run a profiler, start the jMeter test again and if possible - share the results. After that we could analyze

Re: Performance issue: org.ofbiz.entity.transaction.TransactionUtil seems to be bottleneck

2010-06-01 Thread Deyan Tsvetanov
to localize the synchronization to avoid bottlenecks on a larger block of code. BTW, the three sub-method calls you mentioned should all only deal with thread-local variables... aren't those thread-safe to use? -David On Jun 1, 2010, at 12:42 AM, Deyan Tsvetanov wrote: I take my words

RE: OFBiz unicode version ?

2010-05-30 Thread Deyan Tsvetanov
Hi Anil, which reports do you mean ? Could you pls provide an URL ? Cheers, Deyan On Sun, 2010-05-30 at 09:44 +0530, Anil Soni wrote: Thanks BJ for reply. But I need Unicode version that OFBiz uses because I have to mentioned this in a proposal. -Original Message- From: BJ

Re: Postgresql errors with trunk, any ideas?

2010-05-25 Thread Deyan Tsvetanov
Which driver version are you using ? On Tue, 2010-05-25 at 00:10 -0600, Matt Warnock wrote: Trying to get trunk working with postgresql 8.3 under Debian stable, sun java 1.6.0_12-b04, and I get several similar errors in the logs: exception report

Re: Integrating ofbiz with Alfresco

2010-05-24 Thread Deyan Tsvetanov
Hi Vignesh, I've integrated ofbiz with alfresco. But I only used alfresco as a repository for storing files and documents from my own 3rd party ofbiz application. I haven't done any alfresco application that can be used in ofbiz gui. Alfresco can be integrated using web services. You can

Re: Generic Product

2010-05-24 Thread Deyan Tsvetanov
Hi James, you should use the concept of virtual products and variants. Create a configurable product Paracetamol, mark it as Virtual = YES and create variants based on configurations, for example: Pills: 20 mg, 50 mg, 100 mg Liquid: 20 mg, 50 mg, 80 mg, 200 mg Unfortunately I can't point

Re: how to do group and subgroup in FOP report?

2010-05-24 Thread Deyan Tsvetanov
Birt uses a servlet to generate the .PDF files from a .rptdesign file. Create web application, register the BIRT servlet in web.inf and invoke it from a web browser as shown in the BIRT examples. If you need security you should configure a servlet filter that handles it. Regards, Deyan On

Re: how to do group and subgroup in FOP report?

2010-05-24 Thread Deyan Tsvetanov
web.inf = web.xml :) On Tue, 2010-05-25 at 07:04 +0300, Deyan Tsvetanov wrote: Birt uses a servlet to generate the .PDF files from a .rptdesign file. Create web application, register the BIRT servlet in web.inf and invoke it from a web browser as shown in the BIRT examples. If you

Re: ofbiz auction functionality

2010-05-19 Thread Deyan Tsvetanov
, May 18, 2010 at 3:00 PM, Deyan Tsvetanov deyan_of...@flexbrix.comwrote: Hi Chris, I have researched the auctions case. It is quite possible to implement auctions on top of ofbiz without modifying the data model. However it all depends on how far would you like to go :) Some

Re: ofbiz auction functionality

2010-05-18 Thread Deyan Tsvetanov
Hi Chris, I have researched the auctions case. It is quite possible to implement auctions on top of ofbiz without modifying the data model. However it all depends on how far would you like to go :) Some of the services need to be modified or skipped at all. But in general no changes to any

Re: OFBiz install won't start - Embedded service not yet been started

2010-05-10 Thread Deyan Tsvetanov
Search through the log files and look for java.net.BindException: Address already in use: JVM_Bind or for *any* other kind of Exception, ofbiz won't fail without an exception stacktrace. -- deyan On Sun, 2010-05-09 at 18:59 -0700, tampan wrote: hi, after disabling RMI Service, i am able

Re: can we get tax according to supplier?

2010-05-06 Thread Deyan Tsvetanov
Hi there, usually taxes are different for each geographical region - state or country. You can create a tax_authority and assign it to a geo region. Go to Accounting - Tax Authorities. After that go to Product Rates and enter the taxes that this tax authority requires. Next you have to

Re: Seed Data Load very slow in Ubuntu 10.04

2010-05-03 Thread Deyan Tsvetanov
http://www.phoronix.com/scan.php?page=articleitem=ubuntu_lucid_alpha2num=3 PostgreSQL's performance continues to suffer dramatically under Ubuntu 10.04 LTS and it is not expected that it will change at all for this next Ubuntu release. This major drop in the number of transactions being carried

Re: Seed Data Load very slow in Ubuntu 10.04

2010-05-03 Thread Deyan Tsvetanov
Sorry, I hit ctrl + enter too quickly :) http://www.phoronix.com/scan.php?page=articleitem=linux_perf_regressionsnum=1 So - don't use the 2.6.32 kernel for production yet :) On Mon, 2010-05-03 at 12:24 +0300, Deyan Tsvetanov wrote: http://www.phoronix.com/scan.php?page=articleitem

Re: Seed Data Load very slow in Ubuntu 10.04

2010-05-03 Thread Deyan Tsvetanov
as compared to ext4, but the difference is not that huge. -- deyan On Mon, 2010-05-03 at 12:32 +0300, Deyan Tsvetanov wrote: Sorry, I hit ctrl + enter too quickly :) http://www.phoronix.com/scan.php?page=articleitem=linux_perf_regressionsnum=1 So - don't use the 2.6.32 kernel for production

Re: Question regarding Catalog management in Ofbiz

2010-05-02 Thread Deyan Tsvetanov
that and we should use it. Regards, Michał 2010/5/1 Deyan Tsvetanov deyan_of...@ittconsult.com associations, for example: compatible with, replaceable by, required or anything else ( product_assoc_type table )

Re: Question regarding Catalog management in Ofbiz

2010-05-01 Thread Deyan Tsvetanov
Actually it would be better to use EntityListIterator ( Delegator.find() method ) instead of a List. Using a list would load 1,000,000 categories into the heap which is not good :) On Fri, 2010-04-30 at 04:30 -0700, BJ Freeman wrote: to address your basic concern the solution would be to load

Re: Question regarding Catalog management in Ofbiz

2010-05-01 Thread Deyan Tsvetanov
Yes, it is a good example. I've done a project with car parts so i'm pretty familiar with the millions of categories :) However there is a lot of room for optimization. In ofbiz you could add a product into many categories so you don't have to create a category Brake-wheel hub many times for each

Re: JUNK-Re: ofbiz entity sync.

2010-04-07 Thread Deyan Tsvetanov
-Original Message- From: Jacques Le Roux jacques.le.r...@les7arts.com Reply-to: Jacques Le Roux jacques.le.r...@les7arts.com To: user@ofbiz.apache.org Subject: Re: JUNK-Re: ofbiz entity sync. Date: Tue, 6 Apr 2010 21:30:24 +0200 From: Deyan Tsvetanov deyan.tsveta...@ittconsult.com Hi

Re: ofbiz entity sync.

2010-04-07 Thread Deyan Tsvetanov
the error has happened - the next after the last successful one. That's all in general. -- deyan -Original Message- From: Jacques Le Roux jacques.le.r...@les7arts.com Reply-to: Jacques Le Roux jacques.le.r...@les7arts.com To: Deyan Tsvetanov deyan.tsveta...@ittconsult.com, user

Re: ofbiz entity sync.

2010-04-07 Thread Deyan Tsvetanov
to support syncing from one type of database to another (which is currently supported). -David On Apr 7, 2010, at 3:41 AM, Deyan Tsvetanov wrote: Hi guys, so about the transaction log: I have a table called TRANSLOG with the following structure: CREATE TABLE translog ( id

Re: JUNK-Re: ofbiz entity sync.

2010-04-06 Thread Deyan Tsvetanov
Hi Adrian, yes , my current approach is database specific. It was implemented under pressure when I found out that ofbiz sync does not work, at least in my setup :) So my suggestion and idea is to implement database independent solution, I would do it but may be in few months. The approach

Re: JUNK-Re: ofbiz entity sync.

2010-04-06 Thread Deyan Tsvetanov
pretty easy to verify :) -- deyan -Original Message- From: Adrian Crum adri...@hlmksw.com Reply-to: user@ofbiz.apache.org To: user@ofbiz.apache.org Subject: Re: JUNK-Re: ofbiz entity sync. Date: Tue, 06 Apr 2010 10:48:28 -0700 Deyan Tsvetanov wrote: Hi Adrian, yes , my current

Re: Demo is down with OutOfMemoryError: PermGen space error

2010-02-25 Thread Deyan Tsvetanov
You should investigate which piece of code is causing that error. Few months ago I used BIRT into ofbiz and i was getting this error. The problem was definitelly BIRT, so I set -XX:PermSize=64m -XX:MaxPermSize=512m and since than it's OK. -- Deyan -Original Message- From: Hans

Re: Entity Sync

2009-10-28 Thread Deyan Tsvetanov
Yup, we all thank you :) I'll send you my entity sync setup and some notes and stuff i've discovered by the end of the week. In general it can be re-worked a bit and still be a very useful tool so users can choose whether to use it or use some db level synchronization. -- Deyan

Re: Entity Sync

2009-10-28 Thread Deyan Tsvetanov
would eliminate the system clock issues and graph generation. -- deyan -Original Message- From: Deyan Tsvetanov deyan.tsveta...@ittconsult.com Reply-to: user@ofbiz.apache.org To: Jacques Le Roux jacques.le.r...@les7arts.com Cc: user@ofbiz.apache.org Subject: Re: Entity Sync Date: Wed, 28

Re: EntitySync issues suggestions ( was EntitySync RMI error )

2009-10-26 Thread Deyan Tsvetanov
...@les7arts.com Reply-to: Jacques Le Roux jacques.le.r...@les7arts.com To: Deyan Tsvetanov deyan.tsveta...@ittconsult.com, user@ofbiz.apache.org Subject: Re: EntitySync issues suggestions ( was EntitySync RMI error ) Date: Mon, 26 Oct 2009 08:34:51 +0100  Hi Deyan, Did you work on this ? I

Invoice sequence id in a multiple POS environment

2009-10-11 Thread Deyan Tsvetanov
Hello, I've reached the following problem: We have multiple POS Ofbiz instances running. Each uses a local database. Each OFBiz instance has a seqnenced-id-prefix set for the default delegator . Each product store has a order id prefix set. However it seems that no such mechanism is

Re: Invoice sequence id in a multiple POS environment

2009-10-11 Thread Deyan Tsvetanov
Probably creating a new party_group for each product store ? -Original Message- From: Deyan Tsvetanov deyan.tsveta...@ittconsult.com To: user@ofbiz.apache.org Subject: Invoice sequence id in a multiple POS environment Date: Sun, 11 Oct 2009 12:30:03 +0300 Hello, I've reached

RE: deploying ofbiz in amazon EC2

2009-10-05 Thread Deyan Tsvetanov
No, it is not possible :) Tomcat runs as a container inside ofbiz. You can disable it if you want to, or replace it by jetty. But you can not run ofbiz into tomcat. Imho:) -- deyan -Original Message- From: Chris Snow sno...@snowconsulting.co.uk Sent: 05 Октомври 2009 г. 18:59 To:

Re: deploying ofbiz in amazon EC2

2009-10-05 Thread Deyan Tsvetanov
/display/OFBTECH/Run+OFBiz+under+outside+Application+Servers No guarantee for the Tomcat page ... (seems to be some problems nowadays) Jacques From: Deyan Tsvetanov deyan.tsveta...@ittconsult.com No, it is not possible :) Tomcat runs as a container inside ofbiz. You can disable it if you want

EntitySync issues suggestions ( was EntitySync RMI error )

2009-10-04 Thread Deyan Tsvetanov
2009 17:02:57 +0200 Hi Deyan, It would be very valuable if you could post an article on wiki about your experience with this. Don't worry about where to put it, I will eventually take care to put it under FAQ... TIA Jacques From: Deyan Tsvetanov deyan.tsveta...@ittconsult.com I found an issue

Re: Running multiple ofbiz code on different ports of tomcat

2009-10-04 Thread Deyan Tsvetanov
Here all the files you need to change: framework/base/config/ofbiz-containers.xml framework/base/config/jndi.properties framework/base/config/jndiservers.xml framework/base/config/rmi-containers.xml framework/service/config/serviceengine.xml framework/webapp/config/url.properties In branch 9.04

Re: EntitySync RMI error

2009-09-29 Thread Deyan Tsvetanov
be very valuable if you could post an article on wiki about your experience with this. Don't worry about where to put it, I will eventually take care to put it under FAQ... TIA Jacques From: Deyan Tsvetanov deyan.tsveta...@ittconsult.com I found an issue though: If the connection gets dropped

EntitySync RMI error

2009-09-26 Thread Deyan Tsvetanov
Hi guys, I'm trying to configure RMI entity sync. I'm following http://docs.ofbiz.org/display/OFBIZ/Sync+Setup+Notes+and+Example What I've done so far: 1) entity-sync-rmi to rmi://192.168.1.100:1099/RMIDispatcher 2) set RMIIF=-Djava.rmi.server.hostname=127.0.0.1 ( as per the example ).

Re: EntitySync RMI error

2009-09-26 Thread Deyan Tsvetanov
/RMIDispatcher, entity-sync-http=http://192.168.1.100:8080/webtools/control/httpService, rita-rmi=rmi://127.0.0.1:1099/RMIDispatcher, eedcc-test=http://127. 0.0.1:8080/webtools/control/httpService] entity-sync-rmi seems to be ok ... -Original Message- From: Deyan Tsvetanov deyan.tsveta

Re: EntitySync RMI error

2009-09-26 Thread Deyan Tsvetanov
not connect to 192.168.1.100 and the remote one - can not connect to 127.0.0.1 ) look the same :) So issue is solved, sorry for bothering :) -- deyan -Original Message- From: Deyan Tsvetanov deyan.tsveta...@ittconsult.com Reply-to: user@ofbiz.apache.org To: user@ofbiz.apache.org Subject: Re

Re: EntitySync RMI error

2009-09-26 Thread Deyan Tsvetanov
webtools - entity sync status helps. I'll investigate further and log a bug, although the solution seems pretty simple - looks like a swallowed IOException, which should be handled by re-setting the sync status. CHeers, DEyan -Original Message- From: Deyan Tsvetanov deyan.tsveta

POS sales order completion

2009-09-25 Thread Deyan Tsvetanov
Hi all, I've a question regarding the sales orders from POS. We have a product store with Is Immediately Fulfilled set to NO. After a sale is done a new sales order is being created for the store with status APPROVED. I can not find anywhere in the GUI how to complete the order, so its

Re: POS sales order completion

2009-09-25 Thread Deyan Tsvetanov
there are currently no easy solutions for your pb Jacques From: Deyan Tsvetanov deyan.tsveta...@ittconsult.com Hi all, I've a question regarding the sales orders from POS. We have a product store with Is Immediately Fulfilled set to NO. After a sale is done a new sales order is being

Re: Error when trying to Run

2009-09-25 Thread Deyan Tsvetanov
Are you starting ofbiz with startofbiz.bat ? If yes - does it provide any to other output besides the error bellow ? Which JVM are you using ? Doesn't look like Sun JVM to me ... :) -- Deyan -Original Message- From: Ofbiz Learner getof...@gmail.com Reply-to: user@ofbiz.apache.org To:

Re: POS sales order completion

2009-09-25 Thread Deyan Tsvetanov
...@les7arts.com To: user@ofbiz.apache.org Subject: Re: POS sales order completion Date: Fri, 25 Sep 2009 14:22:07 +0200 Hi Deyan, There are still some features missing in the POS, I agree. For the moment, in such cases you may use the order manager.. Jacques From: Deyan Tsvetanov deyan.tsveta

Entity Sync Http

2009-09-01 Thread Deyan Tsvetanov
Hi, I'm trying to configure entity synchronization. In the sync setup notes ( http://docs.ofbiz.org/display/OFBIZ/Sync+Setup+Notes+and+Example ) it's written to use entity-sync-rmi. framework/service/config/serviceengine.xml - enity-sync-rmi set to MCS. My question is: is it possible to

Re: POS panel for 800 x 600 resolution

2009-09-01 Thread Deyan Tsvetanov
Hi, you also need to modify ofbiz_home/specialpurpose/pos/screens/default/* as all the buttons positions and sizes are hardcoded in pixels. Regards, Deyan -Original Message- From: ngterry terence...@gmail.com Reply-to: user@ofbiz.apache.org To: user@ofbiz.apache.org Subject:

Re: Virtual Products and Variants

2009-09-01 Thread Deyan Tsvetanov
Hi, The answers of most of the questions you've asked can be found in The Data Model Resource Book, chapter 3. http://www.amazon.com/Data-Model-Resource-Book-Warehouse/dp/0471153648 I'm pretty sure google can point you to a download location as the book is pretty old:) -- Deyan

Re: Virtual product and pricing

2009-09-01 Thread Deyan Tsvetanov
If no price is set on a variant then the price of the virtual product is used. Otherwise the variant product price overrides the virtual product price. Was is what you were asking about ? -Original Message- From: buzlite bzb...@gmail.com Reply-to: user@ofbiz.apache.org To:

Facility inventory question

2009-08-24 Thread Deyan Tsvetanov
Hello, I have a question regarding facility inventory. I tried hard to understand how does it work but it was not good enough, so I'll need your help ;) Let's use the demo ofbiz installation. What am doing is: 1) Go to facility , select My Retail Store , click Receive inventory 2) Type

POS Customer Card Identification

2009-08-19 Thread Deyan Tsvetanov
Hi group, I'm not pretty familiar with JavaPOS. So far I've just ran it and seen how it works. My question is: is it possible to somehow enter the party id of the customer who is buying ? Something like customer cards, so that discounts can be configured depending on the pricing rules.

Re: Where can we use this

2009-07-29 Thread Deyan Tsvetanov
Looks like IBM java is even more sophisticated in error messaging than Sun's one. Try using equals() instead of == -Original Message- From: S K Pradeep Kumar pradeep.ku...@palindromesoftware.com Reply-to: user@ofbiz.apache.org To: user@ofbiz.apache.org Subject: Where can we use this

Re: Where can we use this

2009-07-29 Thread Deyan Tsvetanov
Wrong thread, sorry :) Please ignore . -Original Message- From: Deyan Tsvetanov deyan.tsveta...@ittconsult.com Reply-to: user@ofbiz.apache.org To: user@ofbiz.apache.org Subject: Re: Where can we use this Date: Wed, 29 Jul 2009 11:22:37 +0300 Looks like IBM java is even more

Re: Compilation error on IBM System i (iSeries, AS/400)

2009-07-29 Thread Deyan Tsvetanov
Does it work with equals() instead of == ? -Original Message- From: BJ Freeman bjf...@free-man.net Reply-to: user@ofbiz.apache.org To: user@ofbiz.apache.org Subject: Re: Compilation error on IBM System i (iSeries, AS/400) Date: Wed, 29 Jul 2009 03:44:25 -0700 Ok then my next

Re: install problems

2009-07-12 Thread Deyan Tsvetanov
Hi there, here's the recipe: 1) Install postgre 8.3+, create a login role and database. 2) Extract ofbiz 3) Edit OFBIZ_HOME/framework/entity/config/entityengine.xml 4) Find the delegator tags and change all the datasource-name properties to localpostgres as follows: delegator name=default

Re: install problems

2009-07-12 Thread Deyan Tsvetanov
No root web application means that when you open http://localhost:8080/ You'll get a blank browser page - there is nothing :) Therefore you need to open one of the existing apps - e.g. partymgr, accounting, webtools, etc. Then you'll get links to all the others . -- Deyan On Sun,

Re: Ofbiz4.0

2009-07-12 Thread Deyan Tsvetanov
Hi there, you should first check if the issues are already present at JIRA. What is the error message ? -- deyan -Original Message- From: snowch sno...@coralms.com Reply-to: user@ofbiz.apache.org To: user@ofbiz.apache.org Subject: Re: Ofbiz4.0 Date: Sun, 12 Jul 2009 07:05:52 -0700

Re: Custom entity ID generator

2009-06-26 Thread Deyan Tsvetanov
package-name=org.ofbiz.party.party title=Party Entity sequence-bank-size=1 Perhaps I should focus more on documenting :)) Thanks for your support, Deyan On Thu, 2009-06-25 at 15:14 +0200, Jacques Le Roux wrote: Yes please do Jacques From: Deyan Tsvetanov

Re: Custom entity ID generator

2009-06-25 Thread Deyan Tsvetanov
Hi guys, so - any comments on the suggested improvement ? If no than probably I could open a jira enhancement issue and attach a patch ? -- deyan On Mon, 2009-06-22 at 22:46 +0300, Deyan Tsvetanov wrote: Hi David, i am currently not referring only business organizations but government

Re: Custom entity ID generator

2009-06-22 Thread Deyan Tsvetanov
Good luck Jacques From: Deyan Tsvetanov deyan.tsveta...@ittconsult.com Exactly, I knew I've seen it somewhere :) Enforced Sequence (no gaps, per organization) Thanks guys, I'll have a look at it. Another question: do you have any idea how this enforced sequence might

Re: Custom entity ID generator

2009-06-22 Thread Deyan Tsvetanov
-06-22 at 17:30 +0300, Deyan Tsvetanov wrote: Hi again, finally I used GenericDelegator.getNextSeqIdLong() when creating entities. It does increment the sequence by 1. However today I noticed, that in the database - sequence_value_item table - the seq_id value gets incremented by 10

Re: Custom entity ID generator

2009-06-22 Thread Deyan Tsvetanov
the SequenceBank - to add additional feature to that class. Cheers, Deyan On Mon, 2009-06-22 at 09:35 -0700, BJ Freeman wrote: take a look at accountingglobalGLSettingsAssign GL Account Accounting Preferences Invoice Sequence Deyan Tsvetanov sent the following on 6/22/2009 7:30 AM: Hi

Re: Custom entity ID generator

2009-06-22 Thread Deyan Tsvetanov
an interesting idea, although it makes me wonder... why not just use the same technique that the getNextInvoiceId service uses? -David On Jun 22, 2009, at 9:01 AM, Deyan Tsvetanov wrote: I recall my comment about the sequences thread safety - in case we start 2 ofbiz instances against

Re: Custom entity ID generator

2009-06-22 Thread Deyan Tsvetanov
code exists to take care of those cases. Which other cases are you trying to address? -David On Jun 22, 2009, at 12:39 PM, Deyan Tsvetanov wrote: well, it's easier for me to just copy+paste the getNextInvoiceSeq service, but i wanted to use a general sollution - less code to worry

Custom entity ID generator

2009-06-13 Thread Deyan Tsvetanov
Hi list, I'd like to use a custom ID generator - for instance rather to start from 1 and increment by 10 I'd like to start from 0, increment by 1 leaving no empty values and probably append some other rules - like to reset to 0 in the beginning of each year and prefix the returned ID by the

Re: Custom entity ID generator

2009-06-13 Thread Deyan Tsvetanov
Looks like the best way to do it is to use the GenericDelegator but with a custom org.ofbiz.entity.util.SequenceUtil ... On Sat, 2009-06-13 at 14:44 +0300, Deyan Tsvetanov wrote: Hi list, I'd like to use a custom ID generator - for instance rather to start from 1 and increment by 10 I'd

Re: Custom entity ID generator

2009-06-13 Thread Deyan Tsvetanov
on 6/13/2009 5:15 AM: Take a look at the party/organization accounting preferences in the Accounting Manager. If you're looking for this sort of sequencing for invoices, orders, etc then it is already supported. -David On Jun 13, 2009, at 5:44 AM, Deyan Tsvetanov wrote: Hi

POS Setup question

2009-06-08 Thread Deyan Tsvetanov
Hi all, I am trying to setup POS terminal and I have some questions of which I couldn't find the answers myself. 1) Where is the relation between the PosTerminal and the ProductStore created ? In PosTerminal there is a field: facilityId ( which should be a facility of type RETAIL_STORE ).

Re: POS Setup question

2009-06-08 Thread Deyan Tsvetanov
Well, I'll recall my 2nd question: seems like the needed parts of PosSyncSettings.xml could be loaded in WebTools - Entity Engine Tools - XML Data Import. -- deyan On Mon, 2009-06-08 at 18:07 +0300, Deyan Tsvetanov wrote: Hi all, I am trying to setup POS terminal and I have some

Re: POS Setup question

2009-06-08 Thread Deyan Tsvetanov
that you must choose a facility. Vince Clark vcl...@globalera.com (303) 493-6723 - Original Message - From: Deyan Tsvetanov deyan.tsveta...@ittconsult.com To: user@ofbiz.apache.org Sent: Monday, June 8, 2009 9:18:11 AM GMT -07:00 US/Canada Mountain Subject: Re: POS Setup

Re: Multiple OFBiz instances running on a single machine

2009-06-02 Thread Deyan Tsvetanov
wrote: Deyan I'm curious to know why you are running multiple instances in this way. Have you considered virtualisation? Vince Clark vcl...@globalera.com (303) 493-6723 - Original Message - From: Deyan Tsvetanov deyan.tsveta...@ittconsult.com To: user@ofbiz.apache.org

Re: Multiple OFBiz instances running on a single machine

2009-06-02 Thread Deyan Tsvetanov
: I must have missed something... where is the Jira issue for the patch you submitted and who rejected it? -David On Jun 1, 2009, at 9:58 AM, Deyan Tsvetanov wrote: Hi again, I'm sorry for delaying the thread, I was pretty busy the last few days ... It happens :) So back

Re: Multiple OFBiz instances running on a single machine

2009-06-01 Thread Deyan Tsvetanov
Hi again, I'm sorry for delaying the thread, I was pretty busy the last few days ... It happens :) So back to the discussion: As I mentioned *ALL* the containers can be configured which network interfaces to bind to: ajp ( 8009 ), http ( 8080 ), https ( 8443 ), iiop ( 2000 ). The only

Re: Multiple OFBiz instances running on a single machine

2009-05-26 Thread Deyan Tsvetanov
basically taken right out of the docs (albeit somewhere :) ). Cheers, Tim -- Tim Ruppert HotWax Media http://www.hotwaxmedia.com o:801.649.6594 f:801.649.6595 - Deyan Tsvetanov deyan.tsveta...@ittconsult.com wrote: I will definitely use AJP for production ! That's out of question

Multiple OFBiz instances running on a single machine

2009-05-25 Thread Deyan Tsvetanov
Hi list, I am trying to run 2 ofbiz instances on the same server. Ideally I would make all the containers ( framework/base/config/ofbiz-containers.xml ) bind on a specified host ( virtual interface ) instead of * or 0.0.0.0. Before I start digging in that direction however I'd like to as if

Re: Multiple OFBiz instances running on a single machine

2009-05-25 Thread Deyan Tsvetanov
, 2009-05-25 at 18:43 +0530, Ashish Vijaywargiya wrote: Sure, Let us know what you found, when you are done. BTW your name is very nice Deyan -- Ashish Deyan Tsvetanov wrote: Hi Ashish, thanks for your reply . As I can see you have chosen the approach to change the port

Re: Multiple OFBiz instances running on a single machine

2009-05-25 Thread Deyan Tsvetanov
I will definitely use AJP for production ! That's out of question :) The problem is that you have only one localhost and only one 8009 port can be bound. For the 2nd OFBiz instance you have to 8009++ ( increase ) . But then you have the RMI port to take care of - if you start 2nd ofbiz

Re: Data model question: shipment_route_segment - vehicle link

2009-05-12 Thread Deyan Tsvetanov
. otherwise it is shipvia using a carrier ship method look on page 217 fixed asset assignments. Deyan Tsvetanov sent the following on 5/11/2009 1:46 PM: P.S. I'm sorry , forgot to include the details ... The book - pages 178 - 181 ( Shipment Routing and Shipment Vehicle

  1   2   >