Entery of invoice in Trail balance after receiving PO

2010-05-12 Thread Anurag Walia
Hi all, Thanks in advance. I have a problem with ofbiz-4.0 for entery of invoice in Trail balance after receiving PO while it is working fine with ofbiz 9.0 after configure the financial account to party group but not with ofbiz-4.0 after making the same configuration . could any one tell me

Re: Entery of invoice in Trail balance after receiving PO

2010-05-12 Thread Chirag Manocha
OFBiz 9.04 and OFBiz 4.0 are different versions of OFBiz. It is possible that there might be some bugs in OFBiz 4.0 which are resolved in OFBiz 9.04. I would suggest if you can switch to higher version then that will be more reliable and effective version to work on. Regards -- Chirag Manocha

Re: Entery of invoice in Trail balance after receiving PO

2010-05-12 Thread Anurag Walia
Thanks for your valuable reply . But i already done lots of work on ofbiz 4.0. so it is not an easy task to switch. Regards Anurag Walia -- View this message in context: http://ofbiz.135035.n4.nabble.com/Entery-of-invoice-in-Trail-balance-after-receiving-PO-tp2195638p2195665.html Sent from

Re: Entery of invoice in Trail balance after receiving PO

2010-05-12 Thread Jacques Le Roux
This is why some (including me) prefer to work directly with trunk... Jacques From: Anurag Walia walia.anu...@hotmail.com Thanks for your valuable reply . But i already done lots of work on ofbiz 4.0. so it is not an easy task to switch. Regards Anurag Walia -- View this message in context:

Re: Entery of invoice in Trail balance after receiving PO

2010-05-12 Thread Anurag Walia
thanks i am not getting. Anurag -- View this message in context: http://ofbiz.135035.n4.nabble.com/Entery-of-invoice-in-Trail-balance-after-receiving-PO-tp2195638p2195686.html Sent from the OFBiz - User mailing list archive at Nabble.com.

Re: Entery of invoice in Trail balance after receiving PO

2010-05-12 Thread Jacques Le Roux
In the long term, it's easier to follow the trunk than to have to update a customised release. But that's only my opinion (and some others) Anyway I understand that's it's not an option for you. This message is mostly for other newcomers. Jacques From: Anurag Walia walia.anu...@hotmail.com

Re: Ofbiz Returning to Wrong Page After Add to Cart

2010-05-12 Thread Jacques Le Roux
Is this reproductible on demo server? Jacques From: BrettS brett.shee...@gmail.com Hi, Under certain circumstances, I have a problem with Ofbiz (incorrectly) redirecting to the Profile page after clicking Add to Cart. The steps I took to produce the problem are as follows: - Login (as admin)

Re: Ofbiz Returning to Wrong Page After Add to Cart

2010-05-12 Thread Ankit Jain
Hi Brett, This is occured because in the controller the response of the request editcontactmech having save-last-view=true in the request additem have response type=view-last. so its redirecting you to the viewprofile page. so by doing save-last-view=false then it will work. -- Thanks

Form that gives output as PDF or in other output

2010-05-12 Thread Ravindra Mandre
Hi, I wanted to know that in OFBiz we have some feature like that we can take output of a form (for example ListEmployeeSkills of EmployeeForms.xml) as a PDF without using the .fo.ftl . Can we use the same form for showing output and doing some changes in mapping by changing its mime type to pdf

Re: Entery of invoice in Trail balance after receiving PO

2010-05-12 Thread BJ Freeman
my guess is that code/entitly changes have been made since 4.0 that allow this. your two choices is to find the commits and try to update your 4.0 or move up to 10.4. when you move up take your changes and put them in the hot deploy use ant -p to see all targets in the 10.4 one of them creates a

Re: Ofbiz Returning to Wrong Page After Add to Cart

