Re: How to get more then 20 record in the csv view use of form widget

2009-06-25 Thread Brajesh Patel
Hello Chirag,
List contain more then 50 records. and we can not set hard coded value in
the view-size attribute because list size dynamically change.
--
Brajesh Patel

On Fri, Jun 26, 2009 at 11:39 AM, Chirag Manocha
wrote:

> Hello Brajesh,
> Please check that list generated for CSV view is having records more than
> 20. If list is generating only 20 records then you have to set the value of
> view-size = null before generating list. By default view-size is 20.
>
> Regards
> --
> Chirag Manocha
> HotWax Media Pvt. Ltd.
> Website :- www.hotwaxmedia.com
> Contact :- +91-98263-19099
>
>
>
> On Fri, Jun 26, 2009 at 11:26 AM, Brajesh Patel  >wrote:
>
> > Hello,
> > I am working on form widget for generating CSV view, for that I have
> > prepared list in form widget and generate the CSV view also use
> > "paginate="false"" attribute.
> > Generated view does not have more then 20 records but I want to display
> all
> > record from that my list contains that is more then 20 records.
> >
> > Please provide suggestion how to get all record from list in the csv view
> > use of form widget.
> >
> > ---
> > Brajesh Patel
> >
>


non pk values not getting saved when using a simple method.

2009-06-25 Thread SRINIKALLS

I have created a java program that calls a simple method to create an
agreement , The agreement is getting created but only with the Agreement ID
, Agrement Type and PartyID to values , other values like description and
other details are not getting created in the Agreement table though I have
passed all the values in the Map.
This is not the case with this simple method it is the case with many simple
methods where nonpk fields are being ignored while inserting , any leads or
inputs on this would be helpful.
thanks 
Srinivas
-- 
View this message in context: 
http://www.nabble.com/non-pk-values-not-getting-saved-when-using-a-simple-method.-tp24215486p24215486.html
Sent from the OFBiz - User mailing list archive at Nabble.com.



Re: How to get more then 20 record in the csv view use of form widget

2009-06-25 Thread Chirag Manocha
Hello Brajesh,
Please check that list generated for CSV view is having records more than
20. If list is generating only 20 records then you have to set the value of
view-size = null before generating list. By default view-size is 20.

Regards
-- 
Chirag Manocha
HotWax Media Pvt. Ltd.
Website :- www.hotwaxmedia.com
Contact :- +91-98263-19099



On Fri, Jun 26, 2009 at 11:26 AM, Brajesh Patel wrote:

> Hello,
> I am working on form widget for generating CSV view, for that I have
> prepared list in form widget and generate the CSV view also use
> "paginate="false"" attribute.
> Generated view does not have more then 20 records but I want to display all
> record from that my list contains that is more then 20 records.
>
> Please provide suggestion how to get all record from list in the csv view
> use of form widget.
>
> ---
> Brajesh Patel
>


How to get more then 20 record in the csv view use of form widget

2009-06-25 Thread Brajesh Patel
Hello,
I am working on form widget for generating CSV view, for that I have
prepared list in form widget and generate the CSV view also use
"paginate="false"" attribute.
Generated view does not have more then 20 records but I want to display all
record from that my list contains that is more then 20 records.

Please provide suggestion how to get all record from list in the csv view
use of form widget.

---
Brajesh Patel


Re: Component not loading

2009-06-25 Thread Vivek Mishra

Hi,

Could you please post your ofbiz-component.xml file entry here?
Thanks!

Regards,
-- Vivek Mishra

su2 wrote:
Hi All, 
 
I have added a new component under hot-deploy named practice. 
 
I added ofbiz-component.xml file with location="webapp/practice" and
mount-point="/practice" 
 
I added practice>webapp>practice>WEB-INF>controller.xml & web.xml 
 
I added practice>widget>PracticeSreens.xml 
 
I started the server using java -Xmx256M -jar ofbiz.jar command. 
 
but I get following error message. 
 
* 
HTTP Status 404 - /practice/control/main 
 
type Status report 
 
message /practice/control/main 
 
description The requested resource (/practice/control/main) is not
available. 
*** 
 
