Re: Install ofbiz windows 10

2018-07-31 Thread Jason RJ

On 31/07/2018 03:46, Mitch Honeysett wrote:

Hi!

Installed ofbiz

run

gradlew "ofbiz --load-data readers=seed,seed-initial" 
loadAdminUserLogin -PuserLoginId=admin


but get this

ERROR: JAVA_HOME is not set and no 'java' command could be found in 
your PATH.


Please set the JAVA_HOME variable in your environment to match the
location of your Java installation.

set variable

Java_Home

C:\Program Files\Java\jre-10.0.2\bin\

in the Java config desktop path is C:\Program 
Files\Java\jre-10.0.2\bin\javaw.exe


Please help

Mitch


Hi Mitch,

JAVA_HOME should put to a JDK not the JRE, but also I sometimes find 
using the 8.3 notation is more successful:


SET JAVA_HOME=C:\PROGRA~1\Java\JDK18~1.0_1

You can check the correct 8.3 file names for your setup with DIR /X

Jason


Re: Tax exemptions / price including tax

2018-07-31 Thread Frank Herrman
In adition to my last e-mail I just found out that it still is not working as 
expected, even when I use prices excl. taxes. I dived into the code and found 
in applications/order/groovyScripts/entry/OrderReadHelper.java the function 
that gets the price on line 2401 (public static BigDecimal 
getOrderItemSubTotal(GenericValue orderItem, List adjustments, 
boolean forTax, boolean forShipping))



The first line gets the unit price from an order item 
(orderItem.getBigDecimal("unitPrice");), which always includes taxes. Now I 
believe the real issue is that it should store the price excl. taxes in the 
line item as well. But this affects probably a lot of sections of the system. 
To test it I tried to divide the unitPrice by 1.21 in that function. This did 
return the right price and right total, but the tax exempt was of course still 
calculated based on the price of 20 euro excl. taxes (which is 4.20 euros 
instead of 3.47 euros).



Anyway, maybe not the right discussion for the user list, but there really is 
something wrong here. It doesn't seem to be a configuration error.



Kind regards,

 

Frank



Op 30-07-18 11:35 heeft Frank Herrman  geschreven:



Hi Sharan & others,







I have set it up like this now:







* All product prices are connected to the Dutch tax authority, no tax rate 
set. Tax included = Y



* I have created 2 tax authorities for The Netherlands and Belgium, 
connected to the same party ('belastingdienst', dutch authority)



* The Dutch tax authority has the tax set up to 21% sales tax for both 
countries



* The Belgium customer is set up to have a tax exempt for BE and 
'belastingdienst'







When I look in the prices table of the database I see this:



https://ibb.co/kgf8R8 (don't know if images get stripped out, so just 
pasted a link)







This is correct for price without tax and the tax amount.







When I create an order within Ofbiz I still get this:



https://ibb.co/h77BeT 







Which is incorrect (tax exempt is correct, but the amount of 4.20 and the 
final price of 20 is not). It seems the system keeps using the 'price' column 
in the database instead of the calculated prices and adds tax to it. Other then 
that it seems the tax exempt functionality is working as expected now.







I just created a script that checks all prices if some of them are set to 
Tax included = Y. If that is the case it will set it to 'N' and set the price 
field to the price excl. VAT. It is not a nice solution, but this makes it 
easier to maintain and solves my issues for now.







Kind regards,



 



Frank







Op 29-07-18 15:57 heeft Sharan Foga  geschreven:







Hi Frank







The options I gave were workarounds for if you needed to get something 
up and running quickly. I agree with you that long term we need to solve it 
properly. 







Analysis Needed



==



Why doesn't the include tax in price flag work properly for Tax 
authority setup?