2010-05-12 Thread BJ Freeman
if this is consistent I would say it is a controller change that needs to be corrected. = BJ Freeman http://bjfreeman.elance.com Strategic Power Office with Supplier Automation http://www.businessesnetwork.com/automation/viewforum.php?f=93 Specialtymarket.com

Re: Managing purchase orders - import purposes

2010-05-12 Thread Jonatan Soto
Hi BJ, On Mon, May 10, 2010 at 10:21 PM, BJ Freeman bjf...@free-man.net wrote: the parts are there the business logic is not I see few layers of business logic one layer is basic to all countries the next layer is specific to EU contries. the next layer is your customization for your way of

Re: Managing purchase orders - import purposes

2010-05-12 Thread BJ Freeman
The basics are the same there are many ways to implement. :D Consolidate and aggregate so you can keep track of costs at the different stages. = BJ Freeman http://bjfreeman.elance.com Strategic Power Office with Supplier Automation

discussion modeling business logic

2010-05-12 Thread BJ Freeman
I have been wrestling with how to implement business logic easier for the end user. I ran across an application that does math modeling. you can put in formulas and it creates the code. using the Idea, I am investigating how to do this in ofbiz so we could pull the services in and develop a

Re: Form that gives output as PDF or in other output

2010-05-12 Thread Santosh Malviya
Hello Ravindra, Follow reports under facility component you will get an example of generating pdf using form-widget. Thanks and Regards Santosh Malviya On Wed, May 12, 2010 at 2:39 PM, Ravindra Mandre raviof...@gmail.comwrote: Hi, I wanted to know that in OFBiz we have some feature like that

conditional form addition in the screen

2010-05-12 Thread prasanthi_ofbiz
Hi, I want to include a form into one ofbiz screen based on some condition. Please me help me out.. Ex: My Screen screen name=EditFinAccountTrans section actions set field=titleProperty value=PageTitleEditFinAccountTrans/ set

Re: conditional form addition in the screen

2010-05-12 Thread Atul Vani
hi Prasanthi, how about you use it like this:- screen name=... section condition.../condition actions.../actions widget/widget fail-widget section... ... .../section /failwidget /section /screen

calling multiple services in ofbiz

2010-05-12 Thread prasanthi_ofbiz
Hi Is it possible to call multiple services at a time?? Like while adding a transaction of Financial Account, I want to call two services On click of Add button of Edit Financial Account Transaction. The two services are EditFinAccountTrans, for Addition of financial transaction and

Re: calling multiple services in ofbiz

2010-05-12 Thread Kranti Agrawal
Did you mean a conditional call of the accounting transactions - like if there is a account transaction already present, then call the Edit service, else call the create service? If Yes, try 'alt-target' option in the form from where these services will be invoked Regards, Kranti Agrawal

Re: calling multiple services in ofbiz

2010-05-12 Thread Jacques Le Roux
https://cwiki.apache.org/confluence/display/OFBTECH/Service+Engine+Guide#ServiceEngineGuide-ServiceGroups Jacques From: prasanthi_ofbiz prasanthi.sreeramjammise...@tcs.com Hi Is it possible to call multiple services at a time?? Like while adding a transaction of Financial Account, I

Re: calling multiple services in ofbiz

2010-05-12 Thread Atul Vani
hi Prasanthi, one way is to call one service from another service using call-service tag or you can can services in the screen one after another, or may be in the controller itself using response name=success type=request.../ -- Thanks Regards Atul Vani Jr. Software Developer HotWax Media

Re: conditional form addition in the screen

2010-05-12 Thread prasanthi_ofbiz
Hi Atul Vani , Thaks for your reply. I applied same thing but no use... Check the below code screen name=EditFinAccountTrans section condition if-compare field=finAccountTransId operator=equals value= /

[Repost] Billing account and financial account! what is it and also what is EFT

2010-05-12 Thread abhishek jain
Hi , Please some one can reply to this email with the points as mentioned below, particularly on how to add new template / theme on ecomclone with custom FTL files, thanks abhishek On Tue, May 11, 2010 at 12:20 PM, abhishek jain abhishek.netj...@gmail.comwrote: Hi, thanks for the answers:

Re: [Repost] Billing account and financial account! what is it and also what is EFT

2010-05-12 Thread BJ Freeman
here are some good links https://cwiki.apache.org/confluence/display/OFBIZ/FAQ+-+Tips+-+Tricks+-+Cookbook+-+HowTo https://cwiki.apache.org/confluence/display/OFBENDUSER/OFBiz+End+User+Docs+Home particularly https://cwiki.apache.org/confluence/display/OFBENDUSER/Accounting+Manager The themes was

Re: Ofbiz Returning to Wrong Page After Add to Cart

2010-05-12 Thread BrettS
Hi, Thank you to everybody who responded. I changed the controller as per Ankit's suggestion and that fixed my problem. In response to Jacques's question, I don't know exactly what you mean by demo server. I did download a copy of Ofiz 9.04 (stable) and did a clean install on another machine.

Re: conditional form addition in the screen

2010-05-12 Thread atul . vani
hi Prasanthi, the code looks right, just one thing (i am not sure if it will make any difference or not, never tried it your way) why don't you try using if-empty ... / instead of if-compare ... / Thanks Regards Atul Vani - Original Message - From: prasanthi_ofbiz

Re: conditional form addition in the screen

2010-05-12 Thread Akash Jain
Hello Prasanthi, do correction in your code, inline prasanthi_ofbiz wrote: Hi Atul Vani , Thaks for your reply. I applied same thing but no use... Check the below code screen name=EditFinAccountTrans section condition

Re: calling multiple services in ofbiz

2010-05-12 Thread S K Pradeep kumar
Hi Prasanthi, You can create a groups for example: createCreditCardAndAddress With regards, S K Pradeep kumar, On Wed, May 12, 2010 at 7:50 PM, prasanthi_ofbiz prasanthi.sreeramjammise...@tcs.com wrote: Hi Is it possible to call multiple services at a time?? Like while adding a

Re: conditional form addition in the screen

2010-05-12 Thread prasanthi_ofbiz
Hi Akash, I didn't get you. can u pls explain -- View this message in context: http://ofbiz.135035.n4.nabble.com/conditional-form-addition-in-the-screen-tp2195999p2197152.html Sent from the OFBiz - User mailing list archive at Nabble.com.

Re: conditional form addition in the screen

2010-05-12 Thread Akash Jain
Hello Prasanthi, use, if-compare field=parameters.finAccountTransId operator=equals value= / instead of if-compare field=finAccountTransId operator=equals value= / Thanks and Regards -- Akash prasanthi_ofbiz wrote: Hi Akash, I didn't get you. can u pls explain

Re: conditional form addition in the screen

2010-05-12 Thread Arpit Singh Pandya
hey prasanthi, instead of if-compare field=finAccountTransId try -- if-compare field=parameters.finAccountTransId HTH -- Arpit Singh Pandya Direct : +91-982-693-2255 On Thu, May 13, 2010 at 10:40 AM, prasanthi_ofbiz prasanthi.sreeramjammise...@tcs.com wrote: Hi Akash, I didn't

Re: conditional form addition in the screen

2010-05-12 Thread Akash Jain
Hello Prasanthi, If you just want to check empty field then you can also use, if-empty field=parameters.finAccountTransId/ inside condition tag. like, condition if-empty field=parameters.finAccountTransId/ /condition HTH Thanks and Regards -- Akash prasanthi_ofbiz wrote: Hi Akash,

Re: conditional form addition in the screen

2010-05-12 Thread prasanthi_ofbiz
Hi Akash, I tried same thing already but no use. Its always including the CreateAcctgTrans1 form Thanks Regards Prasanthi -- View this message in context: http://ofbiz.135035.n4.nabble.com/conditional-form-addition-in-the-screen-tp2195999p2197177.html Sent from the OFBiz - User mailing