Some how my newly added component is not able to load.  
 
Does anybody have idea on this? 
 
I really appreciate your help. 
 
Thanks in advance. 
  


smime.p7s
Description: S/MIME Cryptographic Signature


Slow EntityListIterator

2009-06-25 Thread Daniel Riquelme
Hi,

I have 4.000.000+ Sales Orders I need to migrate to ofbiz.-
I've already have set up an Oracle database with the data.
The problem is that when I click on the ordermgr link the page never
displays, the browser keeps waiting for ever.
Eventually, the transactions gets timed out.

I've been investigating this problem and found that is not common.

I'm using the oracle driver version 11.1 with default ofbiz configuration.
The database is oracle 10g r2.

I came to the conclusion that my database is not configured properly.
Nevertheles I would like to share this problem with you, perhaps there is a
simple solution to it that I'am missing.

I have already read the posts regarding fetch size configuration. I've
tested with fetch-size=50 and fetch-size=500 with no results.

An ofbiz debug shows that the slow operation is in:
org.ofbiz.entity.datasource.selectListIteratorByCondition

The call that never returns is:
sqlP.executeQuery();

The SQL query is (as reported by oracle):
SELECT DISTINCT ORDER_ID, ORDER_TYPE_ID, ORDER_NAME, EXTERNAL_ID,
SALES_CHANNEL_ENUM_ID, ORDER_DATE, ENTRY_DATE, VISIT_ID, STATUS_ID,
CREATED_BY, FIRST_ATTEMPT_ORDER_ID, CURRENCY_UOM, SYNC_STATUS_ID,
BILLING_ACCOUNT_ID, ORIGIN_FACILITY_ID, WEB_SITE_ID, PRODUCT_STORE_ID,
TERMINAL_ID, TRANSACTION_ID, AUTO_ORDER_SHOPPING_LIST_ID,
NEEDS_INVENTORY_ISSUANCE, IS_RUSH_ORDER, INTERNAL_CODE, REMAINING_SUB_TOTAL,
GRAND_TOTAL, LAST_UPDATED_STAMP, LAST_UPDATED_TX_STAMP, CREATED_STAMP,
CREATED_TX_STAMP, RECIBIR_BODEGAL, RECEPCIONADA_BODEGAL,
FECHA_RECEPCION_BODEGAL FROM ERP.ORDER_HEADER WHERE ((STATUS_ID = :v0 OR
STATUS_ID = :v1 OR STATUS_ID = :v2) AND (ORDER_TYPE_ID = :v3)) ORDER BY
ORDER_DATE DESC

Oracle reports that the session is waiting on a:
db file scattered read


I'm not an expert on this subject.
Any one has a tip ?

Thanks,
Daniel


Re: email senders address?

2009-06-25 Thread Olivier Michel
Hi !

It's in the entity ProductStoreEmailSettings.
You have access to it in the admin GUI: Content - Stores - Email

Regards
  Olivier Michel
  Cypoint AB

On Thu, Jun 25, 2009 at 8:48 PM, Todd Burdeinei wrote:

> Hello All,
> Where do you set the 'from' address for emails set by the system. I thought
> this would be in the setup guide, but it isn't
> Many thanks for your help.
>
> --
> Todd Burdeinei
> Web Developer
> Burdeinei Corp
> 702-259-3273 office / fax number
> 702-372-9920 cell
> t...@burdeinei.com
>


email senders address?

2009-06-25 Thread Todd Burdeinei
Hello All,
Where do you set the 'from' address for emails set by the system. I thought
this would be in the setup guide, but it isn't
Many thanks for your help.

-- 
Todd Burdeinei
Web Developer
Burdeinei Corp
702-259-3273 office / fax number
702-372-9920 cell
t...@burdeinei.com


Component not loading

2009-06-25 Thread su2

Hi All, 
 
I have added a new component under hot-deploy named practice. 
 
I added ofbiz-component.xml file with location="webapp/practice" and
mount-point="/practice" 
 
I added practice>webapp>practice>WEB-INF>controller.xml & web.xml 
 