From my perspective I also see two requirements (so happy to get your 
feedback and anyone else's too :-). 







Requirement 1:



=



Using your example as the use case - we need to be able to flag that a 
Belgian customer is liable for tax in the Netherlands. Note this applies in the 
case where it is B2C because the Belgian customer needs to pay Dutch tax. So 
for a Sales Order from a Belgian customer there needs to be line calculated for 
Dutch tax using the Dutch tax rate.







I think the nexus flag in the Tax Authority parties tab is supposed to 
be used for this but it's not working as such because in OFBiz now the tax 
calculation for the Sales Order is based on the customer delivery address. 







Requirement 2:



=



Again using your example as the use case - we need to be able to flag 
that a Belgian customer is exempt from being taxed by the Dutch Tax Authority. 
Note this applies in the case where it is B2B where the Belgian customer is a 
company/business.  So for a Sales Order from a Belgian customer there needs to 
be a line on the Sales order saying that the order is exempt from Dutch tax and 
the amount that has been exempted.







The exempt flag in the Tax Authority parties tab is supposed to be used 
for this but it's not working as such because in OFBiz now the tax calculation 
for the Sales Order is based on the customer delivery address.







Please feel free to comment or give me any feedback on any of these 
points.







Thanks



   

Webpos session timeout

2018-07-31 Thread Frank Herrman
Hi there,

Another question from me. It seems that on different environments we experience 
issues with the webpos component. We are not able to login because the session 
expires immideatly. If we remove the cookies we can get in, but in the next 
step we are being logged out again. We experience this behaviour in Chrome, 
Firefox and Safari on multiple computers. The exact error:


The Following Errors Occurred: Error calling event: 
org.apache.ofbiz.webapp.event.EventHandlerException: Problems processing event: 
java.lang.IllegalStateException: getAttribute: Session already invalidated 
(getAttribute: Session already invalidated)
Is there something we can do about this to prevent it from happening? Thanks 
again!

kind regards,

Frank



Re: Tax exemptions / price including tax

2018-07-31 Thread Sharan Foga
(re-sending this message as my first response didn't get through again :-)

Hi Frank

I'm caught up with some other tasks at the moment so don't have time to respond 
fully. I think that the best next step would be to create a JIRA ticket on our 
issue tracker. You can add all the main details and examples from this 
discussion and also any attachments. This will help us understand the issue 
using some real data and fix it properly.

https://issues.apache.org/jira/projects/OFBIZ?selectedItem=com.atlassian.jira.jira-projects-plugin%3Asummary-page

We can continue the discussion in the ticket itself or on the dev mailing list 
if fixing it is going to have a significant impact.

Thanks
Sharan

On 2018/07/31 10:02:41, Frank Herrman  wrote: 
> In adition to my last e-mail I just found out that it still is not working as 
> expected, even when I use prices excl. taxes. I dived into the code and found 
> in applications/order/groovyScripts/entry/OrderReadHelper.java the function 
> that gets the price on line 2401 (public static BigDecimal 
> getOrderItemSubTotal(GenericValue orderItem, List adjustments, 
> boolean forTax, boolean forShipping))
> 
> 
> 
> The first line gets the unit price from an order item 
> (orderItem.getBigDecimal("unitPrice");), which always includes taxes. Now I 
> believe the real issue is that it should store the price excl. taxes in the 
> line item as well. But this affects probably a lot of sections of the system. 
> To test it I tried to divide the unitPrice by 1.21 in that function. This did 
> return the right price and right total, but the tax exempt was of course 
> still calculated based on the price of 20 euro excl. taxes (which is 4.20 
> euros instead of 3.47 euros).
> 
> 
> 
> Anyway, maybe not the right discussion for the user list, but there really is 
> something wrong here. It doesn't seem to be a configuration error.
> 
> 
> 
> Kind regards,
> 
>  
> 
> Frank
> 
> 
> 
> Op 30-07-18 11:35 heeft Frank Herrman  geschreven:
> 
> 
> 
> Hi Sharan & others,
> 
> 
> 
> 
> 
> 
> 
> I have set it up like this now:
> 
> 
> 
> 
> 
> 
> 
> * All product prices are connected to the Dutch tax authority, no tax 
> rate set. Tax included = Y
> 
> 
> 
> * I have created 2 tax authorities for The Netherlands and Belgium, 
> connected to the same party ('belastingdienst', dutch authority)
> 
> 
> 
> * The Dutch tax authority has the tax set up to 21% sales tax for both 
> countries
> 
> 
> 
> * The Belgium customer is set up to have a tax exempt for BE and 
> 'belastingdienst'
> 
> 
> 
> 
> 
> 
> 
> When I look in the prices table of the database I see this:
> 
> 
> 
> https://ibb.co/kgf8R8 (don't know if images get stripped out, so just 
> pasted a link)
> 
> 
> 
> 
> 
> 
> 
> This is correct for price without tax and the tax amount.
> 
> 
> 
> 
> 
> 
> 
> When I create an order within Ofbiz I still get this:
> 
> 
> 
> https://ibb.co/h77BeT 
> 
> 
> 
> 
> 
> 
> 
> Which is incorrect (tax exempt is correct, but the amount of 4.20 and the 
> final price of 20 is not). It seems the system keeps using the 'price' column 
> in the database instead of the calculated prices and adds tax to it. Other 
> then that it seems the tax exempt functionality is working as expected now.
> 
> 
> 
> 
> 
> 
> 
> I just created a script that checks all prices if some of them are set to 
> Tax included = Y. If that is the case it will set it to 'N' and set the price 
> field to the price excl. VAT. It is not a nice solution, but this makes it 
> easier to maintain and solves my issues for now.
> 
> 
> 
> 
> 
> 
> 
> Kind regards,
> 
> 
> 
>  
> 
> 
> 
> Frank
> 
> 
> 
> 
> 
> 
> 
> Op 29-07-18 15:57 heeft Sharan Foga  geschreven:
> 
> 
> 
> 
> 
> 
> 
> Hi Frank
> 
> 
> 
> 
> 
> 
> 
> The options I gave were workarounds for if you needed to get 
> something up and running quickly. I agree with you that long term we need to 
> solve it properly. 
> 
> 
> 
> 
> 
> 
> 
> Analysis Needed
> 
> 
> 
> ==
> 
> 
> 
> Why doesn't the include tax in price flag work properly for Tax 
> authority setup?
> 
> 
> 
> 
> 
> 
> 
> From my perspective I also see two requirements (so happy to get your 
> feedback and anyone else's too :-). 
> 
> 
> 
> 
> 
> 
> 
> Requirement 1:
> 
> 
> 
> =
> 
> 
> 
> Using your example as the use case - we need to be able to flag that 
> a Belgian customer is liable for tax in the Netherlands. Note this applies in 
> the case where it is B2C because the Belgian customer needs to pay Dutch tax. 
> So for a Sales Order from a Belgian customer there needs to be line 
> calculated for Dutch tax using the Dutch tax rate.

Re: Webpos session timeout

2018-07-31 Thread William Cunningham
Please remove me from your group.

Sent from my iPhone

> On Jul 31, 2018, at 6:34 AM, Frank Herrman  wrote:
> 
> Hi there,
> 
> Another question from me. It seems that on different environments we 
> experience issues with the webpos component. We are not able to login because 
> the session expires immideatly. If we remove the cookies we can get in, but 
> in the next step we are being logged out again. We experience this behaviour 
> in Chrome, Firefox and Safari on multiple computers. The exact error:
> 
> 
> The Following Errors Occurred: Error calling event: 
> org.apache.ofbiz.webapp.event.EventHandlerException: Problems processing 
> event: java.lang.IllegalStateException: getAttribute: Session already 
> invalidated (getAttribute: Session already invalidated)
> Is there something we can do about this to prevent it from happening? Thanks 
> again!
> 
> kind regards,
> 
> Frank
> 


Re: Install ofbiz windows 10

2018-07-31 Thread William Cunningham
Please remove me from your group 

Sent from my iPhone

> On Jul 31, 2018, at 4:14 AM, Jason RJ  wrote:
> 
>> On 31/07/2018 03:46, Mitch Honeysett wrote:
>> Hi!
>> 
>> Installed ofbiz
>> 
>> run
>> 
>> gradlew "ofbiz --load-data readers=seed,seed-initial" loadAdminUserLogin 
>> -PuserLoginId=admin
>> 
>> but get this
>> 
>> ERROR: JAVA_HOME is not set and no 'java' command could be found in your 
>> PATH.
>> 
>> Please set the JAVA_HOME variable in your environment to match the
>> location of your Java installation.
>> 
>> set variable
>> 
>> Java_Home
>> 
>> C:\Program Files\Java\jre-10.0.2\bin\
>> 
>> in the Java config desktop path is C:\Program 
>> Files\Java\jre-10.0.2\bin\javaw.exe
>> 
>> Please help
>> 
>> Mitch
>> 
> Hi Mitch,
> 
> JAVA_HOME should put to a JDK not the JRE, but also I sometimes find using 
> the 8.3 notation is more successful:
> 
> SET JAVA_HOME=C:\PROGRA~1\Java\JDK18~1.0_1
> 
> You can check the correct 8.3 file names for your setup with DIR /X
> 
> Jason


Re: Install ofbiz windows 10

2018-07-31 Thread William Cunningham
Please remove me from your group 

Sent from my iPhone

> On Jul 31, 2018, at 1:59 AM, Deepak Dixit  wrote:
> 
> Hi Mitch Honeysett,
> 
> Your email has been moderated, Please subscribe to mailing list,
> http://ofbiz.apache.org/mailing-lists.html
> 
> On Tue, Jul 31, 2018 at 8:16 AM, Mitch Honeysett > wrote:
> 
>> Hi!
>> 
>> Installed ofbiz
>> 
>> run
>> 
>> gradlew "ofbiz --load-data readers=seed,seed-initial" loadAdminUserLogin
>> -PuserLoginId=admin
>> 
>> but get this
>> 
>> ERROR: JAVA_HOME is not set and no 'java' command could be found in your
>> PATH.
>> 
>> Please set the JAVA_HOME variable in your environment to match the
>> location of your Java installation.
>> 
>> set variable
>> 
>> Java_Home
>> 
>> C:\Program Files\Java\jre-10.0.2\bin\
>> 
>> in the Java config desktop path is C:\Program
>> Files\Java\jre-10.0.2\bin\javaw.exe
>> 
>> Please help
>> 
>> Mitch
>> 
>> 


Re: Install ofbiz windows 10

2018-07-31 Thread William Cunningham
Please remove me from your group 

Sent from my iPhone

> On Jul 31, 2018, at 2:05 AM, Sandeep Kose  
> wrote:
> 
> Hi Mitch,
> 
> Please follow this link
>  to set
> $JAVA_HOME in windows 10, I hope it will resolve your problem.
> 
> Thanks & Regards,
> --
> Sandeep Kose
> www.hotwaxsystems.com
> 
>> On Tue, Jul 31, 2018 at 11:29 AM, Deepak Dixit  wrote:
>> 
>> Hi Mitch Honeysett,
>> 
>> Your email has been moderated, Please subscribe to mailing list,
>> http://ofbiz.apache.org/mailing-lists.html
>> 
>> On Tue, Jul 31, 2018 at 8:16 AM, Mitch Honeysett <
>> honeys...@internode.on.net
>>> wrote:
>> 
>>> Hi!
>>> 
>>> Installed ofbiz
>>> 
>>> run
>>> 
>>> gradlew "ofbiz --load-data readers=seed,seed-initial" loadAdminUserLogin
>>> -PuserLoginId=admin
>>> 
>>> but get this
>>> 
>>> ERROR: JAVA_HOME is not set and no 'java' command could be found in your
>>> PATH.
>>> 
>>> Please set the JAVA_HOME variable in your environment to match the
>>> location of your Java installation.
>>> 
>>> set variable
>>> 
>>> Java_Home
>>> 
>>> C:\Program Files\Java\jre-10.0.2\bin\
>>> 
>>> in the Java config desktop path is C:\Program
>>> Files\Java\jre-10.0.2\bin\javaw.exe
>>> 
>>> Please help
>>> 
>>> Mitch
>>> 
>>> 
>> 


Re: Install ofbiz windows 10

2018-07-31 Thread William Cunningham
Please remove me from your group 

Sent from my iPhone

> On Jul 31, 2018, at 1:56 AM, Mitch Honeysett  
> wrote:
> 
> Hi!
> 
> Installed ofbiz
> 
> run
> 
> gradlew "ofbiz --load-data readers=seed,seed-initial" loadAdminUserLogin 
> -PuserLoginId=admin
> 
> but get this
> 
> ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
> 
> Please set the JAVA_HOME variable in your environment to match the
> location of your Java installation.
> 
> set variable
> 
> Java_Home
> 
> C:\Program Files\Java\jre-10.0.2\bin\
> 
> in the Java config desktop path is C:\Program 
> Files\Java\jre-10.0.2\bin\javaw.exe
> 
> Please help
> 
> Mitch
> 


Re: Webpos session timeout

2018-07-31 Thread deepak nigam
Hi William,

Here is the link  having the
instructions to unsubscribe from mailing lists. Please help yourself.


Thanks & Regards
--
Deepak Nigam


On Tue, Jul 31, 2018 at 4:10 PM William Cunningham <
william.cunning...@live.com> wrote:

> Please remove me from your group.
>
> Sent from my iPhone
>
> > On Jul 31, 2018, at 6:34 AM, Frank Herrman  wrote:
> >
> > Hi there,
> >
> > Another question from me. It seems that on different environments we
> experience issues with the webpos component. We are not able to login
> because the session expires immideatly. If we remove the cookies we can get
> in, but in the next step we are being logged out again. We experience this
> behaviour in Chrome, Firefox and Safari on multiple computers. The exact
> error:
> >
> >
> > The Following Errors Occurred: Error calling event:
> org.apache.ofbiz.webapp.event.EventHandlerException: Problems processing
> event: java.lang.IllegalStateException: getAttribute: Session already
> invalidated (getAttribute: Session already invalidated)
> > Is there something we can do about this to prevent it from happening?
> Thanks again!
> >
> > kind regards,
> >
> > Frank
> >
>


Re: Install ofbiz windows 10

2018-07-31 Thread Deepak Dixit
Please help yourself
http://ofbiz.apache.org/mailing-lists.html

Thanks & Regards
--
Deepak Dixit


On Tue, Jul 31, 2018 at 4:11 PM, William Cunningham <
william.cunning...@live.com> wrote:

> Please remove me from your group
>
> Sent from my iPhone
>
> > On Jul 31, 2018, at 1:56 AM, Mitch Honeysett 
> wrote:
> >
> > Hi!
> >
> > Installed ofbiz
> >
> > run
> >
> > gradlew "ofbiz --load-data readers=seed,seed-initial" loadAdminUserLogin
> -PuserLoginId=admin
> >
> > but get this
> >
> > ERROR: JAVA_HOME is not set and no 'java' command could be found in your
> PATH.
> >
> > Please set the JAVA_HOME variable in your environment to match the
> > location of your Java installation.
> >
> > set variable
> >
> > Java_Home
> >
> > C:\Program Files\Java\jre-10.0.2\bin\
> >
> > in the Java config desktop path is C:\Program Files\Java\jre-10.0.2\bin\
> javaw.exe
> >
> > Please help
> >
> > Mitch
> >
>


Re: Tax exemptions / price including tax

2018-07-31 Thread Frank Herrman
Hi Sharan,



Ok thanks, I have created the issue and linked back to this discussion for now:



https://issues.apache.org/jira/browse/OFBIZ-10500



kind regards,

 

Frank



Op 31-07-18 12:37 heeft Sharan Foga  geschreven:



(re-sending this message as my first response didn't get through again :-)



Hi Frank



I'm caught up with some other tasks at the moment so don't have time to 
respond fully. I think that the best next step would be to create a JIRA ticket 
on our issue tracker. You can add all the main details and examples from this 
discussion and also any attachments. This will help us understand the issue 
using some real data and fix it properly.




https://issues.apache.org/jira/projects/OFBIZ?selectedItem=com.atlassian.jira.jira-projects-plugin%3Asummary-page



We can continue the discussion in the ticket itself or on the dev mailing 
list if fixing it is going to have a significant impact.



Thanks

Sharan



On 2018/07/31 10:02:41, Frank Herrman  wrote: 

> In adition to my last e-mail I just found out that it still is not 
working as expected, even when I use prices excl. taxes. I dived into the code 
and found in applications/order/groovyScripts/entry/OrderReadHelper.java the 
function that gets the price on line 2401 (public static BigDecimal 
getOrderItemSubTotal(GenericValue orderItem, List adjustments, 
boolean forTax, boolean forShipping))

> 

> 

> 

> The first line gets the unit price from an order item 
(orderItem.getBigDecimal("unitPrice");), which always includes taxes. Now I 
believe the real issue is that it should store the price excl. taxes in the 
line item as well. But this affects probably a lot of sections of the system. 
To test it I tried to divide the unitPrice by 1.21 in that function. This did 
return the right price and right total, but the tax exempt was of course still 
calculated based on the price of 20 euro excl. taxes (which is 4.20 euros 
instead of 3.47 euros).

> 

> 

> 

> Anyway, maybe not the right discussion for the user list, but there 
really is something wrong here. It doesn't seem to be a configuration error.

> 

> 

> 

> Kind regards,

> 

>  

> 

> Frank

> 

> 

> 

> Op 30-07-18 11:35 heeft Frank Herrman  geschreven:

> 

> 

> 

> Hi Sharan & others,

> 

> 

> 

> 

> 

> 

> 

> I have set it up like this now:

> 

> 

> 

> 

> 

> 

> 

> * All product prices are connected to the Dutch tax authority, no tax 
rate set. Tax included = Y

> 

> 

> 

> * I have created 2 tax authorities for The Netherlands and Belgium, 
connected to the same party ('belastingdienst', dutch authority)

> 

> 

> 

> * The Dutch tax authority has the tax set up to 21% sales tax for 
both countries

> 

> 

> 

> * The Belgium customer is set up to have a tax exempt for BE and 
'belastingdienst'

> 

> 

> 

> 

> 

> 

> 

> When I look in the prices table of the database I see this:

> 

> 

> 

> https://ibb.co/kgf8R8 (don't know if images get stripped out, so just 
pasted a link)

> 

> 

> 

> 

> 

> 

> 

> This is correct for price without tax and the tax amount.

> 

> 

> 

> 

> 

> 

> 

> When I create an order within Ofbiz I still get this:

> 

> 

> 

> https://ibb.co/h77BeT 

> 

> 

> 

> 

> 

> 

> 

> Which is incorrect (tax exempt is correct, but the amount of 4.20 and 
the final price of 20 is not). It seems the system keeps using the 'price' 
column in the database instead of the calculated prices and adds tax to it. 
Other then that it seems the tax exempt functionality is working as expected 
now.

> 

> 

> 

> 

> 

> 

> 

> I just created a script that checks all prices if some of them are 
set to Tax included = Y. If that is the case it will set it to 'N' and set the 
price field to the price excl. VAT. It is not a nice solution, but this makes 
it easier to maintain and solves my issues for now.

> 

> 

> 

> 

> 

> 

> 

> Kind regards,

> 

> 

> 

>  

> 

> 

> 

> Frank

> 

> 

> 

> 

> 

> 

> 

> Op 29-07-18 15:57 heeft Sharan Foga  geschreven:

> 

> 

> 

> 

> 

> 

> 

> Hi Frank

> 

> 

> 

> 

> 

> 

> 

> The options I gave were workarounds for i

Inventory Allocation Planning

2018-07-31 Thread deepak nigam
Hi All,

In the current implementation of inventory reservation flow, inventory gets
reserved for the order based on the reservation algorithm (FIFO, LIFO etc).
Many times, the fulfilment cycle of the order is too long or due to some
unexpected circumstances, the order holds the inventory for a long time. In
such scenarios, inventory availability becomes one of the major bottlenecks
in fulfilling the other sales order and businesses often remains short
supplied against the demand.

Is there a way to allocate the available and any future supply judiciously
amongst existing customers orders by considering different factors like
estimated delivery dates, order priority, customer preference etc?


Thanks & Regards
--
Deepak Nigam


RE: Inventory Allocation Planning

2018-07-31 Thread james

There is a way to reallocate using the order priority screen.  You can
bump backorders up and give them a higher priority.

Thanks,

James
 Original Message 
Subject: Inventory Allocation Planning
From: deepak nigam 
Date: Tue, July 31, 2018 5:28 am
To: user@ofbiz.apache.org

Hi All,

In the current implementation of inventory reservation flow, inventory
gets
reserved for the order based on the reservation algorithm (FIFO, LIFO
etc).
Many times, the fulfilment cycle of the order is too long or due to some
unexpected circumstances, the order holds the inventory for a long time.
In
such scenarios, inventory availability becomes one of the major
bottlenecks
in fulfilling the other sales order and businesses often remains short
supplied against the demand.

Is there a way to allocate the available and any future supply
judiciously
amongst existing customers orders by considering different factors like
estimated delivery dates, order priority, customer preference etc?


Thanks & Regards
--
Deepak Nigam


Removing Child Items without going through the Manufacturing Process

2018-07-31 Thread james
Is there a way to sell a manufactured "virtual" item and have it relieve
all the child items associated with it and not go through the
manufacturing process?

Thanks,

James


Re: Inventory Allocation Planning

2018-07-31 Thread Paul Mandeltort
Where is this screen located? Or are you referring to the order
priority field in ordermgr?

—P

> On Jul 31, 2018, at 1:48 PM,   
> wrote:
>
>
> There is a way to reallocate using the order priority screen.  You can
> bump backorders up and give them a higher priority.
>
> Thanks,
>
> James
>  Original Message 
> Subject: Inventory Allocation Planning
> From: deepak nigam 
> Date: Tue, July 31, 2018 5:28 am
> To: user@ofbiz.apache.org
>
> Hi All,
>
> In the current implementation of inventory reservation flow, inventory
> gets
> reserved for the order based on the reservation algorithm (FIFO, LIFO
> etc).
> Many times, the fulfilment cycle of the order is too long or due to some
> unexpected circumstances, the order holds the inventory for a long time.
> In
> such scenarios, inventory availability becomes one of the major
> bottlenecks
> in fulfilling the other sales order and businesses often remains short
> supplied against the demand.
>
> Is there a way to allocate the available and any future supply
> judiciously
> amongst existing customers orders by considering different factors like
> estimated delivery dates, order priority, customer preference etc?
>
>
> Thanks & Regards
> --
> Deepak Nigam


Need help to start OFBiz

2018-07-31 Thread Ahmad Saki
 Dear all,
1. When I type "cd F:\Software&Driver\apache-ofbiz-16.11.04" and hit enter
in cmd- It says
The system cannot find the path specified.

2. But when I use "F:\Software&Driver\apache-ofbiz-16.11.04>gradlew
cleanAll loadDefault" this command- It says
'Driver\apache-ofbiz-16.11.04\' is not recognized as an internal or
external command,
operable program or batch file.
Error: Could not find or load main class org.gradle.wrapper.
GradleWrapperMain

3. I also try with "F:\Software&Driver\apache-ofbiz-16.11.04>ant
run-install" command which output is-
Buildfile: build.xml does not exist!
Build failed

Essence: I am unable to set up apache-ofbiz-16.11.04

Note: I have used-
Operating System: Windows 10
JDK:java version "1.8.0_92"
Java(TM) SE Runtime Environment (build 1.8.0_92-b14)
Java HotSpot(TM) 64-Bit Server VM (build 25.92-b14, mixed mode)
apache-ant: Apache Ant(TM) version 1.10.5 compiled on July 10 2018

Please help me.

Thanks
Ahmad Saki


Re: Need help to start OFBiz

2018-07-31 Thread Gil Portenseigne
Hello Ahmad,

I think that the main issue your facing is the name of your folder 
"software&driver"

Please retry after renaming it without & character, you should go further.

Gil

Le 31 juillet 2018 21:10:18 GMT+02:00, Ahmad Saki  a 
écrit :
> Dear all,
>1. When I type "cd F:\Software&Driver\apache-ofbiz-16.11.04" and hit
>enter
>in cmd- It says
>The system cannot find the path specified.
>
>2. But when I use "F:\Software&Driver\apache-ofbiz-16.11.04>gradlew
>cleanAll loadDefault" this command- It says
>'Driver\apache-ofbiz-16.11.04\' is not recognized as an internal or
>external command,
>operable program or batch file.
>Error: Could not find or load main class org.gradle.wrapper.
>GradleWrapperMain
>
>3. I also try with "F:\Software&Driver\apache-ofbiz-16.11.04>ant
>run-install" command which output is-
>Buildfile: build.xml does not exist!
>Build failed
>
>Essence: I am unable to set up apache-ofbiz-16.11.04
>
>Note: I have used-
>Operating System: Windows 10
>JDK:java version "1.8.0_92"
>Java(TM) SE Runtime Environment (build 1.8.0_92-b14)
>Java HotSpot(TM) 64-Bit Server VM (build 25.92-b14, mixed mode)
>apache-ant: Apache Ant(TM) version 1.10.5 compiled on July 10 2018
>
>Please help me.
>
>Thanks
>Ahmad Saki

-- 
Envoyé de mon appareil Android avec Courriel K-9 Mail. Veuillez excuser ma 
brièveté.

Re: Need help to start OFBiz

2018-07-31 Thread Ahmad Saki
Thank you Gil it is working.

On Wed, Aug 1, 2018 at 1:45 AM, Gil Portenseigne <
gil.portensei...@nereide.fr> wrote:

> Hello Ahmad,
>
> I think that the main issue your facing is the name of your folder
> "software&driver"
>
> Please retry after renaming it without & character, you should go further.
>
> Gil
>
> Le 31 juillet 2018 21:10:18 GMT+02:00, Ahmad Saki 
> a écrit :
> > Dear all,
> >1. When I type "cd F:\Software&Driver\apache-ofbiz-16.11.04" and hit
> >enter
> >in cmd- It says
> >The system cannot find the path specified.
> >
> >2. But when I use "F:\Software&Driver\apache-ofbiz-16.11.04>gradlew
> >cleanAll loadDefault" this command- It says
> >'Driver\apache-ofbiz-16.11.04\' is not recognized as an internal or
> >external command,
> >operable program or batch file.
> >Error: Could not find or load main class org.gradle.wrapper.
> >GradleWrapperMain
> >
> >3. I also try with "F:\Software&Driver\apache-ofbiz-16.11.04>ant
> >run-install" command which output is-
> >Buildfile: build.xml does not exist!
> >Build failed
> >
> >Essence: I am unable to set up apache-ofbiz-16.11.04
> >
> >Note: I have used-
> >Operating System: Windows 10
> >JDK:java version "1.8.0_92"
> >Java(TM) SE Runtime Environment (build 1.8.0_92-b14)
> >Java HotSpot(TM) 64-Bit Server VM (build 25.92-b14, mixed mode)
> >apache-ant: Apache Ant(TM) version 1.10.5 compiled on July 10 2018
> >
> >Please help me.
> >
> >Thanks
> >Ahmad Saki
>
> --
> Envoyé de mon appareil Android avec Courriel K-9 Mail. Veuillez excuser ma
> brièveté.