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 wrote: Hi Dyan

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" wrote: hi bj Thanks for your help. With regards, S K Pradeep kumar, 9980609494 On Tue, Sep 28, 2010 at 11:43 PM, BJ F

Re: Entity Engine: GenericDuplicateKeyException

2010-07-22 Thread Deyan Tsvetanov
ntViolationException was added in Java 6. Any JDBC > > drivers written before Java 6 will not use it. > > > > -Adrian > > > > --- On Mon, 7/19/10, Deyan Tsvetanov wrote: > > > >> From: Deyan Tsvetanov > >> Subject: Re: Entity Engine: GenericDu

Re: Add created_by and updated_by to all tables ?

2010-07-21 Thread Deyan Tsvetanov
ve 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 Tsv

Re: Add created_by and updated_by to all tables ?

2010-07-21 Thread Deyan Tsvetanov
rds related to the action from the EntityAuditLog. > >> > >> #2 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 > >> r

Re: Add created_by and updated_by to all tables ?

2010-07-21 Thread Deyan Tsvetanov
og. > > #2 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/2

Re: Add created_by and updated_by to all tables ?

2010-07-20 Thread Deyan Tsvetanov
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 locking and record based security ? >

Re: Add created_by and updated_by to all tables ?

2010-07-19 Thread Deyan Tsvetanov
Jones 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 1

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

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 ne

Re: Add created_by and updated_by to all tables ?

2010-07-19 Thread Deyan Tsvetanov
two fields, in > my opinion. > > Deyan Tsvetanov sent the following on 7/19/2010 8:42 AM: > >> Many entities data is not created without a dependence on another one > >> so those should not need those two fields. > > > > This one i didn't understand :)

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 A

Re: Add created_by and updated_by to all tables ?

2010-07-19 Thread Deyan Tsvetanov
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 fiel

Re: Entity Engine: GenericDuplicateKeyException

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

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 crea

Re: Entity Engine: GenericDuplicateKeyException

2010-07-19 Thread Deyan Tsvetanov
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 wrote: > > > From: Deyan Tsvetanov > > Subject: Entity Engine: GenericDuplicateKeyException > > To: us

Re: Entity Engine: GenericDuplicateKeyException

2010-07-19 Thread Deyan Tsvetanov
imary key 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, De

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 n

Re: EntityEngine field types

2010-06-11 Thread Deyan Tsvetanov
010 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 want to use. > > Cheers, >

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 emai

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 ?

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

2010-06-01 Thread Deyan Tsvetanov
ht that more work will be necessary 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

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 th

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

2010-05-31 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 still

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

2010-05-31 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: > (start

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

2010-05-31 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 g

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:

Re: Postgresql errors with trunk, any ideas?

2010-05-24 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: 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 exampl

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: 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 y

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 access

Re: ofbiz auction functionality

2010-05-18 Thread Deyan Tsvetanov
lementation? > > Many thanks, > > Chris > > On Tue, May 18, 2010 at 3:00 PM, Deyan Tsvetanov > wrote: > > > Hi Chris, > > > > I have researched the auctions case. It is quite possible to implement > > auctions on top of ofbiz without modifying the

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 table

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

2010-05-09 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

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 assi

Re: Seed Data Load very slow in Ubuntu 10.04

2010-05-03 Thread Deyan Tsvetanov
postgre runs slightly faster on ext3 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=article&item=linux_perf_regressio

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=article&item=linux_perf_regressions&num=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?p

Re: Seed Data Load very slow in Ubuntu 10.04

2010-05-03 Thread Deyan Tsvetanov
http://www.phoronix.com/scan.php?page=article&item=ubuntu_lucid_alpha2&num=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: Question regarding Catalog management in Ofbiz

2010-05-02 Thread Deyan Tsvetanov
t checked that as far as I don't have time for this at the moment. > Anyway, single query is the best solution. Databases are optimised for > operations like that and we should use it. > > > Regards, > Michał > > 2010/5/1 Deyan Tsvetanov > > > 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
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 eac

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: ofbiz entity sync.

2010-04-07 Thread Deyan Tsvetanov
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 > ( >

Re: ofbiz entity sync.

2010-04-07 Thread Deyan Tsvetanov
d_id ). If there is an error then we know at which statement the error has happened - the next after the last successful one. That's all in general. -- deyan -Original Message- From: Jacques Le Roux Reply-to: "Jacques Le Roux" To: Deyan Tsvetanov , user@ofbiz.apache.org Cc: Han

Re: JUNK->Re: ofbiz entity sync.

2010-04-07 Thread Deyan Tsvetanov
-Original Message- From: Jacques Le Roux Reply-to: "Jacques Le Roux" To: user@ofbiz.apache.org Subject: Re: JUNK->Re: ofbiz entity sync. Date: Tue, 6 Apr 2010 21:30:24 +0200 From: "Deyan Tsvetanov" > Hi Adrian, > > yes , my current approach is datab

Re: JUNK->Re: ofbiz entity sync.

2010-04-06 Thread Deyan Tsvetanov
d it, also it's pretty easy to verify :) -- deyan -Original Message- From: Adrian Crum 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, > > y

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 sugg

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 Bakker

Re: Entity Sync

2009-10-28 Thread Deyan Tsvetanov
roach would eliminate the system clock issues and graph generation. -- deyan -Original Message- From: Deyan Tsvetanov Reply-to: user@ofbiz.apache.org To: Jacques Le Roux Cc: user@ofbiz.apache.org Subject: Re: Entity Sync Date: Wed, 28 Oct 2009 09:31:01 +0200 Yup, we all thank you :)

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 -Original