I added practice>widget>PracticeSreens.xml 
 
I started the server using java -Xmx256M -jar ofbiz.jar command. 
 
but I get following error message. 
 
* 
HTTP Status 404 - /practice/control/main 
 
type Status report 
 
message /practice/control/main 
 
description The requested resource (/practice/control/main) is not
available. 
*** 
 
Some how my newly added component is not able to load.  
 
Does anybody have idea on this? 
 
I really appreciate your help. 
 
Thanks in advance. 
-- 
View this message in context: 
http://www.nabble.com/Component-not-loading-tp24206689p24206689.html
Sent from the OFBiz - User mailing list archive at Nabble.com.



Re: Utility Billing

2009-06-25 Thread Ruth Hoffman

Hi Gavin:
For the project I worked on they had not thought about having pricing 
schemes as you describe. All charges were based on fixed rates 
regardless of the levels of consumption.  Maybe someone on the list has 
some ideas about the best way to do this. For starters, I'd say you 
could build some price rules per product [where the product is the 
service you are metering] with varying charges based on consumption. You 
could  use the Catalog Manager's price rules engine to build and persist 
the rules. And then, when you go to reconcile the bill, just consult the 
pricing rule(s) - since they are now associated with the product/service 
- for resolving the billing charge. As I think on this, the good news is 
that there are probably ten different ways to solve this problem. Maybe 
someone on the list has done this already and can advise.


Hope this helps.
Ruth
Gavin Mabie wrote:

Thanks Ruth.

Additionally - how would you go about dealing with stepped pricing:
Once you Ofbiz receives consumption numbers - how can pricing be configured
to deal with
Eg. 0 USD for the first 500 units;
5 USD for the next 1000 units
3 UDS for every unit above that.

Thanks for your assistance.

Gavin



-Original Message-
From: Ruth Hoffman [mailto:rhoff...@aesolves.com] 
Sent: 17 June 2009 06:09 PM

To: user@ofbiz.apache.org
Subject: Re: Utility Billing

Hi Gavin:
I did something similar to utility billing as you describe below - 
billing for telephone services - a few years ago with OFBiz. The usage 
data for a customer's bill came from another system accessed using some 
SOAP based services. I would think that meter readings using PDAs, cell 
phones or other devices that support a browser could be easily 
integrated as BJ suggests. Building the screens to allow remote entry of 
usage data via a small screen browser is easy enough. In another project 
- as a prototype - I was easily able to integrate an SMS server with 
OFBiz so that field technicians could send OFBiz messages (in this case 
service related status messages) using SMS and a cellphone (vs. a 
browser). That is another option.


Managing the recurring billing was handled using an OFBiz recurring 
service that I wrote (but was managed by the OFBiz Service Engine). The 
original order as placed using the eCommerce component  or Order Entry 
component was the basis for the customer's billing rate, frequency and 
payment method and...let me see, what else? Then I built a self-service 
portal similar to what is now being advertised as the "myPortal" feature 
to allow customer's to view and update current service parameters,  view 
past and current usage and bills and pay online.


There was no need for me to add any Entities - although OFBiz makes that 
so easy it's not funny. OFBiz pretty much had everything I needed to put 
this together.


Hope that helps.
Ruth


BJ Freeman wrote:
  

look at the profession services product.
then you can make something similar to the hhfacilities for order entry
so they can fill in using a pda/cellphone with webrowser as they read
the meters.

Gavin Mabie sent the following on 6/17/2009 7:43 AM:
  


Hi

 


Is it possible to use OfBiz for utility billing.  The requirement would
  

be
  

that a large number of customers are billed monthly for utilities such as
water, electricity gas etc, based on consumption obtained through
meter-readings.  Can ofbiz address this need and how could existing
artefacts in the framework be used to achieve this?

 


Thanks



  
  






  




Re: contribution to ofbiz

2009-06-25 Thread David E Jones


I guess I still don't know the answer to the question: what is it that  
you would like to contribute to OFBiz?


Are you saying you want to make Cmon a part of OFBiz? Are you saying  
that you have an OFBiz add-on that uses Cmon and that is what you'd  
like to contribute?


-David


On Jun 24, 2009, at 11:30 PM, i...@javaapplicationmonitor.com wrote:


Hi,

Cmon is a monitoring tool by which all the application exceptions  
are catched and logged with runtime data

moreover it displays class/method/line level execution performance.

this is the direct demo(ofbiz implementation) link

http://92.44.204.186:8080/sfa/control/main/cmon?action=displayMain

cmon presentation file and binaries are available at
http://sourceforge.net/projects/javamonitoring/

Regards,


- Original Message -
From: David E Jones [mailto:d...@me.com]
To: user@ofbiz.apache.org
Sent: Wed, 24 Jun 2009 16:38:51 -0600
Subject: Re: contribution to ofbiz


This sounds interesting, but I'm a little confused: what is it that
you would like to contribute to OFBiz?

-David


On Jun 24, 2009, at 1:14 PM, i...@javaapplicationmonitor.com wrote:


Hello,

we would like to contribute to ofbiz as code monitoring tool.
we have successfully implemented our monitoring tool called cmon on
ofbiz ERP solution.
we believe that ofbiz can benefit from cmon implementation in terms
of solving bugs
and performance issues.

Cmon modifies classes and jar files that are defined on
configuration page by using
java byte code injection apis so that code level monitoring is
enabled.

Cmon has many facilities and features,It has been tested for 7 months
on a clustered multiuser environment.


you can also download and implement cmon on the site 
http://sourceforge.net/projects/javamonitoring/
Installing cmon is very simple, we can help you to make the
configuration.

It is possible to customize cmon according to needs of ofbiz.

You can also view cmon demo on the web site 
http://www.javaapplicationmonitor.com


If you have any question or evaluation on cmon, do not hesitate to
contact us by sending an e-mail to i...@javaapplicationmonitor.com



Regards,







Re: contribution to ofbiz

2009-06-25 Thread info
Hi,

Cmon is a monitoring tool by which all the application exceptions are catched 
and logged with runtime data
moreover it displays class/method/line level execution performance.

this is the direct demo(ofbiz implementation) link

http://92.44.204.186:8080/sfa/control/main/cmon?action=displayMain

cmon presentation file and binaries are available at
http://sourceforge.net/projects/javamonitoring/

Regards,


- Original Message -
From: David E Jones [mailto:d...@me.com]
To: user@ofbiz.apache.org
Sent: Wed, 24 Jun 2009 16:38:51 -0600
Subject: Re: contribution to ofbiz


This sounds interesting, but I'm a little confused: what is it that
you would like to contribute to OFBiz?

-David


On Jun 24, 2009, at 1:14 PM, i...@javaapplicationmonitor.com wrote:

> Hello,
>
> we would like to contribute to ofbiz as code monitoring tool.
> we have successfully implemented our monitoring tool called cmon on
> ofbiz ERP solution.
> we believe that ofbiz can benefit from cmon implementation in terms
> of solving bugs
> and performance issues.
>
> Cmon modifies classes and jar files that are defined on
> configuration page by using
> java byte code injection apis so that code level monitoring is
> enabled.
>
> Cmon has many facilities and features,It has been tested for 7 months
> on a clustered multiuser environment.
>
>
> you can also download and implement cmon on the site 
> http://sourceforge.net/projects/javamonitoring/
> Installing cmon is very simple, we can help you to make the
> configuration.
>
> It is possible to customize cmon according to needs of ofbiz.
>
> You can also view cmon demo on the web site 
> http://www.javaapplicationmonitor.com
>
>
> If you have any question or evaluation on cmon, do not hesitate to
> contact us by sending an e-mail to i...@javaapplicationmonitor.com
>
>
>
> Regards,
>



Re: Custom entity ID generator

2009-06-25 Thread Jacques Le Roux

Yes please do

Jacques

From: "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
organizations as well. Ridiculous but still organizations ( and
customers :)

I'll give you an example: documents management - each incoming document
MUST get an incoming number which MUST be sequential with no gaps ( so
they can track the order the docs were received and make sure nobody
fakes the date, or at least this was the way it was done 100 years ago
when all the registers were on paper :)