Re: EntitySync issues & suggestions ( was EntitySync RMI error )

2009-10-26 Thread Deyan Tsvetanov
ginal Message- From: Jacques Le Roux Reply-to: "Jacques Le Roux" To: Deyan Tsvetanov , 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 will need to use EntityS

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 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 the following problem: We

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 provi

Re: deploying ofbiz in amazon EC2

2009-10-05 Thread Deyan Tsvetanov
pplication+Servers No guarantee for the Tomcat page ... (seems to be some problems nowadays) Jacques From: "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 no

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 Sent: 05 Октомври 2009 г. 18:59 To: user@ofbiz.apache.org Subject: de

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

EntitySync issues & suggestions ( was EntitySync RMI error )

2009-10-04 Thread Deyan Tsvetanov
t: Re: EntitySync RMI error Date: Sun, 27 Sep 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 Ts

Re: EntitySync RMI error

2009-09-29 Thread Deyan Tsvetanov
will eventually take care to put it under FAQ... TIA Jacques From: "Deyan Tsvetanov" >I found an issue though: > > If the connection gets dropped during sync : > - the client ( POS ) prints connection reset by peer > - the server ( MCS ) sync status remains to run

Re: EntitySync RMI error

2009-09-26 Thread Deyan Tsvetanov
quot; from 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 T

Re: EntitySync RMI error

2009-09-26 Thread Deyan Tsvetanov
n 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 Reply-to: user@ofbiz.apache.org To: user@ofbiz.apache.org Subject: Re: EntitySync RMI error

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 Reply-to: user

EntitySync RMI error

2009-09-25 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 ). 3

Re: POS sales order completion

2009-09-25 Thread Deyan Tsvetanov
: 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" > Well, my current problem is that that part

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 Reply-to: user@ofbiz.apache.org To: user@ofbiz.apache.o

Re: POS sales order completion

2009-09-25 Thread Deyan Tsvetanov
;m afraid there are currently no easy solutions for your pb Jacques From: "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

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 sta

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 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 -Orig

Re: POS panel for 800 x 600 resolution

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

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 use

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. Thank

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 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 suggestion is you try this o

Re: Where can we use this

2009-07-29 Thread Deyan Tsvetanov
Wrong thread, sorry :) Please ignore . -Original Message- From: Deyan Tsvetanov 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 sophisticated in error messaging than

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 Reply-to: user@ofbiz.apache.org To: user@ofbiz.apache.org Subject: Where can we use this Date: Sat, 25 Jul 2009 16:01:24 +0530

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 Reply-to: user@ofbiz.apache.org To: user@ofbiz.apache.org Subject: Re: Ofbiz4.0 Date: Sun, 12 Jul 2009 07:05:52 -0700 (PDT) Is 9.04 consi

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, 2009-0

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:

Re: Custom entity ID generator

2009-06-26 Thread Deyan Tsvetanov
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" > > Hi guys, > > > > so - any comments on the suggested improvement ?

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 organiza

Re: Custom entity ID generator

2009-06-22 Thread Deyan Tsvetanov
en certain others like returns and > orders, and that is why 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

Re: Custom entity ID generator

2009-06-22 Thread Deyan Tsvetanov
ent: 22.6.'09, 21:22 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 of

Re: Custom entity ID generator

2009-06-22 Thread Deyan Tsvetanov
g 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 > accounting>globalGLSettings>Assign GL Account> Accounting Preferences > Invoice Sequence > > > > Deyan Tsvetanov s

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 > tab

Re: Custom entity ID generator

2009-06-22 Thread Deyan Tsvetanov
e even very detailled > > Good luck > > Jacques > > From: "Deyan Tsvetanov" > > Exactly, I knew I've seen it somewhere :) > > "Enforced Sequence (no gaps, per organization)" > > > > Thanks guys, > > I'll have a look

Re: Custom entity ID generator

2009-06-13 Thread Deyan Tsvetanov
counting Preferences > > David E Jones sent the following 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

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 an

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 c

Re: POS Setup question

2009-06-08 Thread Deyan Tsvetanov
oduct store setup you will see that you must > choose a facility. > > > Vince Clark > vcl...@globalera.com > (303) 493-6723 > > - Original Message - > From: "Deyan Tsvetanov" > To: user@ofbiz.apache.org > Sent: Monday, June 8, 2009 9

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 term

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 ). I

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 p

Re: Multiple OFBiz instances running on a single machine

2009-06-02 Thread Deyan Tsvetanov
ince Clark 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: "Deya

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 contain

Re: Multiple OFBiz instances running on a single machine

2009-05-26 Thread Deyan Tsvetanov
t; happen - but it's 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" wrote

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 instance

Re: Multiple OFBiz instances running on a single machine

2009-05-25 Thread Deyan Tsvetanov
s 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 chang

Re: Multiple OFBiz instances running on a single machine

2009-05-25 Thread Deyan Tsvetanov
Hi Ashish, thanks for your reply . As I can see you have chosen the approach to change the port numbers. I am currently trying the 2nd one - to bind all the ports to a single virtual interface by removing all the localhost, 127.0.0.1 and 0.0.0.0 occurances. Currently I am stuck on the RMI re

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 so

  1   2   >