then you get outgoing documents - same thing.

Then you get support ticket numbers: the organization must issue an
incoming ticket number to the ticket creator - either on paper, signed
and stamped, or via e-mail - digitally signed. The number has to has no
gaps - in case it gets argued or goes to court ... or whatever.

I could quote hundreds of cases which no gaps are required by our lovely
government agencies and organizations. The country is called Bulgaria :)

So my current project is related to bailiffs. These guys in general are
a private business, but most of their activities are defined by the law.
So the law tells them how they should number their cases - I can't argue
- i'm just a programmer :) Neither could they - they'll loose their
license if they don't comply. 


It's the same story with invoicing, it's the same story even with bus or
cinema tickets printing ! :)

Did I manage to answer your question  ?  




On Mon, 2009-06-22 at 13:02 -0600, David E Jones wrote: 
> Deyan,
> 
>   I still can't figure out what you are trying to do. You mentioned  
> that countries have a requirement for no gaps in ID values, but which  
> ID values are you referring to? I know such requirements exist for  
> things like invoice IDs and even 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 for me to just copy+paste the getNextInvoiceSeq service,  
> > but i wanted to use a general sollution - less code to worry  
> > about :) and it thist feature would be definitelly used, lot of  
> > countries have the requirement for no gaps in ids.

> >
> > also there is an requirement to re-start the counter on certain  
> > periods. for example id should be year+sequence id.

> >
> > in getNextInvoiceId that's implemented. i thought of suggesting this  
> > feature as well, but theb i thought - it's pretty easy to make a  
> > service and schedule it yearly... so that goes away. but the  
> > SequenceBankSize prop i do think will be useful, so if you guyz  
> > agree than i'll go ahead and implement it. i'll do it anyway - i  
> > need this feature for a project :)

> >
> > -- deyan
> > --- Original message ---
> >> From: David E Jones 
> >> To: user@ofbiz.apache.org
> >> Cc: jacques.le.r...@les7arts.com
> >> Sent: 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 ofbiz instances against the same database :)
> >>>
> >>> But the 1st issue remains - configuring the sequence bank size for
> >>> specific entities.
> >>>
> >>> I suggest adding a new column in SequenceValueItem - bank_size.
> >>> If it is set to 0 than SequenceUtil will not create a SequenceBank  
> >>> for
> >>> that entity but will read the current seq_id from the database   
> >>> instead.
> >>> This is needed to ensure there will be no gaps in the sequence IDs  
> >>> for
> >>> entities that do require no gaps because of legal requirements in  
> >>> some

> >>> countries :)
> >>>
> >>> -- deyan
> >>>
> >>> On Mon, 2009-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.
> 
>  The reason is that the org.ofbiz.entity.util.SequenceUtil class  
>  creates

>  a SequenceBank with the default value ot 10 IDs.
> 
>  This is a MAJOR problem. It would appear if the server dies or  
>  gets a
>  hard restart for some reason ( or even JVM error ) - we'll end  
>  up  with

>  gaps.
> 
>  I couldn't find any API that forces the SequenceUtil to create a
>  SequnenceBank sized to 1 . Is there

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
> organizations as well. Ridiculous but still organizations ( and
> customers :)
> 
> I'll give you an example: documents management - each incoming document
> MUST get an incoming number which MUST be sequential with no gaps ( so
> they can track the order the docs were received and make sure nobody
> fakes the date, or at least this was the way it was done 100 years ago
> when all the registers were on paper :)
> 
> then you get outgoing documents - same thing.
> 
> Then you get support ticket numbers: the organization must issue an
> incoming ticket number to the ticket creator - either on paper, signed
> and stamped, or via e-mail - digitally signed. The number has to has no
> gaps - in case it gets argued or goes to court ... or whatever.
> 
> I could quote hundreds of cases which no gaps are required by our lovely
> government agencies and organizations. The country is called Bulgaria :)
> 
> So my current project is related to bailiffs. These guys in general are
> a private business, but most of their activities are defined by the law.
> So the law tells them how they should number their cases - I can't argue
> - i'm just a programmer :) Neither could they - they'll loose their
> license if they don't comply. 
> 
> It's the same story with invoicing, it's the same story even with bus or
> cinema tickets printing ! :)
> 
> Did I manage to answer your question  ?  
> 
> 
> 
> On Mon, 2009-06-22 at 13:02 -0600, David E Jones wrote: 
> > Deyan,
> > 
> >   I still can't figure out what you are trying to do. You mentioned  
> > that countries have a requirement for no gaps in ID values, but which  
> > ID values are you referring to? I know such requirements exist for  
> > things like invoice IDs and even 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 for me to just copy+paste the getNextInvoiceSeq service,  
> > > but i wanted to use a general sollution - less code to worry  
> > > about :) and it thist feature would be definitelly used, lot of  
> > > countries have the requirement for no gaps in ids.
> > >
> > > also there is an requirement to re-start the counter on certain  
> > > periods. for example id should be year+sequence id.
> > >
> > > in getNextInvoiceId that's implemented. i thought of suggesting this  
> > > feature as well, but theb i thought - it's pretty easy to make a  
> > > service and schedule it yearly... so that goes away. but the  
> > > SequenceBankSize prop i do think will be useful, so if you guyz  
> > > agree than i'll go ahead and implement it. i'll do it anyway - i  
> > > need this feature for a project :)
> > >
> > > -- deyan
> > > --- Original message ---
> > >> From: David E Jones 
> > >> To: user@ofbiz.apache.org
> > >> Cc: jacques.le.r...@les7arts.com
> > >> Sent: 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 ofbiz instances against the same database :)
> > >>>
> > >>> But the 1st issue remains - configuring the sequence bank size for
> > >>> specific entities.
> > >>>
> > >>> I suggest adding a new column in SequenceValueItem - bank_size.
> > >>> If it is set to 0 than SequenceUtil will not create a SequenceBank  
> > >>> for
> > >>> that entity but will read the current seq_id from the database   
> > >>> instead.
> > >>> This is needed to ensure there will be no gaps in the sequence IDs  
> > >>> for
> > >>> entities that do require no gaps because of legal requirements in  
> > >>> some
> > >>> countries :)
> > >>>
> > >>> -- deyan
> > >>>
> > >>> On Mon, 2009-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.
> > 
> >  The reason is that the org.ofbiz.entity.util.SequenceUtil class  
> >  creates
> >  a SequenceBank with the default value ot 10 IDs.
> > 
> >  This is a MAJOR problem. It would appear if the server dies or  
> >  gets a
> >  hard restart for some reason ( or even

open-for-government

2009-06-25 Thread Gavin Mabie
Can anyone tell me what the activity is like on the open for government
side;

Is there any references where anybody has deployed ofbiz in government
scenarios - especially local government?

 

Thanks



French translations

2009-06-25 Thread Matthieu Bollot
Hi,

I've started a "dictionary for french translations" here :
http://docs.ofbiz.org/display/~mattboll/Dictionary+for+French
+translations

Such as http://docs.ofbiz.org/display/OFBIZ/Dictionary+for+Dutch
+translations the purpose is to avoid misleading translations and to use
the same words whenever possible

Any feedback / help is welcome.



RE: Utility Billing

2009-06-25 Thread Gavin Mabie
Thanks Ruth.

Additionally - how would you go about dealing with stepped pricing:
Once you Ofbiz receives consumption numbers - how can pricing be configured
to deal with
Eg. 0 USD for the first 500 units;
5 USD for the next 1000 units
3 UDS for every unit above that.

Thanks for your assistance.

Gavin



-Original Message-
From: Ruth Hoffman [mailto:rhoff...@aesolves.com] 
Sent: 17 June 2009 06:09 PM
To: user@ofbiz.apache.org
Subject: Re: Utility Billing

Hi Gavin:
I did something similar to utility billing as you describe below - 
billing for telephone services - a few years ago with OFBiz. The usage 
data for a customer's bill came from another system accessed using some 
SOAP based services. I would think that meter readings using PDAs, cell 
phones or other devices that support a browser could be easily 
integrated as BJ suggests. Building the screens to allow remote entry of 
usage data via a small screen browser is easy enough. In another project 
- as a prototype - I was easily able to integrate an SMS server with 
OFBiz so that field technicians could send OFBiz messages (in this case 
service related status messages) using SMS and a cellphone (vs. a 
browser). That is another option.

Managing the recurring billing was handled using an OFBiz recurring 
service that I wrote (but was managed by the OFBiz Service Engine). The 
original order as placed using the eCommerce component  or Order Entry 
component was the basis for the customer's billing rate, frequency and 
payment method and...let me see, what else? Then I built a self-service 
portal similar to what is now being advertised as the "myPortal" feature 
to allow customer's to view and update current service parameters,  view 
past and current usage and bills and pay online.

There was no need for me to add any Entities - although OFBiz makes that 
so easy it's not funny. OFBiz pretty much had everything I needed to put 
this together.

Hope that helps.
Ruth


BJ Freeman wrote:
> look at the profession services product.
> then you can make something similar to the hhfacilities for order entry
> so they can fill in using a pda/cellphone with webrowser as they read
> the meters.
>
> Gavin Mabie sent the following on 6/17/2009 7:43 AM:
>   
>> Hi
>>
>>  
>>
>> Is it possible to use OfBiz for utility billing.  The requirement would
be
>> that a large number of customers are billed monthly for utilities such as
>> water, electricity gas etc, based on consumption obtained through
>> meter-readings.  Can ofbiz address this need and how could existing
>> artefacts in the framework be used to achieve this?
>>
>>  
>>
>> Thanks
>>
>>
>> 
>
>   





Re: contribution to ofbiz

2009-06-25 Thread Ján Valkovič
Thanks for nice explanation again, i was curious only :-)

ya

Dňa St, 2009-06-24 o 22:14 +0300, i...@javaapplicationmonitor.com
napísal:
> Hello,
> 
> we would like to contribute to ofbiz as code monitoring tool.
> we have successfully implemented our monitoring tool called cmon on ofbiz ERP 
> solution.
> we believe that ofbiz can benefit from cmon implementation in terms of 
> solving bugs
> and performance issues.
> 
> Cmon modifies classes and jar files that are defined on configuration page by 
> using
> java byte code injection apis so that code level monitoring is enabled.
> 
> Cmon has many facilities and features,It has been tested for 7 months
> on a clustered multiuser environment.
> 
> 
> you can also download and implement cmon on the site 
> http://sourceforge.net/projects/javamonitoring/
> Installing cmon is very simple, we can help you to make the configuration.
> 
> It is possible to customize cmon according to needs of ofbiz.
> 
> You can also view cmon demo on the web site 
> http://www.javaapplicationmonitor.com
> 
> 
> If you have any question or evaluation on cmon, do not hesitate to contact us 
> by sending an e-mail to i...@javaapplicationmonitor.com
> 
> 
> 
> Regards,
> 




Re: prob. to call in build methods in ofbiz.

2009-06-25 Thread Abhishek Ray
Sure I will.But before that let it run perfectly.
Regards,
abhishek

On Wed, Jun 24, 2009 at 7:07 PM, Marc Morin  wrote:

> We'd be interested in OpenID integration as well!  Once it's all running,
> can you contribute a patch back?
>
> Marc Morin
> Emforium Group Inc.
> ALL-IN Software™
> 519-772-6824 ext 201
> mmo...@emforium.com
>
>
>
> - Original Message -
> From: "Abhishek Ray" 
> To: user@ofbiz.apache.org
> Sent: Wednesday, June 24, 2009 3:15:22 AM GMT -05:00 US/Canada Eastern
> Subject: prob. to call in build methods in ofbiz.
>
> Hi,
> I wrote a java class to integratet the openID in ofbiz.So I had to call
> some
> login method already in the ofbiz.
> But it is unable to to import the proper package and gives the error..
>
>  import org.ofbiz.securityext.login.LoginEvents;
>  [javac15]   ^
>
> how can I come out of this problem..
>
> thanks and regards,
> abhishek ray
>