Re: Class and Methods to find job ID and job Name in a service

2023-04-18 Thread Aditya Sharma
Hello Mahi,

Though I could not understand your use case completely, I suspect you are
looking for RuntimeData. Instead of identifying the job and deciding, you
should prepare distinct runtime data for different jobs. RuntimeData will
be passed to the service during job execution, based upon which you could
decide further actions.

Refer to this job data:
https://github.com/apache/ofbiz-framework/blob/49bcc245007b685ff3dc423b143acf9ae22b4a5b/applications/manufacturing/data/ManufacturingScheduledServices.xml#L39


PS. Attachments are filtered out on lists, so you could store the image on
platforms like google drive, dropbox, etc, and share the link here.

HTH

Thanks and Regards,
Aditya Sharma

On Tue, Apr 18, 2023 at 3:53 PM Mahi maheshwari 
wrote:

> Hello Community,
>
> Is there a way to find and access the job Id and job name inside a Java
> service?
> I have a service "SendEmailService" written in Java for mail notification,
> for this, I have created the job in jobSandBox.
> whenever the "SendEmailService" service is called by the scheduler then
> inside this service, I want to know the job name associated with that
> service for the calling service.
> I'm attaching the image below, please take a look at the attachment for
> reference.
>
> *for example: *
> SendEmailService(HttpServletRequest request, HttpServletResponse response){
>  code to get a job id and job name
> }
>
> Regards,
> Maheshwari.
>


Re: How to add manual order adjustment

2022-11-21 Thread Aditya Sharma
Hello Emad,

I think you could do it with Edit items under Actions
https://demo-trunk.ofbiz.apache.org/ordermgr/control/editOrderItems?orderId=WSCO1

HTH

Thanks and Regards,
Aditya Sharma


On Mon, Nov 21, 2022 at 5:42 PM Emad Radwan  wrote:

> Hello Community,
>
> Would you please guide me to the user interface to achieve this?
>
> Regards,
> Emad
>


Re: JQuery validation in ofbiz

2022-08-09 Thread Aditya Sharma
Hello Avijit,

Checkout the markup on EditExampleFeature page by inspecting (dev tools):
https://demo-stable.ofbiz.apache.org/example/control/EditExampleFeature

*

Description  

*

*
This field is required.  *




Follow JQuery Validation official documentation:
https://jqueryvalidation.org/documentation/

Refer demo:
https://jqueryvalidation.org/files/demo/marketo/

HTH

Thanks and Regards,
Aditya Sharma



On Mon, Aug 8, 2022 at 7:26 PM Avijit Bose  wrote:

> Hi Aditya,
>
> Could you pls clarify more by giving an example if possible?
>
> regards
> Avijit
>
> On Mon, Aug 8, 2022 at 10:38 AM Aditya Sharma 
> wrote:
>
> > Hello Avijit,
> >
> > >> Question 1: How do I use jquery validation in ftl forms?
> > Add class requireValidation to form
> >
> > Reference implementation of form macro:
> >
> >
> https://github.com/apache/ofbiz-framework/blob/release18.12/themes/common-theme/template/macro/HtmlFormMacroLibrary.ftl#L247
> >
> > Implementation that initialises the validate plugin on form:
> >
> >
> https://github.com/apache/ofbiz-framework/blob/release18.12/themes/common-theme/webapp/common/js/util/OfbizUtil.js#L259
> >
> >
> >
> > >> Question 2: How do I upgrade the jquery version to the latest version?
> > You need to download and replace files here
> >
> >
> https://github.com/apache/ofbiz-framework/tree/release18.12/themes/common-theme/webapp/common/js/jquery/plugins/validate
> >
> >
> > HTH
> >
> > Thanks and Regards,
> > Aditya Sharma
> >
> > On Sun, Aug 7, 2022 at 10:58 AM Avijit Bose 
> wrote:
> >
> > > Hello,
> > >
> > > It seems that currently ofbiz 18.12.05 is using jquery version 3.5.1.
> > >
> > > Question 1: How do I use jquery validation in ftl forms?
> > >
> > > Question 2: How do I upgrade the jquery version to the latest version?
> > >
> > > regards
> > > Avijit
> > >
> >
>


Re: JQuery validation in ofbiz

2022-08-07 Thread Aditya Sharma
Hello Avijit,

>> Question 1: How do I use jquery validation in ftl forms?
Add class requireValidation to form

Reference implementation of form macro:
https://github.com/apache/ofbiz-framework/blob/release18.12/themes/common-theme/template/macro/HtmlFormMacroLibrary.ftl#L247

Implementation that initialises the validate plugin on form:
https://github.com/apache/ofbiz-framework/blob/release18.12/themes/common-theme/webapp/common/js/util/OfbizUtil.js#L259



>> Question 2: How do I upgrade the jquery version to the latest version?
You need to download and replace files here
https://github.com/apache/ofbiz-framework/tree/release18.12/themes/common-theme/webapp/common/js/jquery/plugins/validate


HTH

Thanks and Regards,
Aditya Sharma

On Sun, Aug 7, 2022 at 10:58 AM Avijit Bose  wrote:

> Hello,
>
> It seems that currently ofbiz 18.12.05 is using jquery version 3.5.1.
>
> Question 1: How do I use jquery validation in ftl forms?
>
> Question 2: How do I upgrade the jquery version to the latest version?
>
> regards
> Avijit
>


Re: Where is Quote Item

2022-05-18 Thread Aditya Sharma
Hello Emad,

I think this could be done from Quote items page
https://demo-trunk.ofbiz.apache.org/ordermgr/control/ListQuoteItems?quoteId=CQ0001

Steps to navigate to quote items page:
1. Create a quote
2. Navigate to view quote page
3. Click items

HTH

Thanks and Regards,
Aditya Sharma


On Wed, May 18, 2022 at 3:00 AM Emad Radwan  wrote:

> Hello Community,
>
>
> I’m on the latest version of Ofbiz now and trying to create a new Quote
> which was ok but can’t find a link to add items to it. Where can I find
> that?
>
> Regards,
> Emad


Re: Vendor vs supplier

2022-02-15 Thread Aditya Sharma
Hello Emad,

Refer to https://markmail.org/thread/s5t65z3zxemzs3eb


HTH
Thanks and Regards,
Aditya Sharma


On Tue, Feb 15, 2022 at 1:43 PM Emad Radwan  wrote:

> Hello Community,
>
> What is the difference in Ofbiz between vendor and supplier?
>
> Regards
> Emad
>


Re: How to pull data from the tables and display that data into ftl files

2022-01-19 Thread Aditya Sharma
Hello Mahi,

You could use EntityQuery in ftl.

Refer below code:
https://github.com/apache/ofbiz-plugins/blob/trunk/projectmgr/template/project/EditTaskAndAssoc.ftl#L94

HTH

Thanks and Regards,
Aditya Sharma


On Thu, Jan 20, 2022 at 11:22 AM Mahi maheshwari 
wrote:

> Hi,
>
> I have few ftl files which are dashboards in my plugin.
> these ftl files has forms, text boxes and buttons in it. my requirement is
> to fetch the data from the tables(only required columns) and show that
> table data in the text boxes of ftl page.
> for example : I have a text box with label product name in the ftl page .I
> want to display the product name by fetching the data from the product
> table.
>
> can anyone suggest me how can I achieve this?
>
> Thank you,
> Best regards,
> Maheshwari.
>


Re: how to clear data inside tables

2021-11-28 Thread Aditya Sharma
Hello Mahi,

If you are using the default derby database, use
gradlew cleanAll
https://github.com/apache/ofbiz-framework#clean-system-and-load-the-complete-ofbiz-data

and then load reader command with specific readers

if you are using any other database, you need to manually delete, recreate
an empty database and load data with specific readers.

HTH

Thanks & Regards,
Aditya Sharma

On Sun, Nov 28, 2021 at 9:09 PM Mahi maheshwari 
wrote:

> Hi,
>
> I have loaded the data using the command "gradlew loadAll" but now I don't
> want data inside all tables. I want to clear the data and want to load my
> own data. I used  gradlew "ofbiz --load-data readers=seed".
>
> Regards,
> Maheshwari.
>


Re: CSS not loading

2021-11-15 Thread Aditya Sharma
Hello Justine,

Have you checked if files exist under
themes\common-theme\webapp\common\js\node_modules as shared by Jacques?

if not, you could explicitly install js libraries with following command:
./gradlew npmInstall

Thanks and regards,
Aditya Sharma



On Tue, Nov 16, 2021 at 3:52 AM Justine Nowak  wrote:

> Hi Jacques,
>
> We are using Mysql, what command would we use for Mysql.
>
>
> On Mon, Nov 15, 2021 at 3:08 AM Jacques Le Roux <
> jacques.le.r...@les7arts.com> wrote:
>
> > Hi Justine,
> >
> > Are you using Derby (OOTB DBMS) or another external DBMS like Postgres?
> > In the 1st case simply try "gradlew cleanData loadAll ofbiz"
> >
> > HTH
> >
> > Jacques
> >
> > Le 14/11/2021 à 20:32, Justine Nowak a écrit :
> > > Hello,
> > >
> > > We rebuilt Ofbiz to get the NPM to load all the files and we now get
> the
> > > following error on our website.
> > >
> > > *Type* Exception Report
> > >
> > > *Message* Could not get next sequenced ID for sequence name: Visit
> > >
> > > *Description* The server encountered an unexpected condition that
> > prevented
> > > it from fulfilling the request.
> > >
> > > *Exception*
> > >
> > > java.lang.IllegalArgumentException: Could not get next sequenced ID
> > > for sequence name: Visit
> > >
> >
> org.apache.ofbiz.entity.GenericDelegator.getNextSeqId(GenericDelegator.java:2362)
> > >
> >
> org.apache.ofbiz.entity.GenericDelegator.getNextSeqId(GenericDelegator.java:2349)
> > >
> >
> org.apache.ofbiz.entity.GenericEntity.setNextSeqId(GenericEntity.java:726)
> > >
> >
> org.apache.ofbiz.entity.GenericDelegator.createSetNextSeqId(GenericDelegator.java:784)
> > >
> >
> org.apache.ofbiz.webapp.stats.VisitHandler.getVisit(VisitHandler.java:189)
> > >
> >
> org.apache.ofbiz.webapp.stats.VisitHandler.getVisitId(VisitHandler.java:100)
> > >
> >
> org.apache.ofbiz.webapp.control.ControlServlet.handle(ControlServlet.java:214)
> > >
> >
> org.apache.ofbiz.webapp.control.ControlServlet.doGet(ControlServlet.java:96)
> > >   javax.servlet.http.HttpServlet.service(HttpServlet.java:655)
> > >   javax.servlet.http.HttpServlet.service(HttpServlet.java:764)
> > >
> >  org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)
> > >
> >
> org.apache.ofbiz.webapp.control.SameSiteFilter.doFilter(SameSiteFilter.java:45)
> > >
> >
> org.apache.ofbiz.webapp.control.ContextFilter.doFilter(ContextFilter.java:185)
> > >
> >
> org.apache.ofbiz.webapp.control.ControlFilter.doFilter(ControlFilter.java:156)
> > >   javax.servlet.http.HttpFilter.doFilter(HttpFilter.java:57)
> > >
> >
> org.apache.logging.log4j.web.Log4jServletFilter.doFilter(Log4jServletFilter.java:71)
> > >
> > > *Note* The full stack trace of the root cause is available in the
> server
> > > logs.
> > >
> > >
> > >
> > >
> > > On Sun, Nov 14, 2021 at 1:22 AM Jacques Le Roux <
> > > jacques.le.r...@les7arts.com> wrote:
> > >
> > >> Hi Justine,
> > >>
> > >> Actually it's normally loaded by npm when you build OFBiz with Gradle.
> > >> Gradle uses the
> > >> https://plugins.gradle.org/plugin/com.github.node-gradle.node plugin
> > for
> > >> executing loading few js libs.
> > >>
> > >> What are you actually doing "When [you] go to open the JS files
> tomcat"?
> > >>
> > >>
> > >> Le 14/11/2021 à 06:17, Justine Nowak a écrit :
> > >>> Hi Jacques,
> > >>>
> > >>> When I go to open the JS files tomcat gives me this output- The
> > requested
> > >>> resource [/common/js/node_modules/jquery/dist/jquery.min.js] is not
> > >>> available
> > >>>
> > >>> Where do I download the JS libs or does NPM do that?
> > >>>
> > >>>
> > >>> On Sat, Nov 13, 2021 at 2:48 AM Jacques Le Roux <
> > >>> jacques.le.r...@les7arts.com> wrote:
> > >>>
> > >>>> Forgot: note that when I speak about trunk and R18 I always speak
> > about
> > >>>> the HEAD versions, ie the last up to date versions.
> > >>>>
> > >>>> Le 13/11/2021 à 09:38, Jacques Le Roux a écrit :
> > >>>>> Hi Jus

Re: Custom Pricing on eCommerce Storefront

2021-10-06 Thread Aditya Sharma
Hello Justine,

Here you could find list of price types available:
https://demo-trunk.ofbiz.apache.org/webtools/control/entity/find/ProductPriceType

Here you could find the seed data for the same:
https://github.com/apache/ofbiz-framework/blob/75d3367d47abae604126a97a80e715a798e7fc55/applications/datamodel/data/seed/ProductSeedData.xml#L271

You could create prices for specific price types:
https://demo-trunk.ofbiz.apache.org/catalog/control/EditProductPrices?productId=WG-9943

For custom values, you could just create data in ProductPriceType entity.

HTH
Thanks and Regards,
Aditya Sharma


On Wed, Oct 6, 2021 at 11:29 AM Justine Nowak  wrote:

> Hello,
>
> We want to add custom pricing types to our products. For example, we have a
> product that will have a "Default Price" (this is what gets charged to the
> invoice), but we also need to add other price types for example, Resell
> Price / MSRP / MAP price. How do we create these new types and have them
> show up on the eCommerce site without them interfering with the actual
> selling price?
>
> -Justine
>


Re: Product Minimum Quantity

2021-10-05 Thread Aditya Sharma
Hi Justine,

I think what you are looking for is Unit of Measure. Check this product:
https://demo-trunk.ofbiz.apache.org/ecommerce/micro-chrome-widget-WG--p

Checkout the data setup for this product here:
https://github.com/apache/ofbiz-framework/blob/75d3367d47abae604126a97a80e715a798e7fc55/applications/datamodel/data/demo/OrderDemoData.xml#L564
https://github.com/apache/ofbiz-framework/blob/75d3367d47abae604126a97a80e715a798e7fc55/applications/datamodel/data/demo/OrderDemoData.xml#L1837

HTH

Thanks and Regards,
Aditya Sharma


On Wed, Oct 6, 2021 at 1:07 AM Justine Nowak  wrote:

> Hello,
>
> We have a product that requires is sold as 24 units how do we have the
> system require the user to increment by 24 each time.
>


Re: "gradlew cleanAll loadAll ofbiz" command showing errors

2021-09-10 Thread Aditya Sharma
Hello Sheetal,

Welcome to the Apache OFBiz ecosystem!

Thanks for sharing your concern! I think it would be good if you could
share some more details on the specific test cases failing for windows.

You could find the details about the skipping the test cases in Readme file:

https://github.com/apache/ofbiz-framework/tree/release18.12#types-of-tasks-in-gradle

Dependent tasks can be skipped with the -x switch. Example: gradlew build
> -x test does not run the tests within the build.
>

Thanks and Regards,
Aditya Sharma



On Wed, Sep 8, 2021 at 3:06 PM sheetal jain  wrote:

> Hello everyone,
>
> I am new to the apache ofbiz framework and I have started following its
> beginner tutorial for the 18.12 release. I am following all the
> instructions given in the tutorial likewise. I was able to clone the
> repository successfully, but the command for running the ofbiz showed
> errors for multiple test cases.
>
> This is the configuration of my laptop:
> 1. OS Name: Microsoft Windows 10 Pro
> 2. Version: 10.0.18363 Build 18363
> 3. Processor: Intel (R) Core (TM) i7-5600U CPU @ 2.60GHz, 2601 MHz, 2
> Core(s), 4 Logical Processor(s)
> 4. System Model: HP EliteBook 840 G2
> Installed
> 5. Physical Memory (RAM): 8.00 GB
>
> After a lot of debugging, exploring and discussing this problem with my
> mentors and peers, somehow we managed to find the solution.
> Instead of writing the command "gradlew cleanAll loadAll ofbiz" for running
> the ofbiz for my windows OS configuration laptop following commands worked
> for running the ofbiz in the given order:
>
> "gradlew loadAll -x test"
> "gradlew ofbiz -x test"
>
> I have faced a lot of problems while running the command given in the
> tutorial. I discussed this with my colleagues and I got to know most
> windows users are facing this problem. I feel these commands should be
> there in the documentation which would be helpful for many users like me.
> It would be highly appreciated if the foundation adds these commands along
> with the present command to run the ofbiz.
>
> With Regards,
> Sheetal Jain
>


Apache OFBiz Blog Updates - May 2021

2021-07-01 Thread Aditya Sharma
Hi Everyone,

Hope you all are well and safe!

A brief summary of our project news for May month can be found in our
monthly blog update at the link below:
https://s.apache.org/ofbiz-news-may-2021

This month we have news about the new Facelift Rainbowstone theme, and Helm
charts for Kubernetes along with the usual list of features, improvements,
and Statistics.

Thanks to Jacques Le Roux, Michael Brohl, Mridul Pathak, Pranay Pandey,
Sharan Foga, Suraj Khurana, and Swapnil M Mane for their continued support.

We are also actively sharing our regular updates on social media platforms.
If you haven't connected with us yet, here are the quick links:
LinkedIn: https://s.apache.org/a181s
Twitter: https://s.apache.org/12w5t
Facebook: https://s.apache.org/la83r

--
Thanks & Regards,
Aditya Sharma


Re: Request for contributor accesso

2021-06-06 Thread Aditya Sharma
Hi Raja,

I have provided you the access. Please add yourself.

Thanks and Regards,
Aditya Sharma

On Mon, Jun 7, 2021 at 9:18 AM RajaDurai Krishnamoorthy <
k.rajadu...@gmail.com> wrote:

> Can i request to grant me access to
> https://cwiki.apache.org/confluence/display/OFBIZ/Apache+OFBiz+Contributors
> ?
> This will help me to add my name into the list.
>
>
> My user id is k.rajadu...@gmail.com
>
> Regards,
> Raja
>
>
> On Sun, May 30, 2021 at 9:13 PM RajaDurai Krishnamoorthy <
> k.rajadu...@gmail.com> wrote:
>
> > Hi Aditya,
> >
> > Thanks for adding me to jira.
> >
> > Looks like there was some issue with my confluence registration. i have
> > completed the registration now with the same user id .  Can you please
> > check?
> >
> > Regards,
> > Raja
> >
> >
> > On Fri, May 28, 2021 at 10:47 AM Aditya Sharma 
> > wrote:
> >
> >> Hi Raja,
> >>
> >> I have added you as a contributor on Jira[1], but couldn't find you on
> >> confluence[2]. Could you please verify the username?
> >>
> >>
> >> 1. https://issues.apache.org/jira/
> >> 2. https://cwiki.apache.org/confluence
> >>
> >> Thanks and Regards,
> >> Aditya Sharma
> >>
> >>
> >> On Fri, May 7, 2021 at 7:26 PM RajaDurai Krishnamoorthy <
> >> k.rajadu...@gmail.com> wrote:
> >>
> >> > Hi,
> >> >
> >> > Good Day!
> >> >
> >> > I am Rajadurai and interested in contributing to ofbiz
> >> >
> >> > Here are my details.
> >> >
> >> > First Name: Rajadurai
> >> > Last Name: Krishnamoorthy
> >> > user name: k.rajadu...@gmail.com
> >> > Email : k.rajadu...@gmail.com
> >> >
> >> > Please provide me the contributor access
> >> >
> >> > I have signed the ICLA
> >> >
> >> > Thanks & Regards,
> >> > Raja
> >> >
> >>
> >
> >
> > --
> > Thanks,
> > Raja
> >
>
>
> --
> Thanks,
> Raja
>


Re: Request for contributor accesso

2021-05-27 Thread Aditya Sharma
Hi Raja,

I have added you as a contributor on Jira[1], but couldn't find you on
confluence[2]. Could you please verify the username?


1. https://issues.apache.org/jira/
2. https://cwiki.apache.org/confluence

Thanks and Regards,
Aditya Sharma


On Fri, May 7, 2021 at 7:26 PM RajaDurai Krishnamoorthy <
k.rajadu...@gmail.com> wrote:

> Hi,
>
> Good Day!
>
> I am Rajadurai and interested in contributing to ofbiz
>
> Here are my details.
>
> First Name: Rajadurai
> Last Name: Krishnamoorthy
> user name: k.rajadu...@gmail.com
> Email : k.rajadu...@gmail.com
>
> Please provide me the contributor access
>
> I have signed the ICLA
>
> Thanks & Regards,
> Raja
>


Apache OFBiz Blog Updates - April 2021

2021-05-12 Thread Aditya Sharma
Hi Everyone,

Hope you all are well and safe!

A brief summary of our project news for April month can be found in our
monthly blog update at the link below:
https://s.apache.org/ofbiz-news-april-2021

This month we have news about the new release, new contributors, and
ongoing effort to improve REST support along with the usual list of
features, improvements, and Statistics.

Thanks to Jacques Le Roux, Michael Brohl, Mridul Pathak, Pranay Pandey,
Sharan Foga, Suraj Khurana, and Swapnil M Mane for their continued support.

We are also actively sharing our regular updates on social media platforms.
If you haven't connected with us yet, here are the quick links:
LinkedIn: https://s.apache.org/a181s
Twitter: https://s.apache.org/12w5t
Facebook: https://s.apache.org/la83r

--
Thanks & Regards,
Aditya Sharma


Apache OFBiz Blog Updates - March 2021

2021-04-29 Thread Aditya Sharma
Hi Everyone,

Hope you all are well and safe!

A brief summary of our project news for March month can be found in our
monthly blog update at the link below:
https://s.apache.org/ofbiz-news-march-2021

This month we have news about the new release, and new committers along
with our usual list of features, improvements, and Statistics.

Thanks to Jacques Le Roux, Michael Brohl, Mridul Pathak, Pranay Pandey,
Sharan Foga, Suraj Khurana, and Swapnil M Mane for their continued support.

We are also actively sharing our regular updates on social media platforms.
If you haven't followed us yet, here are the quick links:
LinkedIn: https://s.apache.org/a181s
Twitter: https://s.apache.org/12w5t
Facebook: https://s.apache.org/la83r

--
Thanks & Regards,
Aditya Sharma


Apache OFBiz Blog Updates - February 2021

2021-03-23 Thread Aditya Sharma
Hi Everyone,

A brief summary of our project news for February month can be found in our
monthly blog update at the link below:
https://s.apache.org/ofbiz-news-feb-2021

This month we have news about JCenter shutdown, Java Open JDK 11 & 17
support, and Customer journey with an E-commerce discussion series along
with our usual list of features, improvements, and Statistics.

Thanks to Jacques Le Roux, Michael Brohl, Mridul Pathak, Pranay Pandey,
Sharan Foga, Suraj Khurana, and Swapnil M Mane for their continued support.

We are also actively sharing our regular updates on social media platforms.
If you haven't followed us yet, here are the quick links:
LinkedIn: https://s.apache.org/a181s
Twitter: https://s.apache.org/12w5t
Facebook: https://s.apache.org/la83r

--
Thanks & Regards,
Aditya Sharma


Re: Can't have same invoiceID for invoices created in different years

2021-02-21 Thread Aditya Sharma
Hi Andrie,

Though accounting is not forte, I think you could use the reference number
field to store the external invoice id and let the invoiceId be the
system's auto-generated value.

HTH
Thanks and regards,
Aditya Sharma

On Sun, Feb 21, 2021 at 4:38 PM Andrei Stan  wrote:

> Hello Michael,
> Thank you for reply.
> Can you suggest any best practices when having multiple invoices and at
> the end of the (fiscal) year one wishes to reset the invoice counter?
> Is there an option in ofbiz to do that?
> Thanks,
> A.
>
> On 21.02.2021 00:28, Michael Brohl wrote:
> > Hi Andrei,
> >
> > if you load data through XML files, there is no application logic in
> > play. It's a plain import to the database.
> >
> > So if you load invoices with the same invoice id (which is the primary
> > key for the invoice table), the second dataset will overwrite the first.
> >
> > The mentioned setting will not help with the problem during import.
> > Because of the primary key, you cannot have the same invoice id twice
> > so *I guess* the setting will generate an invoice id with the year and
> > id (like 2021-1 or similar). But I'm not sure though...
> >
> > Regards,
> >
> > Michael Brohl
> >
> > ecomify GmbH - www.ecomify.de
> >
> >
> > Am 20.02.21 um 09:48 schrieb Andrei Stan:
> >> Hello everyone,
> >>
> >> I want to import some of my old invoices into ofbiz, and some of
> >> those invoices have
> >>
> >> the same id, but were created in different time periods, different
> >> years.
> >>
> >> So, for example, i have *EU-1 *created in 2019**and *EU-1 *created in
> >> 2020.
> >>
> >> When importing the xml file with data for company, invoices etc.,
> >> only one of those two duplicates is imported, without erros from
> >> ofbiz's side.
> >>
> >> Have anybody tried this in the Accounting Preferences by set the *Old
> >> Invoice Sequence Enum ID *to *Restart on Fiscal Year (no gaps, per
> >> org, reset to one each year) *??
> >>
> >> Thank you,
> >>
> >> A.
> >>
> >>
>


Re: Add CSS/JS to backend theme from plugin

2021-02-16 Thread Aditya Sharma
Hi Ingo,

You may refer to documentation in themes.adoc[1]. Though I am not sure if
this is the right solution, maybe you can create your own theme extending
the existing one[2]

HTH

1.
https://github.com/apache/ofbiz-framework/blob/trunk/themes/docs/themes.adoc
2.
https://github.com/apache/ofbiz-framework/blob/trunk/themes/docs/themes.adoc#extends-common-theme

Thanks and regards,
Aditya Sharma

On Tue, Feb 16, 2021 at 5:58 PM Ingo Wolfmayr 
wrote:

> Hi everybody,
>
> is it possible to add a javascript/css from an addon to an existing
> backend theme.
>
> Case: I have created a plugin that provides various reports via portlets.
> Now I want to use the portlet logic to show those reports on different
> places like accounting, catalog a.s.o. Therefore I want the necessary
> JS/CSS files loaded for the whole theme - not for the plugin only.
>
> Long time ago I would have added those scripts via VisualThemeResource :)
> If possible I do not want to touch the original theme and I want to avoid
> creating a new plugin just for the purpose of providing those filed.
>
> Every idea would be highly appreciated.
>
> Best regards,
> Ingo
>


Apache OFBiz Blog Updates - January 2021

2021-02-16 Thread Aditya Sharma
Hi Everyone,

A brief summary of our project news for January month can be found in our
monthly blog update at the link below:
https://s.apache.org/z8ikk

This month we also share with you some highlights from 2020 with our
updates about new PMC members, release, user stories, and OMS discussions
along with our usual list of features, improvements, and Statistics.

Thanks to Jacques Le Roux, Michael Brohl, Mridul Pathak, Pranay Pandey,
Sharan Foga, Suraj Khurana, and Swapnil M Mane for their continued support.

We are also actively sharing our regular updates on social media platforms.
If you haven't followed us yet, here are the quick links:
LinkedIn: https://s.apache.org/a181s
Twitter: https://s.apache.org/12w5t
Facebook: https://s.apache.org/la83r

--
Thanks & Regards,
Aditya Sharma


Re: OFBIZ

2021-02-11 Thread Aditya Sharma
Hi Neil,

For Chart of accounts, refer:
https://ci.apache.org/projects/ofbiz/site/trunk/ofbizdoc/html5/user-manual.html#_master_template_chart_of_accounts

Attachments are moderated on this list. Please add your file on Google
Drive/Dropbox(or any similar platform) and share the link

Thanks and regards,
Aditya Sharma

On Wed, Feb 10, 2021 at 4:22 PM Neil Widdowson 
wrote:

> Do you know how to fix this error that I get when i try to seed it?
> [image: image.png]
>
> Thanks
> Neil
>
> On Wed, 10 Feb 2021 at 10:25, Neil Widdowson 
> wrote:
>
>> Hi
>>
>> Thanks very much, are there instructions on how to set up the core bits I
>> need like chart of accounts? Everything seems to rely on something else so
>> I'd like to know which bits I need to set up first. :)
>>
>> Thanks
>> Neil
>>
>> On Wed, 10 Feb 2021 at 04:28, Aditya Sharma 
>> wrote:
>>
>>> Hi Neil,
>>>
>>> Welcome to the Apache OFBiz ecosystem!
>>>
>>>
>>> https://cwiki.apache.org/confluence/display/OFBIZ/How+to+Install+OFBiz+without+the+Demo+Data
>>>
>>> Refer to these links:
>>>
>>> https://ci.apache.org/projects/ofbiz/site/stable/readme/html5/README.html#data-loading-tasks
>>> https://github.com/apache/ofbiz-framework/blob/trunk/INSTALL#L46
>>>
>>> HTH
>>> Thanks and Regards,
>>> Aditya Sharma
>>>
>>> On Wed, Feb 10, 2021 at 5:15 AM Neil Widdowson >> >
>>> wrote:
>>>
>>> > Hi
>>> >
>>> > I hope I've got the right address/idea for this subscription...
>>> >
>>> > I've been playing with the OFBIZ demo, but now I want to start using
>>> it for
>>> > myself, is there any way to remove the demo data (like invoices etc)
>>> so I
>>> > have a clean slate to start from?
>>> >
>>> > Thanks
>>> > Neil
>>> >
>>>
>>


Re: OFBIZ

2021-02-09 Thread Aditya Sharma
Hi Neil,

Welcome to the Apache OFBiz ecosystem!

https://cwiki.apache.org/confluence/display/OFBIZ/How+to+Install+OFBiz+without+the+Demo+Data

Refer to these links:
https://ci.apache.org/projects/ofbiz/site/stable/readme/html5/README.html#data-loading-tasks
https://github.com/apache/ofbiz-framework/blob/trunk/INSTALL#L46

HTH
Thanks and Regards,
Aditya Sharma

On Wed, Feb 10, 2021 at 5:15 AM Neil Widdowson 
wrote:

> Hi
>
> I hope I've got the right address/idea for this subscription...
>
> I've been playing with the OFBIZ demo, but now I want to start using it for
> myself, is there any way to remove the demo data (like invoices etc) so I
> have a clean slate to start from?
>
> Thanks
> Neil
>


Re: What technology do you choose for Party data model?

2021-01-12 Thread Aditya Sharma
Hello Xinhuan,

Adding to Pritam's answer, you can also refer to Big Book for the data
model diagrams.

https://cwiki.apache.org/confluence/display/OFBIZ/Data+Model+Diagrams
https://cwiki.apache.org/confluence/display/OFBIZ/Data+Model+Diagrams?preview=/13271792/74681796/OFBizDatamodelBook_Combined_20171001.pdf

Also, the documentation from ASCII docs for the business side:
https://ci.apache.org/projects/ofbiz/site/trunk/ofbizdoc/html5/user-manual.html#_party

Thanks and regards,
Aditya Sharma

On Tue, Jan 12, 2021 at 1:06 PM Pritam Kute 
wrote:

> Hello Xinhuan,
>
> You can refer the official website[1] of the Apache OFBiz to get to know
> about OOTB capabilities. Also, I recommend OFBiz Wiki[2] for a better
> understanding of OFBiz at technical as well as the business side.
>
> [1] : https://ofbiz.apache.org/index.html
> [2] : https://cwiki.apache.org/confluence/display/OFBIZ/Home
>
> Kind Regards,
> --
> Pritam Kute
>
>
> On Fri, Jan 8, 2021 at 11:38 PM Xinhuan Zheng 
> wrote:
>
> > Hello Mr. Pritam,
> >
> > Thank you for your email. Can you please provide me more resource
> > information about OFBiz OOTB capabilities?
> >
> > Sorry for the unclear question about the Party data model. Initially the
> > business won't have too many product skus, but it will definitely have
> > limited number of product skus, suppliers, and orders. However, those
> types
> > of data won't pour in all at the same time. The very first data to be
> > stored initially is Party data, like suppliers including those who are
> > candidates, even though they may not be the real ones. So that's why I
> > include Excel spreadsheet, or Exchange database. In my mind, the Excel
> > spreadsheet can store the same kind of Party data, and the Exchange
> > database can store the communication messages, even without more
> > sophisticated  technology like MySQL. That's just my understanding. But I
> > wonder if the community would have the same view as me.
> >
> > - Xinhuan
> >
> > On Fri, Jan 8, 2021 at 12:27 AM Pritam Kute <
> pritam.k...@hotwaxsystems.com
> > >
> > wrote:
> >
> > > Hello Xinhuan,
> > >
> > > Happy to see that you choose Apache OFBiz for your business needs.
> Based
> > on
> > > the overall outline of the business you are thinking of, the OFBiz has
> > OOTB
> > > capabilities to fulfil all your requirements.
> > >
> > > The question about party data model is little unclear to me but I will
> > > recommend you to go with MySQL database for storing the data. MySQL
> > > integration is seamless with Apache OFBiz and a lot of live projects on
> > top
> > > of Apache OFBiz are using MySQL from years.
> > >
> > > Kind Regards,
> > > --
> > > Pritam Kute
> > >
> > >
> > > On Thu, Jan 7, 2021 at 10:46 PM Xinhuan Zheng  >
> > > wrote:
> > >
> > > > I am reviewing Apache OFbiz Data Model book -
> > > >
> > >
> >
> https://cwiki.apache.org/confluence/download/attachments/13271792/OFBizDatamodelBook_Combined_20171001.pdf?api=v2
> > > ,
> > > > Page 8 - 9, the Party, Contact, Communication, and Security data
> model.
> > > One
> > > > question just comes up into my mind.
> > > >
> > > > Suppose this is a Catalog Order business. It has products of books,
> > DVDs,
> > > > supplies (for example, certain cups used in certain ceremony) that
> are
> > > all
> > > > not perishable. When catalogs are printed and sent to prospects, the
> > > > business takes the order, fulfills the order from inventoried product
> > > > items. Obviously, the business needs to store product items before
> > orders
> > > > come in. This will involve in purchase orders from suppliers. This is
> > an
> > > > outline of the business.
> > > >
> > > > The goal is to keep business process consistent, efficient, and
> > > obviously,
> > > > with limited budget of finance and human resources. So technology is
> > > > carefully compared, and Apache OFBiz comes out as a potential
> > candidate.
> > > >
> > > > By analyzing the Apache OFbiz Party data model, as the link
> referenced
> > > > above, combining with the outlined business process and the goal,
> what
> > > > technology do you choose just for Party data model (including Party,
> > > > Contact, Communication, Security)? I am listing below potential
> > > > technologies:
> > > >
> > > > 1. Microsoft Excel Spreadsheet
> > > > 2. Microsoft Exchange Database
> > > > 3. MySQL Database
> > > > 4. Mongo Database
> > > > 5. Oracle Database
> > > >
> > > > Thanks!
> > > >
> > > >
> > >
> >
>


Apache OFBiz Blog Updates - December 2020

2021-01-11 Thread Aditya Sharma
Hi Everyone,

A brief summary of our project news for December month can be found in our
monthly blog update at the link below:
https://s.apache.org/2e4wl

This month we have news about Docker adoption, a new tutorial effort, and
OMS discussions along with our usual list of features, improvements, and
Statistics.

Thanks to Deepak Dixit, Jacques Le Roux, Michael Brohl, Mridul Pathak,
Pranay Pandey, Sharan Foga, Suraj Khurana and, Swapnil M Mane for their
continued support.

We are also actively sharing our regular updates on social media platforms.
If you haven't followed us yet, here are the quick links:
LinkedIn: https://s.apache.org/a181s
Twitter: https://s.apache.org/12w5t
Facebook: https://s.apache.org/la83r

--
Thanks & Regards,
Aditya Sharma


Re: GST india

2020-12-09 Thread Aditya Sharma
Hi Nanjunda Murthy,

Your message has been moderated, else it would not have reached this
Mailing List.

Please subscribe to the mailing list, See why here
http://ofbiz.apache.org/mailing-lists.html.

You will get better support, people can answer you on the ML. The wider the
audience the better the answers you might get.

Also, it's more work for moderators who have to accept your messages as
long as you have not subscribed.

Thanks and regards,
Aditya Sharma

On Thu, Dec 10, 2020 at 12:36 PM NANJUNDA MURTHY 
wrote:

> Good Evening Friends
>
> Just Few Month Before I Become To Know Apache Ofbiz Open Source is Done
> Everything ERP activity, i plan to install it how to customize it For Gst
> India Setup
>


Apache OFBiz Blog Updates - November 2020

2020-12-07 Thread Aditya Sharma
Hi Everyone,

A brief summary of our project news for November month can be found in
our monthly blog update at the link below:
https://s.apache.org/7o0ka

Thanks to Deepak Dixit, Jacques Le Roux, Michael Brohl, Mridul Pathak,
Pranay Pandey, Sharan Foga, Suraj Khurana and, Swapnil M Mane for
their continued support.

We are also actively sharing our regular updates on social media
platforms. If you haven't followed us yet, here are the quick links:
LinkedIn: https://s.apache.org/a181s
Twitter: https://s.apache.org/12w5t
Facebook: https://s.apache.org/la83r

--
Thanks & Regards,
Aditya Sharma


Re: Can't build OFBiz

2020-12-07 Thread Aditya Sharma
Hi Tomek,

Your message has been moderated, else it would not have reached this
Mailing List.

Please subscribe to the mailing list, See why here
http://ofbiz.apache.org/mailing-lists.html.

You will get better support, people can answer you on the ML. The wider the
audience the better the answers you might get.

Also, it's more work for moderators who have to accept your messages as
long as you have not subscribed.

I would recommend you to ask such queries on the user mailing as the list
is intended for such a purpose.
http://ofbiz.apache.org/mailing-lists.html

Also, please share some more details about the OFBiz setup like the
version, environment, etc so that others may identify the issue and help
you better.

Thanks and Regards,
Aditya Sharma


On Mon, Dec 7, 2020 at 6:03 PM Tomek  wrote:

> I have tried to build OFBiz and I have two errors in file
> MacroFormRendererTest:
>
> /ofbiz/framework/widget/src/test/java/org/apache/ofbiz/widget/renderer/macro/MacroFormRendererTest.java:127:
>
> error: method executeMacro in class FtlWriter cannot be applied to given
> types;
>  ftlWriter.executeMacro(withNotNull(), withNotNull());
>   ^
>required: Appendable,Locale,String
>found: Object,Object
>reason: actual and formal argument lists differ in length
> /ofbiz/framework/widget/src/test/java/org/apache/ofbiz/widget/renderer/macro/MacroFormRendererTest.java:1042:
>
> error: method executeMacro in class FtlWriter cannot be applied to given
> types;
>  ftlWriter.executeMacro(withNotNull(),
> withCapture(macros));
>
> Can anybody help me?
>
> Tomek
>
>


Re: ofbiz account on hub.docker.com was: OFBiz Community Days - November 2020

2020-12-01 Thread Aditya Sharma
Hi Sandeep,

Your message has been moderated, else it would not have reached this
Mailing List.

Please subscribe to the mailing list, See why here
http://ofbiz.apache.org/mailing-lists.html.

You will get better support, people can answer you on the ML. The wider the
audience the better the answers you might get.

Also, it's more work for moderators who have to accept your messages as
long as you have not subscribed.

Thanks and regards,
Aditya Sharma

On Wed, Dec 2, 2020 at 11:37 AM sandeep.k...@gmail.com <
sandeep.k...@gmail.com> wrote:

> Hi Daniel
>
> This github repo is to setup dev environment with MySQL and PostgreSQL
> databases.
>
> For production we need to create a bind mount for content, images and logs
> directories when creating docker image.
>
> Whenever I get a chance will create and push OFBiz Trunk docker image to
> the docker hub with external database support (MySQL and PostgreSQL) and
> also share Dockerfile for reference.
>
> On Mon, Nov 30, 2020 at 4:23 PM Daniel Watford  wrote:
>
> > Hi Sandeep and the folks at Hot Wax,
> >
> > A while back you gave a video presentation regarding Ofbiz in production
> > and spoke about building docker images. I found your repo here -
> > https://github.com/sandeepkose/OFBiz-Docker
> >
> > Have there been any further thoughts for creating docker images for
> ofbiz?
> > Any particular problems/requirements for production usage that Hot Wax
> have
> > found?
> >
> > Thanks,
> >
> > Dan.
> >
> >
> > On Mon, 30 Nov 2020 at 07:55, Daniel Watford  wrote:
> >
> >> Hi Hans,
> >>
> >> It would be great to get images pushed to docker hub.
> >>
> >> I imagine in the first instance we can get regular trunk builds pushed,
> >> using Derby with demo data loaded. This would make local testing a bit
> >> easier for interested parties.
> >>
> >> Next I would like to see specialised docker images with various database
> >> drivers already loaded (assuming there are no license issues with
> >> distribution) along with docker-compose configurations to couple an
> ofbiz
> >> instance with a DBMS.
> >>
> >> The docker-compose configurations might include a method of bind
> mounting
> >> in configuration files and template directories so that users will have
> an
> >> upgrade path without losing any local configuration and customisations
> >> (e.g. invoice templates). We would need to consider backup and restore
> >> mechanisms too. I would also suggest using a reverse-proxy, such as
> >> Traefik, to handle HTTPS and certificate renewal with Lets Encrypt. I'm
> not
> >> sure where we would store these configurations, though. Perhaps in a
> tools
> >> sub-folder on the ofbiz-framework repo?
> >>
> >> Eugen mentioned Kubernetes. I haven't worked with Kubernetes but
> >> understand that it can handle the networking aspects such as HTTPS and
> >> reverse-proxy for us out of the box, so might be worth considering over
> >> docker-compose. I imagine tool choice will depend on the community's
> >> experience. If Kubernetes is considered a progression from compose,
> perhaps
> >> we could start with docker-compose and move on from there in the future.
> >>
> >> I would expect creating and publishing of images to be driven by the
> same
> >> process as regular releases. I assume this is driven by
> >> ofbiz's continuous integration infrastructure so I'd need a better
> >> understanding of how that all works to be able to better contribute.
> >>
> >> I'm not a PMC member, so probably better not to hand the docker hub
> >> credentials to me at the moment. I'd expect the CI infrastructure to be
> >> able to store secrets for use by the docker image publication process,
> so
> >> perhaps better to store credentials there for now.
> >>
> >> Thanks,
> >>
> >> Dan.
> >>
> >> On Mon, 30 Nov 2020 at 00:58, Hans Bakker 
> >> wrote:
> >>
> >>> Hi Daniel,
> >>>
> >>> I started a similar activity about 3 years ago and created and used the
> >>> ofbiz account on hub.docker.com.
> >>>
> >>> if you are ready to start an official ofbiz image there, i can hand
> over
> >>> the account to you or anybody within the PMC,
> >>>
> >>> regards,
> >>>
> >>> Hans Bakker
> >>> antwebsystems.com
> >>>
> >>> On 11/30/20 5:23 AM, Daniel Watford wrote:
> &

Re: Shopify Video Link

2020-12-01 Thread Aditya Sharma
Hi Ajay,

Your message has been moderated, else it would not have reached this
Mailing List.

Please subscribe to the mailing list, See why here
http://ofbiz.apache.org/mailing-lists.html.

You will get better support, people can answer you on the ML. The wider the
audience the better the answers you might get.

Also, it's more work for moderators who have to accept your messages as
long as you have not subscribed.

Thanks and regards,
Aditya Sharma

On Wed, Dec 2, 2020 at 11:37 AM Ajay Yadav
 wrote:

> Hi, Ritesh and Hotwax team,
>
> Did you get time to find the video? I hope you have seen my message.
>
> Best
> Ajay


Re: Party Type Screen Logic

2020-11-15 Thread Aditya Sharma
Hi Emad,

Here is the logic:

Condition to check if the person
https://github.com/apache/ofbiz-framework/blob/trunk/applications/party/widget/partymgr/ProfileScreens.xml#L54

Menu added for the person
https://github.com/apache/ofbiz-framework/blob/trunk/applications/party/widget/partymgr/ProfileScreens.xml#L66

Menu added for the party group
https://github.com/apache/ofbiz-framework/blob/trunk/applications/party/widget/partymgr/ProfileScreens.xml#L105

You can also get a quick reference by inspecting markup in the browser.
https://drive.google.com/file/d/17-1Abb79WrToTd79jLCTKNGJl--0a4x1/view?usp=sharing

I would recommend you to go through the basic tutorial and framework
architecture video to get a better understanding of the flow.

Basic tutorials
https://cwiki.apache.org/confluence/x/dQiQBQ
https://www.youtube.com/playlist?list=PLobIkeUbRXqc-lwvbdbajPJdbWjFm82Dj

Framework Architecture (Old but a lot of it still valid)
https://www.youtube.com/playlist?list=PL199BC2AE602B3D1A

HTH
Thanks and Regards,
Aditya Sharma


On Sun, Nov 15, 2020 at 6:10 PM Emad Radwan  wrote:

> Hi There,
>
> In the find party grid, if I select a person then in the 'view profile'
> page the 'personal information panel'
> lists only fields related to a person while if I select a 'Party Group'
> party like a company then the listed details also reflects that. More over,
> 'Update' button in the 'personal information panel'  points to the relative
> 'Edit' form like 'EditPerson' or 'EditParty', etc.  My question is where
> can I find this logic and is it based on the party type of the party? I
> tried searching but looks like having the 'viewProfile' is a 'Portal Page'
> confuses me a bit.
>
> Regards,
>
> Emad
>


Re: maven search for ofbiz API

2020-11-15 Thread Aditya Sharma
Hi Nicholas,

The Java docs refer to the packages and classes available with Apache OFBiz
for use.

Refer to the following links to get started with OFBiz:
https://ofbiz.apache.org/developers.html
https://ofbiz.apache.org/business-users.html

Useful Documentation
https://cwiki.apache.org/confluence/x/j5CuAg
https://cwiki.apache.org/confluence/x/GoB2
https://cwiki.apache.org/confluence/x/cQFk

HTH

Thanks and regards,
Aditya Sharma

On Mon, Nov 16, 2020 at 2:23 AM Nicholas 
wrote:

> I'm not understanding how to use the API:
>
>
> https://ci.apache.org/projects/ofbiz/site/stable/javadocs/
>
>
> because there's nothing on maven which I could find.  Where is "the"
> API?  The JAR files for the API?  Either in maven or gradle.
>
>
> thanks,
>
>
> Nick
>
>
>


Re: docker

2020-11-15 Thread Aditya Sharma
Hi Nicholas,

These links might help:

https://markmail.org/message/3z3lzswers4asgqu
https://issues.apache.org/jira/browse/OFBIZ-10407 (Refer to Patch and PR)
https://markmail.org/message/y4e24vseqlhpvqrb

HTH

Thanks and Regards,
Aditya Sharma

On Mon, Nov 16, 2020 at 3:19 AM Nicholas 
wrote:

> is there a reference implementation, a docker image?  I was reading:
>
>
>
> http://ofbiz.135035.n4.nabble.com/discussion-provide-official-docker-image-of-Apache-OFBiz-td4722767.html
>
>
> where this was being discussed.
>
>
>
> thanks,
>
>
> Nick
>
>


Apache OFBiz Blog Updates - October 2020

2020-11-05 Thread Aditya Sharma
Hi Everyone,

A brief summary of our project news for October month can be found in our
monthly blog update at the link below:
https://s.apache.org/2q8s1

Thanks to Deepak Dixit, Jacques Le Roux, Michael Brohl, Mridul Pathak,
Pranay Pandey, Sharan Foga, Suraj Khurana and, Swapnil M Mane for their
continued support.

We are also actively sharing our regular updates on social media platforms.
If you haven't followed us yet, here are the quick links:
LinkedIn: https://s.apache.org/a181s
Twitter: https://s.apache.org/12w5t
Facebook: https://s.apache.org/la83r

--
Thanks & Regards,
Aditya Sharma


Apache OFBiz Blog Updates - October 2020

2020-11-05 Thread Aditya Sharma
Hi Everyone,

A brief summary of our project news for October month can be found in our
monthly blog update at the link below:
https://s.apache.org/2q8s1

Thanks to Deepak Dixit, Jacques Le Roux, Michael Brohl, Mridul Pathak,
Pranay Pandey, Sharan Foga, Suraj Khurana and, Swapnil M Mane for their
continued support.

We are also actively sharing our regular updates on social media platforms.
If you haven't followed us yet, here are the quick links:
LinkedIn: https://www.linkedin.com/company/apache-ofbiz/
Twitter: https://twitter.com/ApacheOfbiz
Facebook: https://www.facebook.com/ApacheOFBiz

--
Thanks & Regards,
Aditya Sharma


Re: Question about lookup tag in form widget

2020-11-04 Thread Aditya Sharma
Hi Daors,

Adding to Pawan's answer

Refer macro here
https://github.com/apache/ofbiz-framework/blob/trunk/themes/common-theme/template/macro/HtmlFormMacroLibrary.ftl#L521

JS code can be found here
https://github.com/apache/ofbiz-framework/blob/trunk/themes/common-theme/webapp/common/js/util/OfbizUtil.js#L208

HTH

Thanks and Regards,
Aditya Sharma


On Thu, Nov 5, 2020 at 1:11 PM Pawan Verma 
wrote:

> Hi Daors,
>
> I'm sorry due to time constrain I am providing a quick answer.
>
> The lookup field is rendered from renderLookupField macro which you can
> find in HtmlFormMacroLibrary.ftl file.
>
> HTH!
> --
> Thanks & Regards
> Pawan Verma
> Technical Consultant
> *HotWax Systems*
> *Enterprise open source experts*
> http://www.hotwaxsystems.com
>
>
> On Thu, Nov 5, 2020 at 12:56 PM Daors  wrote:
>
> > Hello OFBiz community!
> >
> > I started to check the execution on how a find form works and saw that in
> > a field
> > there is the lookup tag and has a target:
> >
> >  > required-field="true"> target-form-name="LookupPartyName"/>
> >
> > When I check this field in web browser with inspect element there are so
> > many attributes like:
> > name="partyId"
> > size="25"
> > id="0_lookupId_NewSalesInvoice_partyIdTo"
> > data-lookup-ajax-enabled="true"
> > data-lookup-presentation="layer"
> > data-lookup-request-url="LookupPartyName"
> > data-lookup-form-name="NewSalesInvoice"
> > data-lookup-optional-target=""
> > data-lookup-width="640"
> > data-lookup-height="500"
> > data-lookup-position="topleft"
> > data-lookup-modal="true"
> > data-lookup-show-description="true"
> > data-lookup-default-minlength="2"
> > data-lookup-default-delay="300"
> > data-lookup-args=""
> > autocomplete="off"
> > data-lookup-ajax= url="NewSalesInvoice_partyIdTo,
> >
> https://localhost:8443/ar/control/LookupPartyName;jsessionid=188FCECFADC720E660C03A5D3462E5F5.jvm1,ajaxLookup=YsearchValueFieldName=partyId
> "
> >
> >
> > My question is does lookup target adds these attributes automatically?
> and
> > if so how the process of the ajax call is being made, like where is the
> > jquery function that is calling this url, if you could help me explaining
> > this process it would mean so much to me.
> >
> > Thank you so much for your time,
> > Best regards,
> > Daors
> >
>


Re: How Default 'Find' works

2020-11-03 Thread Aditya Sharma
Hi Emad,

This might help
https://www.hotwaxsystems.com/ofbiz/ofbiz-tutorials/ofbiz-tutorial-enhancing-the-product-list-screen/

XSDs can be a great help to find available elements and their attributes
http://ofbiz.apache.org/dtds/widget-screen.xsd
http://ofbiz.apache.org/dtds/widget-form.xsd

The example component can also be a great place to take reference from.
https://github.com/apache/ofbiz-plugins/tree/trunk/example

If you haven't followed the basic tutorial following links might help:

https://cwiki.apache.org/confluence/display/OFBIZ/OFBiz+Tutorial+-+A+Beginners+Development+Guide+for+17.12
https://www.youtube.com/watch?v=bIS2kftvsq4=PLobIkeUbRXqc-lwvbdbajPJdbWjFm82Dj

Thanks and regards,
Aditya Sharma


On Mon, Nov 2, 2020 at 11:09 PM Emad Radwan  wrote:

> Many thanks Aditya. It looks like I need to understand actions and the
> mini-lang well to be able to understand Ofbiz. I'll appreciate it if you
> can refer to a good documentation for the same as I failed to find a
> complete one. On the other hand and with the example of the 'main_role'
> role concept its starts getting fun but again is this only mentioned in
> code? Or documented somehow? I feel I understand the Party and Roles model
> from the book but the role of a certain party like 'main_role' is for sure
> not there.
>
> Please shed some light if you can.
>
> Regards,
>
> Emad.
>
> On 2020/11/02 05:33:23, Aditya Sharma  wrote:
> > Hi Edmad,
> >
> > In row-actions, we define actions related to each row which helps us to
> get
> > related data for each record
> >
> https://github.com/apache/ofbiz-framework/blob/trunk/applications/party/widget/partymgr/PartyForms.xml#L136
> >
> > Here you can see the mainRole is populated by calling getPartyMainRole
> > service
> >
> https://github.com/apache/ofbiz-framework/blob/trunk/applications/party/widget/partymgr/PartyForms.xml#L141
> >
> > HTH
> >
> > Thanks and Regards,
> > Aditya Sharma
> >
> >
> > On Sun, Nov 1, 2020 at 8:51 PM Emad Radwan 
> wrote:
> >
> > > Hello everyone,
> > >
> > > Would you please have a look at my last reply and help if you can?
> > >
> > > Regards,
> > >
> > > Emad
> > >
> > > On 2020/10/30 10:34:21, Emad Radwan  wrote:
> > > > Hello Aditya,
> > > >
> > > > Reference to the above that was helpful, in the Parties grid I'm
> finding
> > > > difficulty understanding how the 'main role' column was fetched from
> the
> > > > DB. I think the following line is the configuration of the column in
> the
> > > > grid -  > > title="${uiLabelMap.PartyMainRole}"> > > > description="${mainRole.description}"/> - and I went thru
> > > > 'PerformFindPart'
> > > > in mentioned PartyServices and although I'm not a Java expert but I
> guess
> > > > the code is building the conditions based on the search parameter,
> but
> > > > where
> > > > I can see the link between Party & Party_Role and how the main role
> is
> > > > calculated specially that there is no indicator in Party_Role for
> that,
> > > is
> > > > it based on the date
> > > > the role is linked to certain party?
> > > >
> > > > Thanks for help,
> > > >
> > > > Emad
> > > >
> > > >
> > > > On Tue, Oct 27, 2020 at 7:59 AM Aditya Sharma <
> adityasha...@apache.org>
> > > > wrote:
> > > >
> > > > > Hi Edmad,
> > > > >
> > > > > Here is how you can trace out the flow based on the request
> > > > >
> > > > > controller request
> > > > >
> > > > >
> > >
> https://github.com/apache/ofbiz-framework/blob/trunk/applications/party/webapp/partymgr/WEB-INF/controller.xml#L511
> > > > >
> > > > > view mapping
> > > > >
> > > > >
> > >
> https://github.com/apache/ofbiz-framework/blob/trunk/applications/party/webapp/partymgr/WEB-INF/controller.xml#L1415
> > > > >
> > > > > Screen & Forms
> > > > >
> > > > >
> > >
> https://github.com/apache/ofbiz-framework/blob/trunk/applications/party/widget/partymgr/PartyScreens.xml#L25
> > > > >
> > > > >
> > >
> https://github.com/apache/ofbiz-framework/blob/trunk/applications/party/groovyScripts/party/FindParty.groovy
> > > > >
> > > > >
> > >
> https://github.com/apache/ofbiz-framework/blob/trunk/applications/party/widget/partymgr/PartyForms.xml#L131
> > > > >
> > > > > performFindParty service which returns the results based upon the
> > > > > parameters
> > > > >
> > > > >
> > >
> https://github.com/apache/ofbiz-framework/blob/trunk/applications/party/src/main/java/org/apache/ofbiz/party/party/PartyServices.java#L1519
> > > > >
> > > > > HTH
> > > > >
> > > > > Thanks and regards,
> > > > > Aditya Sharma
> > > > >
> > > > > On Sun, Oct 25, 2020 at 4:46 PM Emad Radwan  >
> > > wrote:
> > > > >
> > > > > > Hi There,
> > > > > >
> > > > > > While testing the Parties module I noticed that default find
> party
> > > > > results
> > > > > > - returned records - are not all there in the database, this is
> > > while I
> > > > > > didn't specify any parameters. What are the logic behind this and
> > > where
> > > > > its
> > > > > > configured.
> > > > > >
> > > > > > Regards,
> > > > > >
> > > > > > Emad.
> > > > > >
> > > > >
> > > >
> > >
> >
>


Re: How to return to a previous plugin version?

2020-11-01 Thread Aditya Sharma
Hi Georg,

What I suspect with a cursory reading is as you made a replica the values
of mount point etc may be the same
https://github.com/apache/ofbiz-plugins/blob/trunk/ecommerce/ofbiz-component.xml#L55

As you are new to OFBiz, I would recommend using the Gradle task to create
a new plugin instead of replicating it.

if you just want to play with it with various versions of same plugin. I
would recommend you is to initialise plugin as a local git repo and create
separate branches for drastic changes. This way it would easy to track the
changes also.
https://git-scm.com/docs/git-init

HTH

Thanks and Regards,
Aditya Sharma

On Mon, Nov 2, 2020 at 2:11 AM Georg Potthast 
wrote:

> For testing I create a plugin, e.g. mytest: “gradlew
> createPlugin -PpluginId=mytest”. To be able to fall back to a working
> version, I frequently copy this plugin directory to e.g. mytest-1,
> mytest-2
> etc. When I decide to use the mytest-1 directory again, I rename the
> directory I am currently working with to mytest-current and copy mytest-1
> to
> mytest. Then I restart ofbiz and expect that to work with this mytest
> directory.
>
> However, OFBiz seems to continue to work with the former current
> directory.
> E.g. I have made three menu items in mytest-current while I had just two
> menu items in the older mytest-1 directory. After copying the mytest-1
> directory to mytest and restarting OFBiz, I still have three menu items
> displayed although there should be only two.
>
> What could be the reason for this and what do I have to do to properly
> fall
> back to the state of mytest-1?
>
>


Re: How Default 'Find' works

2020-11-01 Thread Aditya Sharma
Hi Edmad,

In row-actions, we define actions related to each row which helps us to get
related data for each record
https://github.com/apache/ofbiz-framework/blob/trunk/applications/party/widget/partymgr/PartyForms.xml#L136

Here you can see the mainRole is populated by calling getPartyMainRole
service
https://github.com/apache/ofbiz-framework/blob/trunk/applications/party/widget/partymgr/PartyForms.xml#L141

HTH

Thanks and Regards,
Aditya Sharma


On Sun, Nov 1, 2020 at 8:51 PM Emad Radwan  wrote:

> Hello everyone,
>
> Would you please have a look at my last reply and help if you can?
>
> Regards,
>
> Emad
>
> On 2020/10/30 10:34:21, Emad Radwan  wrote:
> > Hello Aditya,
> >
> > Reference to the above that was helpful, in the Parties grid I'm finding
> > difficulty understanding how the 'main role' column was fetched from the
> > DB. I think the following line is the configuration of the column in the
> > grid -  title="${uiLabelMap.PartyMainRole}"> > description="${mainRole.description}"/> - and I went thru
> > 'PerformFindPart'
> > in mentioned PartyServices and although I'm not a Java expert but I guess
> > the code is building the conditions based on the search parameter, but
> > where
> > I can see the link between Party & Party_Role and how the main role is
> > calculated specially that there is no indicator in Party_Role for that,
> is
> > it based on the date
> > the role is linked to certain party?
> >
> > Thanks for help,
> >
> > Emad
> >
> >
> > On Tue, Oct 27, 2020 at 7:59 AM Aditya Sharma 
> > wrote:
> >
> > > Hi Edmad,
> > >
> > > Here is how you can trace out the flow based on the request
> > >
> > > controller request
> > >
> > >
> https://github.com/apache/ofbiz-framework/blob/trunk/applications/party/webapp/partymgr/WEB-INF/controller.xml#L511
> > >
> > > view mapping
> > >
> > >
> https://github.com/apache/ofbiz-framework/blob/trunk/applications/party/webapp/partymgr/WEB-INF/controller.xml#L1415
> > >
> > > Screen & Forms
> > >
> > >
> https://github.com/apache/ofbiz-framework/blob/trunk/applications/party/widget/partymgr/PartyScreens.xml#L25
> > >
> > >
> https://github.com/apache/ofbiz-framework/blob/trunk/applications/party/groovyScripts/party/FindParty.groovy
> > >
> > >
> https://github.com/apache/ofbiz-framework/blob/trunk/applications/party/widget/partymgr/PartyForms.xml#L131
> > >
> > > performFindParty service which returns the results based upon the
> > > parameters
> > >
> > >
> https://github.com/apache/ofbiz-framework/blob/trunk/applications/party/src/main/java/org/apache/ofbiz/party/party/PartyServices.java#L1519
> > >
> > > HTH
> > >
> > > Thanks and regards,
> > > Aditya Sharma
> > >
> > > On Sun, Oct 25, 2020 at 4:46 PM Emad Radwan 
> wrote:
> > >
> > > > Hi There,
> > > >
> > > > While testing the Parties module I noticed that default find party
> > > results
> > > > - returned records - are not all there in the database, this is
> while I
> > > > didn't specify any parameters. What are the logic behind this and
> where
> > > its
> > > > configured.
> > > >
> > > > Regards,
> > > >
> > > > Emad.
> > > >
> > >
> >
>


Re: Call another component's request-map

2020-10-27 Thread Aditya Sharma
My bad. I suggested for ftl. Thanks Deepak for correcting me!

Thanks and Regards,
Aditya Sharma

On Tue, Oct 27, 2020 at 3:28 PM Deepak Dixit  wrote:

> Hi Daors,
>
> Please check the url-mode attribute of link tag.
>
>  text="${uiLabelMap.CommonViewCalendar}" url-mode="inter-app">
>
>
> Kind Regards,
>
> Deepak Dixit
> DIRECTOR OF PRODUCT ENGINEERING
> mobile: +91 9826754548
> email: deepak.di...@hotwax.co
> *www.hotwax.co <http://www.hotwax.co/>*
>
>
> On Tue, Oct 27, 2020 at 3:26 PM Daors Islami 
> wrote:
>
> > Hello Aditya, thank you for your response
> >
> > Where exactly I need to put this piece of code because right now I need a
> > button to include into my screen and for the button to show up, I have to
> > add the link tag like this:
> >
> >  />
> >
> > Sorry maybe I didn't get quite right your answer, can you guide me with
> > this.
> >
> > Thanks a lot!
> > Daors
> >
> >
> >
> > On Tue, Oct 27, 2020 at 10:34 AM Aditya Sharma 
> > wrote:
> >
> > > Hi Daors,
> > >
> > > You can use the controlPath attribute in ofbizUrl macro like this:
> > >
> > > <@ofbizUrl
> > >
> > >
> >
> controlPath="/partymgr/control">viewprofile?partyId=${invoice.invoiceRolePartyId}
> > >
> > > HTH
> > >
> > > Thanks and Regards,
> > > Aditya Sharma
> > >
> > > On Tue, Oct 27, 2020 at 2:48 PM Daors  wrote:
> > >
> > > > Hello good people of OFBiz hope you're all doing good I just wanted
> to
> > > > know if there is possible to call another components request map from
> > > > another component f.e I'm in Account - AR and want to add a button to
> > > > create a new customer there so to redirect me to the create customer
> > > screen.
> > > >
> > > > Is there a way to do that in the link tag like:
> > > > 
> > > >
> > > > I tried this but it gives me this error:
> > > > org.apache.ofbiz.webapp.control.RequestHandlerException: Unknown
> > request
> > > > [NewCustomer]; this request does not exist or cannot be called
> > directly.
> > > >
> > > > I know that with FTL I can just add a anchor tag and add at the href
> > the
> > > > url to go there but at this case I don't need FTL.
> > > >
> > > > Is there a solution for this or do I have to rewrite the request-map
> > for
> > > > creating a new customer to the component that I'm currently working.
> > > >
> > > > Thanks a lot for your time,
> > > > Best Regards,
> > > > Daors
> > > >
> > >
> >
>


Re: Call another component's request-map

2020-10-27 Thread Aditya Sharma
Hi Daors,

You can use the controlPath attribute in ofbizUrl macro like this:

<@ofbizUrl
controlPath="/partymgr/control">viewprofile?partyId=${invoice.invoiceRolePartyId}

HTH

Thanks and Regards,
Aditya Sharma

On Tue, Oct 27, 2020 at 2:48 PM Daors  wrote:

> Hello good people of OFBiz hope you're all doing good I just wanted to
> know if there is possible to call another components request map from
> another component f.e I'm in Account - AR and want to add a button to
> create a new customer there so to redirect me to the create customer screen.
>
> Is there a way to do that in the link tag like:
> 
>
> I tried this but it gives me this error:
> org.apache.ofbiz.webapp.control.RequestHandlerException: Unknown request
> [NewCustomer]; this request does not exist or cannot be called directly.
>
> I know that with FTL I can just add a anchor tag and add at the href the
> url to go there but at this case I don't need FTL.
>
> Is there a solution for this or do I have to rewrite the request-map for
> creating a new customer to the component that I'm currently working.
>
> Thanks a lot for your time,
> Best Regards,
> Daors
>


Re: How Default 'Find' works

2020-10-26 Thread Aditya Sharma
Hi Edmad,

Here is how you can trace out the flow based on the request

controller request
https://github.com/apache/ofbiz-framework/blob/trunk/applications/party/webapp/partymgr/WEB-INF/controller.xml#L511

view mapping
https://github.com/apache/ofbiz-framework/blob/trunk/applications/party/webapp/partymgr/WEB-INF/controller.xml#L1415

Screen & Forms
https://github.com/apache/ofbiz-framework/blob/trunk/applications/party/widget/partymgr/PartyScreens.xml#L25
https://github.com/apache/ofbiz-framework/blob/trunk/applications/party/groovyScripts/party/FindParty.groovy
https://github.com/apache/ofbiz-framework/blob/trunk/applications/party/widget/partymgr/PartyForms.xml#L131

performFindParty service which returns the results based upon the parameters
https://github.com/apache/ofbiz-framework/blob/trunk/applications/party/src/main/java/org/apache/ofbiz/party/party/PartyServices.java#L1519

HTH

Thanks and regards,
Aditya Sharma

On Sun, Oct 25, 2020 at 4:46 PM Emad Radwan  wrote:

> Hi There,
>
> While testing the Parties module I noticed that default find party results
> - returned records - are not all there in the database, this is while I
> didn't specify any parameters. What are the logic behind this and where its
> configured.
>
> Regards,
>
> Emad.
>


Apache OFBiz Blog Updates - September 2020

2020-10-13 Thread Aditya Sharma
Hi Everyone,

A brief summary of our project news for September month can be found in our
monthly blog update at the link below:
https://s.apache.org/mrpny

Thanks to Deepak Dixit, Jacques Le Roux, Michael Brohl, Mridul Pathak,
Pranay Pandey, Sharan Foga, Suraj Khurana and, Swapnil M Mane for their
continued support.

--
Thanks & Regards,
Aditya Sharma


Re: relation between OrderItem and OrderPaymentPreference at the time of refund

2020-09-09 Thread Aditya Sharma
Hi S K Pradeep Kumar,

Attachments are filtered out on mailing lists so you need to store the image
on platforms like google drive, dropbox, etc and share the link here.

Thanks and Regards,
Aditya Sharma

On Wed, Sep 9, 2020 at 12:44 PM Sameer Apte  wrote:

> Thanks for your reply S K Pradeep Kumar.
> Will go through that . Struggling to see  the screen shot though..could you
> please send it again? I wonder if mailing list supports screenshots..
> Regards
> Sameer Apte
>
>
> On Wed, 9 Sep 2020, 06:12 S K Pradeep Kumar, 
> wrote:
>
> > Hi Sameer,
> >
> > OFBiz allows a partial refund with a payment selection.
> > [image: Screenshot 2020-09-09 10-20-13.png]
> >
> > You can go through the same flow.
> > Here are some of the entities that might help.
> > OrderItemBilling
> > Payment
> > OrderPaymentPrefAndPayment (View)
> > ReturnItemBilling
> > InvoiceAndApplAndPayment(View)
> >
> > You can send  OrderItemSeqId  to
> > createOrderPaymentPreference
> >
> > You can go through the services and entities.
> > You just need an item level payment methods association.
> >
> > It can be achieved, with slight modifications.
> >
> > With regards,
> > S K Pradeep Kumar,
> > 9035009495
> >
> >
> > On Tue, Sep 8, 2020 at 4:28 PM Sameer Apte  wrote:
> >
> >> Hi Team,
> >>
> >> I have a question around refund functionality.
> >> Please consider below scenario:
> >> *Given that *
> >>*customer has 2 credit cards *referred to as CARD1 & CARD2 below.
> >>customer has existing order O1 with two orderItems
> >>(ITEM1 = 1 bag of banana)
> >>   *(ITEM2 = 1 bag of apples)*
> >>customer has already made payment for above order (and therefore 2
> >> orderItems) using *CARD1*
> >>
> >> *When* customer edits the order prior to fulfilment and adds (ITEM3 = 1
> >> bag
> >> of grapes)
> >> *THEN* customer would be redirected to payment gateway for
> additional
> >> payment for grapes
> >> *  AND*  customer uses the *CARD2 for paying for grapes*
> >>
> >> This scenario seems to be working as expected and I have noticed that by
> >> the end of it we get 2 records in OrderPaymentPreference table 1 for
> each
> >> card.
> >>
> >> Now comes the actual question around refund.
> >>
> >> When a customer tries to edit the above order prior to fulfilment and
> >> removes apples
> >> then ideally we should be refunding using CARD1.
> >>
> >> However as I am not seeing an actual link between orderPaymentPreference
> >> with OrderItems, I am not sure how ofbiz can decide which card should be
> >> picked up for refund.
> >> In the pdf - that shows the entities, it is shown that
> >> OrderPaymentPrefernce table has column OrderItemSeqId, but it seems
> ofbiz
> >> is not populating it anyways.
> >>
> >> So could you please advise or provide some pointers to which ofbiz
> >> services/ entities could be used to make sure that the correct card is
> >> picked up for refunding?
> >>
> >> Scenario becomes interesting when the customer increases the quantity of
> >> existing items E.g. in the example above, if customer adds 1 more bag of
> >> apples and then uses CARD2 for making that payment and subsequently
> tries
> >> to cancel the apples altogether. In which case refund should be done
> using
> >> CARD1 and CARD2 both... :-)
> >>
> >> Essentially I am trying to make sure that if a customer has made 2
> >> payments
> >> using 2 cards, then when it comes to partial refund due to changes to
> >> order, ofbiz should not be refunding more to any of the cards than what
> >> was
> >> paid using that card by the customer.
> >>
> >> Regards,
> >> Sameer Apte
> >>
> >
>


Apache OFBiz Blog Updates - August 2020

2020-09-08 Thread Aditya Sharma
Hi Everyone

A brief summary of our project news for August month can be found in our
monthly blog update at the link below:
https://s.apache.org/0luu5

Thanks to Deepak Dixit, Jacques Le Roux, Michael Brohl, Mridul Pathak,
Pranay Pandey, Sharan Foga, Suraj Khurana and, Swapnil M Mane for their
continued support.

--
Thanks & Regards,
Aditya Sharma


Re: System Set Up - Data Upload

2020-08-24 Thread Aditya Sharma
Hi James,

Adding to Pawan's answer, you can also search reader-name="demo" in
ofbiz-component.xml files
https://github.com/apache/ofbiz-plugins/blob/trunk/ecommerce/ofbiz-component.xml#L30

HTH

Thanks and regards,
Aditya Sharma

On Tue, Aug 25, 2020 at 12:03 AM Pawan Verma 
wrote:

> Hi James,
>
> You can find this demo data files under the data/ directory of each
> component, for example, PartyDemoData.xml.
>
> You can also search for *DemoData.xml using your prefered IDE.
>
> HTH!
> --
> Thanks & Regards
> Pawan Verma
> Technical Consultant
> *HotWax Systems*
> *Enterprise open source experts*
> http://www.hotwaxsystems.com
>
>
> On Mon, Aug 24, 2020 at 11:32 PM  wrote:
>
> > Where can I get demo data files?
> >
> >  Original Message 
> > Subject: Re: System Set Up - Data Upload
> > From: Pritam Kute 
> > Date: Sun, August 23, 2020 9:05 pm
> > To: user@ofbiz.apache.org
> >
> > Hello James,
> >
> > For directly uploading data to the database, you can use the XML data
> > uploader tool at the backend.
> >
> > https://localhost:8443/webtools/control/EntityImport
> >
> > You need to prepare data in XML format and then upload it using this
> > tool.
> > For preparing XML data files, you can refer to demo data files in OFBiz.
> >
> > Kind Regards,
> > --
> > Pritam Kute
> >
> >
> > On Sun, Aug 23, 2020 at 7:28 PM  wrote:
> >
> > > Team - After reviewing the import feature of Ofbiz it seems to be
> > > lacking when it comes to data upload. How are some of you uploading
> > > data like Pricing, Agreements, Detail Product Information, Starting
> > > inventory quantities, product categories, customer classifications,
> etc.
> > > Has any developed any templates? Can some of these be uploaded
> > > directly to the database?
> > >
> > > Thanks,
> > >
> > > James
> > >
> >
>


Apache OFBiz Blog Updates

2020-08-19 Thread Aditya Sharma
Hi Everyone,

A brief summary of our project news from September 2019 to July 2020 can be
found in our monthly blog update at the links below:

September 2019: https://s.apache.org/yu4pz

October 2019: https://s.apache.org/h8clt

November 2019: https://s.apache.org/bjoji

December 2019: https://s.apache.org/6km26

January 2020: https://s.apache.org/bbyyw

February 2020: https://s.apache.org/2jffx

March 2020: https://s.apache.org/axx6z

April 2020: https://s.apache.org/h8n6y

May 2020: https://s.apache.org/9udkh

June 2020: https://s.apache.org/kgrr4

July 2020: https://s.apache.org/rzlfy


Thank you Sharan Foga, Swapnil M Mane, Suraj Khurana, Aditya Sharma, Michael
Brohl, Jacques Le Roux, and Pranay Pandey for their continued support.

Thanks and Regards,
Aditya Sharma


Re: Restrict Access/Hide items from the Application/Plugins menu (top level)

2020-08-05 Thread Aditya Sharma
Hi Georg Potthast,

If you change it for ofbizDemo, it will hide ofbizDemo, not all the
applications. Each component has it's own ofbiz-component.xml file
responsible for the initial setup.

For example, if you wanted to hide the marketing component you need to add
this attribute to webapp tag for the marketing component.
So you will have to add it here:
https://github.com/apache/ofbiz-framework/blob/trunk/applications/marketing/ofbiz-component.xml#L39

Thanks and Regards,
Aditya Sharma


On Wed, Aug 5, 2020 at 11:35 AM Georg Potthast 
wrote:

> In my "plugins/ofbizDemo" folder the ofbiz-component.xml file only
> contains
> one webapp, title="OfbizDemo". When I enter app-bar-display="false" there,
> still all applications available with OFBiz are in the menu bar after a
> restart.
>
> -Ursprüngliche Nachricht-
> From: Aditya Sharma
> Sent: Wednesday, August 5, 2020 6:57 AM
> To: user@ofbiz.apache.org
> Subject: Re: Restrict Access/Hide items from the Application/Plugins menu
> (top level)
>
> Hi Oleksandr Darchuk,
>
> Refer my answer on the following mail thread
>
> https://markmail.org/message/o7nvrxo4wtk5brls
>
>
> HTH
>
> Thanks and regards,
> Aditya Sharma
>
>
> On Wed, Aug 5, 2020 at 12:56 AM Oleksandr Darchuk
>  wrote:
> >
> > Hello,
> > Subscribed already.
> > And looks like authorization is the way I have to dig to get the answer
> to
> > my question. Still any suggestions/directions will be appreciated :)
> > Thank you
> >
> > On Tue, Aug 4, 2020 at 9:02 PM Jacques Le Roux <
> jacques.le.r...@les7arts.com>
> > wrote:
> >
> > > Hi,
> > >
> > > Your message has been moderated, else it would not have reached this
> > > Mailing List.
> > >
> > > Please subscribe to the user ML for such questions and then use your
> email
> > > client.
> > > See why here http://ofbiz.apache.org/mailing-lists.html.
> > >
> > > You will get a better support, people can answer you on the ML.
> > > The wider the audience the better the answers you might get.
> > >
> > > Also it's more work for moderators who have to accept your messages as
> > > long as you have not subscribed.
> > > I'll personally no longer accept them (other moderators still could).
> > >
> > > Thanks
> > >
> > > This said, if nobody answers you before me I'll do tmrw...
> > >
> > > Jacques
> > >
> > > Le 04/08/2020 à 17:03, Oleksandr Darchuk a écrit :
> > > > Hello
> > > > Is it possible to restrict/hide some unused applications from the top
> > > level menu bar? E.g. make Mmarketing or Manufacturing invisible for the
> > > end-user after log-in?
> > > > Thank you
> > >
> > >
>
>


Re: Restrict Access/Hide items from the Application/Plugins menu (top level)

2020-08-04 Thread Aditya Sharma
Hi Oleksandr Darchuk,

Refer my answer on the following mail thread

https://markmail.org/message/o7nvrxo4wtk5brls


HTH

Thanks and regards,
Aditya Sharma


On Wed, Aug 5, 2020 at 12:56 AM Oleksandr Darchuk
 wrote:
>
> Hello,
> Subscribed already.
> And looks like authorization is the way I have to dig to get the answer to
> my question. Still any suggestions/directions will be appreciated :)
> Thank you
>
> On Tue, Aug 4, 2020 at 9:02 PM Jacques Le Roux <
jacques.le.r...@les7arts.com>
> wrote:
>
> > Hi,
> >
> > Your message has been moderated, else it would not have reached this
> > Mailing List.
> >
> > Please subscribe to the user ML for such questions and then use your
email
> > client.
> > See why here http://ofbiz.apache.org/mailing-lists.html.
> >
> > You will get a better support, people can answer you on the ML.
> > The wider the audience the better the answers you might get.
> >
> > Also it's more work for moderators who have to accept your messages as
> > long as you have not subscribed.
> > I'll personally no longer accept them (other moderators still could).
> >
> > Thanks
> >
> > This said, if nobody answers you before me I'll do tmrw...
> >
> > Jacques
> >
> > Le 04/08/2020 à 17:03, Oleksandr Darchuk a écrit :
> > > Hello
> > > Is it possible to restrict/hide some unused applications from the top
> > level menu bar? E.g. make Mmarketing or Manufacturing invisible for the
> > end-user after log-in?
> > > Thank you
> >
> >


Re: OFBiz Project Status

2020-07-29 Thread Aditya Sharma
Hi Jeff,

Welcome to the Apache OFBiz ecosystem!

I would recommend you to check out the official website[1], Getting
Started for Developers[2] & Business users[3] and the confluence
documentation[4].

>The confluence site is a web of confusion.  For example
Thanks for raising the concerns. The community is striving to improve
the documentation. We have various documentation efforts going on with
Ascidocs etc, we will definitely try to improve the experience.


> The "Getting Started" link at
> https://cwiki.apache.org/confluence/display/OFBIZ/Apache+OFBiz+Getting+Started
Thanks for reporting, it was outdated. I have updated it with the
Developers[2] and Business users[3] links
 https://cwiki.apache.org/confluence/display/OFBIZ/Home

> Has a number of recent updates (which I read and followed perfectly), but
> they are in the confluence "Wiki Attic" breadcrumb.  Which is confusing.
> Here is the most recent example:
> https://cwiki.apache.org/confluence/display/OFBIZ/How+to+install+OFBiz+with+the+Demo+Data
When pages become outdated they are not deleted but moved to Attic.
Some references and indexes on search engines may still be there.

> Release Concerns
> 17.12.04 was just released, but I saw in a commit log reference to an 18.12
> release.  I can't find anything related to it, other than a few posts to
> the user mailing list from July 2019.  What happened to the 18.12 release?
The latest release is 17.12.04[5], 18.12 is another release branch
that is stabilized for a given time period and may replace the 17.12
for the new releases after some time.


HTH

1. https://ofbiz.apache.org/index.html
2. https://ofbiz.apache.org/developers.html
3. https://ofbiz.apache.org/business-users.html
4. 
https://cwiki.apache.org/confluence/display/OFBIZ/Documentation#Documentation-End-UserDocumentation
5. https://ofbiz.apache.org/download.html

Thanks and regards,
Aditya Sharma

On Wed, Jul 29, 2020 at 11:59 PM Jeff Schwartz  wrote:
>
> Hello, I've been reading quite a bit about OFBiz and am interested in using
> it to build some business applications.  The project appears under active
> development with recent releases, however, I'm a little concerned about the
> lack of community updates and stale documentation.  Here are some examples:
>
> The latest "news", i.e. social media and blog posts, are from 2019.
>
> All the "useful" OFBiz books were published in the 2008-2013 range
>
> The confluence site is a web of confusion.  For example
>
> From the home page at
> https://cwiki.apache.org/confluence/display/OFBIZ/Home
>
> The "Getting Started" link at
> https://cwiki.apache.org/confluence/display/OFBIZ/Apache+OFBiz+Getting+Started
>
> is in the confluence "Trash" as seen in the breadcrumb.
>
> On the "Getting Started" page is a blurb that says
>
>   > This document has been moved to the OFBiz website:
>   > http://ofbiz.apache.org/apache-ofbiz-getting-started.html
>
> Clicking that link gives a 404
>
> Another example:
>
> The "How to articles" page at
> https://cwiki.apache.org/confluence/display/OFBIZ/How-to+articles
>
> Has a number of recent updates (which I read and followed perfectly), but
> they are in the confluence "Wiki Attic" breadcrumb.  Which is confusing.
> Here is the most recent example:
> https://cwiki.apache.org/confluence/display/OFBIZ/How+to+install+OFBiz+with+the+Demo+Data
>
> Release Concerns
> 17.12.04 was just released, but I saw in a commit log reference to an 18.12
> release.  I can't find anything related to it, other than a few posts to
> the user mailing list from July 2019.  What happened to the 18.12 release?
>
> I do believe that OFBiz can be a great backbone for my business
> applications, but I have the following concerns:
>
>- It will be difficult for developers to get acclimated to the project
>based on the documentation and books as described above.
>- With no recent "news" the project is stagnating and losing momentum
>- The latest point release is from two weeks ago, but the major release
>was from 2017
>
> Based on these, I'm concerned about hitching my wagon to the project.
>
> Your thoughts would be greatly appreciated.
>
> Thanks in advance
>
> -Jeff


Re: Content on Ecommerce page are all listed on the left of the page

2020-07-14 Thread Aditya Sharma
Hi Katie,

As Daniel said the CSS and JS files are not being loaded as they seem
unavailable. If you look at the Network tab, you can clearly see 404 for
some crucial CSS and Js files.

@Daniel Attachments are filtered out on lists so you can store the image on
platforms like google drive, dropbox, etc and share the link here.

Thanks and Regards,
Aditya Sharma

On Tue, Jul 14, 2020 at 1:20 PM Jacques Le Roux <
jacques.le.r...@les7arts.com> wrote:

> Hi Katie,
>
> Got your message about unsubscribing from the user ML.
>
> Great that your are back on the user ML without moderation as
> katie_...@polluniverse.com :)
>
> Just one more thing: you don't need to copy to Pierre, Michael and I, and
> everyone answering you on the user ML.
> We are monitoring the ML and don't need a copy that rather complicate a
> bit things for us.
>
> Thanks and welcome back
>
> Jacques
>
> Le 14/07/2020 à 09:11, Katie Qiu a écrit :
> >
> > Hi,
> >
> > I was just able to put the ofbiz project on Production site for the
> first time. When running the Ecommerce index page,  I see all the content
> are
> > listed on the left of the page.  When I run the same page on my
> localhost, it lists on the whole page correctly.
> >
> > You could see what I described by reading the attachment or clicking on
> the production: https://www.polluniverse.com/
> >
> > Could you please let me know what I need to do to correct this?
> >
> > Hi Pierre, Jacques and Michael,
> >
> > Thank you very much for helping me to this point now. I appreciated it
> very much.
> >
> > Hi Michael,
> >
> > In my earlier thread:
> https://lists.apache.org/thread.html/r9a9762bb1633d1b9e4b8e781ebf85892d3047dba3bde081e0292a085%40%3Cuser.ofbiz.apache.org%3E
> > The index page showed source. After you suggested checking Virtual host
> configuration with the AJP settings, that  helped me to go back to the
> > Virtual host session and I found the problem ---I put the AJP setting in
> Virtual host 80 session instead of 443. After I switched it, I was able to
> > see the index page.  Thanks a lot!
> >
> > I removed my client email a few days ago and lost previous thread emails
> (long story), so I’m not able to update the previous thread. I consider the
> > problem I listed in the thread is resolved
> >
> https://lists.apache.org/thread.html/r9a9762bb1633d1b9e4b8e781ebf85892d3047dba3bde081e0292a085%40%3Cuser.ofbiz.apache.org%3E
> >
> > Thanks a lot,
> >
> > Katie
> >
>


Re: OFBiz CRM Module

2020-07-13 Thread Aditya Sharma
Hi Phoon,

Please refer to Party, SFA, and Marketing components. Here are the links to
demo instance
https://demo-stable.ofbiz.apache.org/partymgr/control/main
https://demo-stable.ofbiz.apache.org/sfa/control/main
https://demo-stable.ofbiz.apache.org/marketing/control/main

Following links might be useful to you:
https://ofbiz.apache.org/business-users.html
https://cwiki.apache.org/confluence/display/OFBENDUSER/CRM+Sales+Force+Automation+Plan
https://cwiki.apache.org/confluence/display/OFBIZ/Customer+Relationship+Management+%28CRM%29+Process+Overview
https://cwiki.apache.org/confluence/display/OFBIZ/Marketing+Campaign
https://markmail.org/message/znfcsagqk3bsmtti

HTH

Thanks and regards,
Aditya Sharma


On Tue, Jul 14, 2020 at 8:36 AM  wrote:

> Hello,
>
>
>
> I installed Ofbiz version 17.12.03 but could not find the CRM module
>
>
>
> I went to  search in
> https://lists.apache.org/list.html?*@ofbiz.apache.org:lte=1M:crm but could
> not find it either
>
>
>
> Could anyone tell me where I can download the module?
>
>
>
> Many thanks
>
>
>
> Cheers
>
> Phoon
>
>


Re: Product Price Group

2020-06-03 Thread Aditya Sharma
Hi Ramesh Kumar,

I think these links might help you

https://markmail.org/message/sqej5sxxwtf2bvkc
https://markmail.org/message/vbjodwrwj6dsgvj7
https://markmail.org/message/zqisy3frjrgshoby
https://cwiki.apache.org/confluence/display/OFBENDUSER/09+Agreements

http://ofbiz.135035.n4.nabble.com/Party-Classification-Data-Modeling-td3172270.html

https://cwiki.apache.org/confluence/display/OFBENDUSER/Price+Rules
https://www.hotwaxsystems.com/ofbiz/ofbiz-tutorials/ofbiz-tutorial-price-rules/
http://ofbiz.135035.n4.nabble.com/Price-Rule-td4708295.html

HTH

Thanks and regards,
Aditya Sharma


On Wed, Jun 3, 2020 at 12:50 AM Ramesh Kumar  wrote:

> Hi ,
> I want to implement product price group functionality in Ofbiz
> application by using Product store group id.
> Ofbiz have product Store Group id implementation in product price entity. I
> am facing problem on shopping cart. We have certain group of customer
> associated with different price group(Product Store group id). If customer
> belonging to price group 1 adding item to cart then item price related to
> price group 1 should apply here. Same way another customer who belong to
> another price group price should apply to related price group.
>  Here Each customer after login getting price group Id and same price
> group Id I want to send as input to shopping cart on cart add/get/update
> operation. There is no any property available in shopping cart class to
> send
> price group request.
> If anyone has implemented this kind of feature please provide some guide to
> implement this functionary properly.
>
> Regards
> Ramesh Kumar
>
>
>
> --
> Sent from: http://ofbiz.135035.n4.nabble.com/OFBiz-User-f135036.html
>


Re: Should the providers listed on Apache OFBiz confluence have landing page for OFBiz on their website

2020-05-23 Thread Aditya Sharma
+1

Thanks and Regards,
Aditya Sharma

On Sat, May 23, 2020 at 6:35 PM Arun Patidar  wrote:

> +1
>
>
> Kind Regards,
>
> Arun Patidar
> DIRECTOR OF INFORMATION SYSTEMS
> mobile: +91 9827353082
> landline: 0731-409-3684
> email: arun.pati...@hotwax.co
> *www.hotwax.co <http://www.hotwax.co/>*
>  <https://www.linkedin.com/company/hotwaxcommerce/>
> <https://www.facebook.com/HotWaxCommerce/>
> <https://twitter.com/hotwaxcommerce>
>
>
>
>
>
>
>
> On Thu, May 7, 2020 at 2:49 AM Rishi Solanki 
> wrote:
>
> > Thanks for raising this, +1 for the idea and discussion on this, few
> points
> > needs to be consider;
> >
> > - Few providers listed here does not have website, what to suggest them?
> > - How to encourage providers for the this?
> > - Finally, is it fine to identify and ask such providers on OFBiz
> > confluence?
> >
> > Suggestion is, for quick start we can add Recommendation on page that
> > website should have information about Apache OFBiz. But no enforcement at
> > this point, as number of service providers listed and community activity
> > also required for project adoption IMO.
> >
> > Again big +1 for discussion on the topic, and based on discussion we can
> > finalize how to best handle this.
> >
> >
> > Best Regards,
> > --
> > Rishi Solanki
> > *CTO, Mindpath Technology*
> > Intelligent Solutions
> > cell: +91-98932-87847
> > LinkedIn <https://www.linkedin.com/in/rishi-solanki-62271b7/>
> >
> >
> > On Thu, May 7, 2020 at 12:30 AM Jacques Le Roux <
> > jacques.le.r...@les7arts.com> wrote:
> >
> > > Hi Anil,
> > >
> > > That sounds legit to me
> > >
> > > Jacques
> > >
> > > Le 06/05/2020 à 18:56, Anil Patel a écrit :
> > > > We have many service providers listed on Apache OFBiz confluence
> page.
> > > This
> > > > is a good thing.
> > > >
> > > >
> > >
> >
> https://cwiki.apache.org/confluence/display/OFBIZ/Apache+OFBiz+Service+Providers
> > > >
> > > > I found that few providers don't even mention Apache OFBiz anywhere
> on
> > > > their website. Their marketing does not acknowledge or talk about
> > > services
> > > > on Apache OFBiz.
> > > >
> > > > I think it is fair for the Apache OFBiz community to require at least
> > one
> > > > landing page on providers' websites describing their services related
> > to
> > > > Apache OFBiz.
> > > >
> > > > I would love to know comments on this idea/concern.
> > > >
> > > > Thanks and Regards
> > > > Anil Patel
> > > > COO
> > > > HotWax Systems
> > > > http://www.hotwaxsystems.com
> > > > Cell: + 1 509 398 3120
> > >
> > >
> >
>


Re: Solr Demo

2020-01-26 Thread Aditya Sharma
Hi James,
I think we have a plugin for Solr integration.

These links might be helpful
https://github.com/apache/ofbiz-plugins/tree/trunk/solr
https://demo-trunk.ofbiz.apache.org/solr/control/main
http://ofbiz.135035.n4.nabble.com/Has-anyone-implemented-Faceted-Search-using-SOLR-td4633260.html
https://cwiki.apache.org/confluence/display/OFBIZ/Search+Integration

HTH

Thanks and regards,
Aditya Sharma

On Mon, Jan 27, 2020 at 6:46 AM  wrote:

> Is there a demo of the Solr integration with Ofbiz?
>
> Thanks,
>
> James
>


Re: User authorization is required for this service

2020-01-16 Thread Aditya Sharma
Hi Madhi Krishnan,

You are calling createPartyGeoPoint and the given service require
authentication.
See
https://github.com/apache/ofbiz-framework/blob/cef21ced2165790a31102a1fbdc627ea717d1be9/applications/party/servicedef/services_party.xml#L60

User needs to be logged in to access this service.

HTH
Thanks and Regards,
Aditya Sharma

On Thu, Jan 16, 2020 at 5:23 PM Madhi Krishnan <
madhi.krish...@udyogmandir.in> wrote:

> Hello,
> I'm looking to create a mobile application with react-native as a front-end
> tech and i'am looking to expose ofbiz services and events as API.
> I got to know that we can get Json response instead of screens to a
> request.
> So i created a request  one below -
>
> 
> 
> 
> 
> 
> 
>
> And i tried to hit this point form Postman with basic authentication
> (UserName : admin , Password : ofbiz)  added to the header and the required
> IN parameters.
>
> But I'm getting an error message saying that "
> User authorization is required for this service: createPartyGeoPoint";
>
> Am I missing something? if yes let me know.
> Thanks
> Madhi Krishnan
>


Apache OFBiz Blog - July and August 2019 Updates

2019-12-26 Thread Aditya Sharma
Hi Everyone,

A brief summary of our project news for July and August month can be found
in our monthly blog update at the links below:

July: https://s.apache.org/aamf7

August: https://s.apache.org/aqmd6

Thanks to Sharan Foga, Swapnil M Mane, Suraj Khurana, Deepak Dixit, Michael
Brohl, Jacques Le Roux and Pranay Pandey for their continued support.

Thanks & Regards,
Aditya Sharma


Re: New Plugin

2019-12-19 Thread Aditya Sharma
Hi Robert,

I think you need to set auth to false for your request in controller.xml
file








HTH

Thanks and regards
Aditya Sharma

On Fri, Dec 20, 2019 at 9:34 AM Robert Wynkoop 
wrote:

> All,
>
> Working with the 18.12.
>
> Added a plugin.
>
> I wanted to test removing security.
>
> From the new plugin dir, I removed base-permission="OFBTOOLS,DEMO" from
> ofbiz-component.xml.
>
> Also tried messing with the permission check in CommonScreens.xml(in demo).
>
> No joy, still have to have a login to connect.  admin / ofbiz was tested.
>
> How do I disable login for the component? I will use page level permissions
> later.
>
> Robert Wynkoop
>


Re: OFBiz 18.12 : Using external DB Postgresql

2019-10-21 Thread Aditya Sharma
Hi Sandeep,

Refer to these links:
https://cwiki.apache.org/confluence/display/OFBIZ/Setup+OFBiz+version+16.11.02+with+PostgreSQL+on+Windows
https://cwiki.apache.org/confluence/display/OFBIZ/Tune+your+PostgreSQL+installation
http://ofbiz.135035.n4.nabble.com/Current-PostgreSQL-Instructions-td4703200.html

Though it is for 16.11, it will work for 18.12 too. You will have to
configure it in entityengine.xml.

HTH

Thanks and Regards,
Aditya Sharma

On Mon, Oct 21, 2019 at 7:36 PM Sandeep Singh  wrote:

> Hi All,
>   I am using OFBiz version 18.12 to configure it with a postgresql
> 10.6 database. I have the instructions from the following website(Section
> 'Database setup") to achieve the same.
>
>
> https://cwiki.apache.org/confluence/display/OFBIZ/Apache+OFBiz+Technical+Production+Setup+Guide
>
> After carrying put the steps, when I run "ofbiz --load-data" , the data is
> not loaded in the postgresql DB but instead in the default derby database
> itself.
>
> Could someone please help me with what I could be mising here. Does the
> version 18.12 some additional steps.
>
> Thanks
> --Sandeep
> *"What we want to see is the child in pursuit of knowledge, and not
> knowledge in pursuit of the child." -George Bernard Shaw*
>


Re: Ofbiz Recruitment module

2019-08-28 Thread Aditya Sharma
Hi Pankaj,

You can refer to this doc[1] and these [2], [3] mail threads
You may find your way through Resume[4] and Content[5]


Though I am not sure about this one, maybe this might also help

1. I can see, we can upload doc from PartyContent page[6]
2. On create resume page[4] we can associate member and content


Though I am not sure about the later solution I gave.


1. https://cwiki.apache.org/confluence/display/OFBENDUSER/Resumes
2, https://markmail.org/message/7g6nw3ymm3jxg3e6
3. https://markmail.org/message/3njmrcg5w7mhu7nu
4. https://demo-trunk.ofbiz.apache.org/humanres/control/EditPartyResume
5. https://demo-trunk.ofbiz.apache.org/content/control/main
6.
https://demo-trunk.ofbiz.apache.org/partymgr/control/EditPartyContents?partyId=DemoEmployee

HTH

Thanks and Regards,
Aditya Sharma
Sr. Enterprise Software Engineer
*HotWax Systems*
*Enterprise open source experts*
office: 0731-409-3684
http://www.hotwaxsystems.com




On Wed, Aug 28, 2019 at 2:56 PM Pankaj Bhambure  wrote:

> Hello Everyone,
>
> I am new to Ofbiz and am trying to setup recruitment for my organisation
> and my client. I can see that Ofbiz provides recruitment for internal
> organisation.
>
> I would like to know how to upload resume of potential candidate and
> shortlist for recruitment cycle.
>
> Appreciate the help
>
> Thanking you for such a wonderful service.
>


Re: Timesheet import

2019-08-28 Thread Aditya Sharma
Hi Pankaj,

Refer to this document:
https://cwiki.apache.org/confluence/display/OFBIZ/Handling+of+External+data


HTH
Thanks and regards,
Aditya Sharma

On Wed, Aug 28, 2019 at 2:23 PM Pankaj Bhambure  wrote:

> Hello ofbiz team,
>
> I am using HR module for our organisation. I would like to know how to
> import attendance data capture through bio-metrics system in CSV format
> into Ofbiz system.
>
>
>
> Thanks and regards,
> Pankaj Bhambure
>


Re: Issue with connect localhost

2019-08-20 Thread Aditya Sharma
Moving to the user mailing list.

Hi Tarek Ali,
User mailing list fits for such query as you will get a wider audience
there, see https://ofbiz.apache.org/mailing-lists.html.
Please subscribe to user mailing if you have not.


Is there any error in the console logs?

Thanks and Regards
Aditya Sharma

On Wed, Aug 21, 2019 at 3:33 AM Tarek Ali  wrote:

> Hi,
>
> I used Windows 10.
>
> I have an issue with connect server link https://localhost:8443/webtools
>
>
>
> I downloaded Ofbiz from this link
> https://www.apache.org/dyn/closer.lua/ofbiz/apache-ofbiz-16.11.05.zip
>
> I Downloaded and installed Java 1.8 JDK jdk-8u221-windows-x64
>
> I ran gradlew loadAll then gradlew ofbiz
>
> But I tried to connect te local host link https://localhost:8443/webtools i
> have got this message
>
>
>
> This site can’t be reached
>
> 127.0.0.1 refused to connect.
>
> Try:
>
> Checking the connection
>
> Checking the proxy and the firewall
>
> ERR_CONNECTION_REFUSED
>
>
>
> Could you please help me to resolve this issue
>
>
> BR
>
> Tarek


Re: login api- ajax call

2019-08-07 Thread Aditya Sharma
Hi Rakhee Mohan,


>> 
Have you done any custom change LoginWorker.login() corresponding to this
response.


Thanks & Regards
Aditya Sharma



On Mon, Aug 5, 2019 at 11:46 AM Rakhee Mohan 
wrote:

>
>
>
>
>
>
>
>
>
> Hi,
>
> I am trying to  call to login api from ajax client.It is hitting the
> server.
>
> Here I can only connect to the server.Is this process correct?Or should
> do any further improvements?I need the output in a json format.
>
> I am sharing my code snippet used.
>
> //controller.xml
>
>   
>  
>   path="org.apache.ofbiz.webapp.control.LoginWorker" invoke="login"/>
>  
>   value="requirePasswordChange"/>
>  
>  
>  
>
> Sample ajax code:
>
>
> 
> LOGIN AUTHENTICATION
>  src="<a  rel="nofollow" href="http://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js">http://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js</a>
> ">
>
> 
>
> 
> 
>
> Username: 
> Password: 
>Login
>
> 
>
>
>
> $("#login").click(function(){
>
>  var username = $('#na').val();
>  alert("user"+ username);
>  var password = $('#pa').val();
>  alert("pass" +password);
>  $.ajax({
>  url: '<a  rel="nofollow" href="https://localhost:8443/ordermgr/control/login.json">https://localhost:8443/ordermgr/control/login.json</a>',
>  type:"POST",
>  datatype : "application/json",
>  //contentType: "text/plain",
>  contentType: "json",
>  data: {username:username,password:password},
>
>  success: function() {
>  alert("success");
>  window.location.href =
> "<a  rel="nofollow" href="https://localhost:8443/ordermgr/control/login.&quot">https://localhost:8443/ordermgr/control/login.&quot</a>;;
>  return true;
>
>  },
>error: function(){
>alert("wrong data");
>}
>
>  });
> });
>
>
> 
>
> 
> 
>
>
>
>
> Kind Regards,
>
> Rakhee Mohan.I
>
>
>
> ---
> This email has been checked for viruses by Avast antivirus software.
> https://www.avast.com/antivirus
>


Re: Custom component overriding OOTB application example

2019-07-30 Thread Aditya Sharma
Hi Alexandre,

Adding to it. Here are some references

Extending form:
http://svn.apache.org/repos/asf/ofbiz/ofbiz-plugins/branches/release17.12/birt/widget/accounting/AccountingForms.xml

Extending entity:
http://svn.apache.org/repos/asf/ofbiz/ofbiz-plugins/branches/release17.12/projectmgr/entitydef/entitymodel.xml

For fields like Contact Mechanism, you can prepare data in your own
component and load it using ext reader

Doc on data readers:
https://www.hotwaxsystems.com/ofbiz/ofbiz-data-setupdata-reader-best-practices-tutorial/

List of existing  data readers can be found here:
http://svn.apache.org/repos/asf/ofbiz/ofbiz-framework/branches/release17.12/framework/entity/config/entityengine.xml:92
<http://svn.apache.org/repos/asf/ofbiz/ofbiz-framework/branches/release17.12/framework/entity/config/entityengine.xml>
You can use ext reader for your custom data (recommended) or even you can
have your own custom reader.

Associate file with the reader:
http://svn.apache.org/repos/asf/ofbiz/ofbiz-framework/branches/release17.12/applications/datamodel/ofbiz-component.xml

Preparing data:
http://svn.apache.org/repos/asf/ofbiz/ofbiz-framework/branches/release17.12/applications/datamodel/data/seed/PartySeedData.xml

Command for loading data using specific data readers:
gradlew "ofbiz --load-data readers=seed,seed-initial,ext"


HTH
Thanks and regards,
Aditya Sharma

On Mon, Jul 29, 2019 at 5:50 PM Jacques Le Roux <
jacques.le.r...@les7arts.com> wrote:

> Hi Alexandre,
>
> One point from which you could start is the ecomseo webapp in the
> ecommerce component (plugin).
> There you will see that only the controller and web.xml are needed to
> reuse the ecommerce code while adjusting it for SEO needs.
>
> Also you can extend forms (look for "extends" in *form*.xml files)  and
> entities (look for "extend-entity" in *mode*.xml files)
>
> HTH
>
> Jacques
>
> Le 28/07/2019 à 20:44, Alexandre Beaulieu a écrit :
> > Hello, we are currently evaluating Ofbiz to use it as our development
> framework as well a use existing features as much as possible.
> >
> > Can anybody provide a custom component example (or guidelines) where a
> feature in an OOTB application such as party/partymgr is customised without
> having to copy most of the application in the component?
> >
> > For example, if we want to add some custom contact mechanism type to
> party, it seems overkill to have to copy the whole partymgr webapp/widget
> in the custom component just to customise that.
> > I'm missing a bit of the specifics to achieve that kind of customisation
> from the guidelines I found so far.
> >
> > So if anybody can point me to a good example or better guidelines, that
> would be great.
> >
> > Thanks.
> >
> >
> >
> >
>


Re: [FYI] Demos are on a new server

2019-07-28 Thread Aditya Sharma
Hi Jacques,

I think as Youtube and Vimeo are banned in China[1], we can think of some
other alternatives[2] specific to china as well if required.

1. https://en.wikipedia.org/wiki/Websites_blocked_in_mainland_China
2. https://www.quora.com/What-is-the-best-Chinese-YouTube-alternative

Thanks and regards,
Aditya Sharma
Sr. Enterprise Software Engineer
*HotWax Systems*
*Enterprise open source experts*
office: 0731-409-3684
http://www.hotwaxsystems.com




On Sat, Jul 27, 2019 at 4:42 PM Jacques Le Roux <
jacques.le.r...@les7arts.com> wrote:

> Finally it seems that we don't need to change anything (apart that I put
> HTTPS now on), it got fixed by Daniel Gruno :)
>
> Le 27/07/2019 à 12:37, Jacques Le Roux a écrit :
> > Rather we should keep them in the VM as a secured version and will
> simply update the wiki page by removing the < Videos
> > (sponsored by HotWax Systems)>> section
> > <http://www.hotwaxmedia.com/>
> >
> > I'll do so
> >
> > Jacques
> >
> > Le 27/07/2019 à 12:27, Jacques Le Roux a écrit :
> >> Le 27/07/2019 à 12:13, Jacques Le Roux a écrit :
> >>> We have just a small issue with old big files (videos) at
> >>>
> https://cwiki.apache.org/confluence/display/OFBIZ/Framework+Introduction+Videos+and+Diagrams
> .
> >>
> >> We have them on Vimeo and YouTube. I guess we can drop them in
> big-files and forget it.
> >>
> >> What do people think?
> >>
> >> Jacques
> >>
> >>
> >
>


Apache OFBiz Blog - June 2019 Update

2019-07-24 Thread Aditya Sharma
Hi Everyone

A brief summary of our project news for June month can be found in our
monthly blog update at the link below:
https://s.apache.org/zk18t

Thanks to Sharan Foga, Swapnil M Mane, Suraj Khurana, Deepak Dixit, Michael
Brohl, Jacques Le Roux and Pranay Pandey for their continued support.

--
Thanks & Regards,
Aditya Sharma


Re: problem in instolling ofbiz

2019-07-18 Thread Aditya Sharma
Moving to the user mailing list.

Hi Amit,
User mailing list fits for such query as you will get a wider audience
there, see https://ofbiz.apache.org/mailing-lists.html.
Please subscribe to user mailing if you have not.
Attachments are filtered out on lists so you can store the image on
platforms like google drive, dropbox, etc and share the link here.
Please share some more details like OFBiz version, steps followed.

Thanks and Regards
Aditya Sharma

On Thu, Jul 18, 2019 at 6:04 PM Amit Kumar 
wrote:

> Hello sir,
> when I  installing my ofbiz the installation is failed in this point image
> is below
>
>


Re: Ofbiz apache how to apply Entity Condition

2019-07-17 Thread Aditya Sharma
Hi Ranjith,

I think you should also have a look at Form Widget Examples[1] page in
example component. Here you can find many more examples of your needs.
For all the example you can find the path and link to the source code.

1. https://demo-trunk.ofbiz.apache.org/example/control/FormWidgetExamples

HTH

Thanks and regards,
Aditya Sharma
Sr. Enterprise Software Engineer
*HotWax Systems*
*Enterprise open source experts*
office: 0731-409-3684
http://www.hotwaxsystems.com




On Wed, Jul 17, 2019 at 12:15 PM Yashwant Dhakad <
yashwant.dha...@hotwaxsystems.com> wrote:

> Hi Ranjith,
> Here is the example of entity condition in the drop-down field:
>
> 
>  value="CONTACTLST_PARTY"/>
> 
> 
>
> Thanks & Regards
> --
> Yashwant Dhakad
>
>
> On Wed, Jul 17, 2019 at 12:08 PM Ranjith KR  wrote:
>
> > Hello Everyone,
> >
> > I hope all are doing well, need  some clarification about while going
> > through entity condition apply, the information need about how entity
> > condition can be apply in  drop-down option  (Ofbiz apache) help for the
> > same.
> >
> >
> > *Thanks & Regards,*
> >
> > *Ranjith KR*
> >
>


Re: Inventory Item ID format change

2019-07-01 Thread Aditya Sharma
Hi Nagarajan Chandramohan,

Welcome to OFBiz ecosystem.

You can set it in SequenceValueItem entity. See
https://demo-stable.ofbiz.apache.org/webtools/control/FindGeneric?entityName=SequenceValueItem

HTH

Thanks and regards,
Aditya Sharma
Sr. Enterprise Software Engineer
*HotWax Systems*
*Enterprise open source experts*
office: 0731-409-3684
http://www.hotwaxsystems.com




On Mon, Jul 1, 2019 at 8:25 PM Nagarajan Chandramohan <
cbenagara...@gmail.com> wrote:

> Hi OFBiz users,
>
> Greetings!
>
> I am new to ofbiz. I ran few production run and added final products to
> inventory with serialized Inventory Item type.
> I got (auto generated) Inventory Item ID from "1 to 1000x". is there
> any way I can start from 11850 " something like 11850 to 1185x"
>
> Many thanks and Best wishes,
> Nagarajan Chandramohan
> --
> Nagarajan Chandramohan
> Softwareentwickler
> +49 176 25596292
> Skype Name: cbenagaraj
>


Re: Purpose of invoice reference number

2019-06-22 Thread Aditya Sharma
Moving it to user mailing.

Hi Ashish,

As far as my understanding, one scenario could be if there are different
shipments received for a single PO. For different invoices, there may be
the same (external) orderId in the reference number field.

Though it is not my forte.

Thanks and regards
Aditya Sharma


On Sat, Jun 22, 2019 at 3:13 PM Ashish Pandey <
ashish.pan...@hotwaxsystems.com> wrote:

> Hello Devs,
>
> Currently, we have support to create manual invoice from the Invoice screen
> and after that, we can update the reference number for an invoice from the
> update screen. The same reference number can be assigned to multiple
> invoices.
>
> I was wondering about the purpose of the reference number for the invoice,
> Shouldn't reference number be unique for each invoice?
>
> Please share your thoughts on this. Thank you!
>
> --
> Kind Regards,
> Ashish Pandey
> Enterprise Software Engineer
>
> *HotWax Systems*
> *Enterprise open source experts*
> cell: +91-9172388455
> office: 0731-409-3684
> http://www.hotwaxsystems.com
>


Re: Apache OFBiz Blog - April Update 2019 Update

2019-06-11 Thread Aditya Sharma
+1

Thanks and regards,
Aditya Sharma

On Tue, Jun 11, 2019 at 12:44 PM Jacques Le Roux <
jacques.le.r...@les7arts.com> wrote:

> Thinking about it, maybe we could add it in
> https://cwiki.apache.org/confluence/display/OFBIZ/In+The+News too?
>
> Jacques
>
> Le 22/05/2019 à 15:28, Aditya Sharma a écrit :
> > Definitely. Thanks for sharing the article Jacopo!
> >
> > --
> > Thanks & Regards
> > Aditya Sharma
> >
> > On Wed, May 22, 2019 at 6:19 PM Jacopo Cappellato <
> > jacopo.cappell...@hotwaxsystems.com> wrote:
> >
> >> It would be nice to mention the following article in our next blog post:
> >>
> >>
> >>
> https://solutionsreview.com/enterprise-resource-planning/top-15-free-and-open-source-erp-solutions/
> >>
> >> Regards,
> >>
> >> Jacopo
> >>
> >>
> >> On Thu, May 9, 2019 at 8:29 AM Aditya Sharma 
> >> wrote:
> >>
> >>> Hi Everyone,
> >>>
> >>> A brief summary of our project news for April month can be found in our
> >>> monthly blog update at the link below:
> >>> https://s.apache.org/dBiH
> >>>
> >>> Thanks to Sharan Foga, Swapnil M Mane, Suraj Khurana, Deepak Dixit,
> >> Michael
> >>> Brohl, Jacques Le Roux and Pranay Pandey for their continued support.
> >>>
> >>> --
> >>> Thanks & Regards
> >>> Aditya Sharma
> >>>
> >>
> >> --
> >> Jacopo Cappellato
> >> CTO
> >> *HotWax Systems*
> >> *Enterprise open source experts*
> >>
> >> cell: +39 328 6171390
> >> main: 877.736.4080
> >> http://www.hotwaxsystems.com
> >>
>


Apache OFBiz Blog - May 2019 Update

2019-06-11 Thread Aditya Sharma
Hi Everyone

A brief summary of our project news for May month can be found in our
monthly blog update at the link below:
https://s.apache.org/E92i

Thanks to Sharan Foga, Swapnil M Mane, Suraj Khurana, Deepak Dixit, Michael
Brohl, Jacques Le Roux and Pranay Pandey for their continued support.

--
Thanks & Regards,
Aditya Sharma


Re: Fresh Install

2019-05-28 Thread Aditya Sharma
Moving discussion to the user list.


On Tue, May 28, 2019 at 10:09 AM Swapnil M Mane 
wrote:

> Hi Craig,
>
> This issue could be related to your JDK version.
> Can you please share the details on which OFBiz and Java version you are
> using?
> Also, please refer to this mail thread [1], this might help you.
>
>
> [1] https://markmail.org/thread/iuxnioqiijhrkukp
>
> - Best Regards,
> Swapnil M Mane,
> ofbiz.apache.org
>
>
>
> On Tue, May 28, 2019 at 2:19 AM Craig Parker  wrote:
>
> > I've left directions for myself to get OFBiz up and running on an Ubuntu
> > machine, but I'm missing something. ./gradlew ofbiz is giving me no
> > output, but isn't starting up either. I can't remember where I saw
> > documentation for showing different output.
> >
> >
> >
> >
>


Re: Apache OFBiz Blog - April Update 2019 Update

2019-05-22 Thread Aditya Sharma
Definitely. Thanks for sharing the article Jacopo!

--
Thanks & Regards
Aditya Sharma

On Wed, May 22, 2019 at 6:19 PM Jacopo Cappellato <
jacopo.cappell...@hotwaxsystems.com> wrote:

> It would be nice to mention the following article in our next blog post:
>
>
> https://solutionsreview.com/enterprise-resource-planning/top-15-free-and-open-source-erp-solutions/
>
> Regards,
>
> Jacopo
>
>
> On Thu, May 9, 2019 at 8:29 AM Aditya Sharma 
> wrote:
>
> > Hi Everyone,
> >
> > A brief summary of our project news for April month can be found in our
> > monthly blog update at the link below:
> > https://s.apache.org/dBiH
> >
> > Thanks to Sharan Foga, Swapnil M Mane, Suraj Khurana, Deepak Dixit,
> Michael
> > Brohl, Jacques Le Roux and Pranay Pandey for their continued support.
> >
> > --
> > Thanks & Regards
> > Aditya Sharma
> >
>
>
> --
> Jacopo Cappellato
> CTO
> *HotWax Systems*
> *Enterprise open source experts*
>
> cell: +39 328 6171390
> main: 877.736.4080
> http://www.hotwaxsystems.com
>


Re: Re[2]: Static image files

2019-05-13 Thread Aditya Sharma
As I said you have to move it to webapp.

Refer
framework/resources/templates/web.xml:55
themes/common/webapp/images

Thanks and Regards,
*Aditya Sharma* | Enterprise Software Engineer
HotWax Systems <http://www.hotwaxsystems.com/>
Plot no. 80, Scheme no. 78 Part 2, Near Brilliant Convention Center, Indore,
M.P 452010
Linkedin: *Aditya Sharma* <https://www.linkedin.com/in/aditya-p-sharma/>



On Mon, May 13, 2019 at 2:50 PM Илья Михайлов 
wrote:

> i create folder images in the root.
>
>
> Понедельник, 13 мая 2019, 12:06 +03:00 от Aditya Sharma <
> aditya.sha...@hotwaxsystems.com>:
>
> Hi,
>
> You will have to create a folder in webapp and add it to allowedPaths
> specified in web.xml of your component.
>
> At what location, have you stored the images now?
>
>
>
> Thanks and Regards,
> *Aditya Sharma* | Enterprise Software Engineer
> HotWax Systems <http://www.hotwaxsystems.com/>
> Plot no. 80, Scheme no. 78 Part 2, Near Brilliant Convention Center,
> Indore, M.P 452010
> Linkedin: *Aditya Sharma* <https://www.linkedin.com/in/aditya-p-sharma/>
>
>
>
> On Mon, May 13, 2019 at 2:00 PM Илья Михайлов <
> ghostrideri...@mail.ru.invalid> wrote:
>
> Hallo!
>
> I have a lot of images and i want create folder to open this images in
> ofbiz. But when i try to reach image by url, tomcat returns 404.
> Please, show me the way to solve this problem.
>
>
>
> __
> Разаработка и продвижение сайтов
> https://www.facebook.com/sitebuypodolsk/
>


Re: Static image files

2019-05-13 Thread Aditya Sharma
Hi,

You will have to create a folder in webapp and add it to allowedPaths
specified in web.xml of your component.

At what location, have you stored the images now?



Thanks and Regards,
*Aditya Sharma* | Enterprise Software Engineer
HotWax Systems <http://www.hotwaxsystems.com/>
Plot no. 80, Scheme no. 78 Part 2, Near Brilliant Convention Center, Indore,
M.P 452010
Linkedin: *Aditya Sharma* <https://www.linkedin.com/in/aditya-p-sharma/>



On Mon, May 13, 2019 at 2:00 PM Илья Михайлов
 wrote:

> Hallo!
>
> I have a lot of images and i want create folder to open this images in
> ofbiz. But when i try to reach image by url, tomcat returns 404.
> Please, show me the way to solve this problem.
>


Apache OFBiz Blog - April Update 2019 Update

2019-05-09 Thread Aditya Sharma
Hi Everyone,

A brief summary of our project news for April month can be found in our
monthly blog update at the link below:
https://s.apache.org/dBiH

Thanks to Sharan Foga, Swapnil M Mane, Suraj Khurana, Deepak Dixit, Michael
Brohl, Jacques Le Roux and Pranay Pandey for their continued support.

--
Thanks & Regards
Aditya Sharma


Apache OFBiz Blog - March 2019 Update

2019-05-02 Thread Aditya Sharma
Hi Everyone

A brief summary of our project news for March month can be found in our
monthly blog update at the link below:
https://s.apache.org/lI4M

Thanks to Sharan Foga, Swapnil M Mane, Suraj Khurana, Deepak Dixit, Michael
Brohl, Jacques Le Roux and Pranay Pandey for their continued support.

--
Thanks & Regards
Aditya Sharma


Re: Hello3-error while loading seed data

2019-04-29 Thread Aditya Sharma
Sorry for the noise. I was redirecting to the user mailing list.

Thanks and Regards,
*Aditya Sharma* | Enterprise Software Engineer
HotWax Systems <http://www.hotwaxsystems.com/>
Plot no. 80, Scheme no. 78 Part 2, Near Brilliant Convention Center, Indore,
M.P 452010
Linkedin: *Aditya Sharma* <https://www.linkedin.com/in/aditya-p-sharma/>



On Mon, Apr 29, 2019 at 6:41 PM Aditya Sharma <
aditya.sha...@hotwaxsystems.com> wrote:

> Hi Arshitha,
>
> It would be better if you could please subscribe to user ML first.
> See also why here http://ofbiz.apache.org/mailing-lists.html
>
>
> Please check the database for the table definition.
>
> Thanks and Regards,
> *Aditya Sharma* | Enterprise Software Engineer
> HotWax Systems <http://www.hotwaxsystems.com/>
> Plot no. 80, Scheme no. 78 Part 2, Near Brilliant Convention Center,
> Indore, M.P 452010
> Linkedin: *Aditya Sharma* <https://www.linkedin.com/in/aditya-p-sharma/>
>
>
>
> On Mon, Apr 29, 2019 at 6:35 PM Arshitha K M  wrote:
>
>> Hello Aditya Sharma,
>>  thank you for your email, I have checked the entity definition nothing
>> found as you mentioned in your mail.
>> Best regards,
>> Arshitha K.M
>>
>>
>>
>>
>> On Mon 29 Apr, 2019, 3:47 PM Aditya Sharma, <
>> aditya.sha...@hotwaxsystems.com> wrote:
>>
>>> Hi Arshitha,
>>>
>>> I suspect that either you have defined the entity at two places or maybe
>>> previously you had an entity with the same name but with field
>>> HelloHobbyId as "not null".
>>>
>>> HTH
>>>
>>> Thanks and Regards,
>>> *Aditya Sharma* | Enterprise Software Engineer
>>> HotWax Systems <http://www.hotwaxsystems.com/>
>>> Plot no. 80, Scheme no. 78 Part 2, Near Brilliant Convention Center,
>>> Indore, M.P 452010
>>> Linkedin: *Aditya Sharma* <https://www.linkedin.com/in/aditya-p-sharma/>
>>>
>>>
>>>
>>> On Mon, Apr 29, 2019 at 3:30 PM Jacques Le Roux <
>>> jacques.le.r...@les7arts.com> wrote:
>>>
>>>> Hi,
>>>>
>>>> Your message has been moderated.
>>>>
>>>> Please subscribe to the user ML for such questions and then use your
>>>> email client
>>>> See also why here http://ofbiz.apache.org/mailing-lists.html
>>>>
>>>> You will get a better support , it's more fair to share with everybody
>>>> and people can answer you on the ML rather than directly to you
>>>> The wider the audience the better the answers you might get
>>>>
>>>> Also it's more work for moderators who have to accept your messages as
>>>> long as you have not subscribed.
>>>> I'll personally no longer accept them (other moderators still could)
>>>>
>>>> Thanks
>>>>
>>>> Jacques
>>>>
>>>> Le 29/04/2019 à 09:45, Arshitha K M a écrit :
>>>> > hi,
>>>> > I am new to ofbiz. I  met trouble during loading the seed
>>>> data(hello3),
>>>> >
>>>> > The Following Errors Occurred:
>>>> > ERROR: parsing file: ERROR parsing Entity Xml file:
>>>> > org.xml.sax.SAXException: A transaction error occurred reading
>>>> > dataorg.ofbiz.entity.GenericEntityException:
>>>> > org.ofbiz.entity.GenericEntityException:
>>>> > org.ofbiz.entity.GenericEntityException: Error while inserting:
>>>> > [GenericEntity:HelloHobby][createdStamp,2019-04-29
>>>> > 12:59:49.86(java.sql.Timestamp)][createdTxStamp,2019-04-29
>>>> >
>>>> 12:59:49.82(java.sql.Timestamp)][description,Reading(java.lang.String)][helloHobbyId,READING(java.lang.String)][lastUpdatedStamp,2019-04-29
>>>> > 12:59:49.86(java.sql.Timestamp)][lastUpdatedTxStamp,2019-04-29
>>>> > 12:59:49.82(java.sql.Timestamp)] (SQL Exception while executing the
>>>> > following:INSERT INTO OFBIZ.HELLO_HOBBY (HELLO_HOBBY_ID, DESCRIPTION,
>>>> > LAST_UPDATED_STAMP, LAST_UPDATED_TX_STAMP, CREATED_STAMP,
>>>> CREATED_TX_STAMP)
>>>> > VALUES (?, ?, ?, ?, ?, ?) (Column 'HELLO_PERSON_ID' cannot accept a
>>>> NULL
>>>> > value.))
>>>> > the entity i want to load seed data is having only two columns
>>>> HelloHobbyId
>>>> > and Description,i did'nt get that,why error message showing as
>>>> > 'HelloPersonId' cannot accept a null value.
>>>> >
>>>> > I tried to load seed data into another entity HelloPerson and that was
>>>> > successful.
>>>> > Could you please help me to fix the error.
>>>> >
>>>>
>>>


Re: Hello3-error while loading seed data

2019-04-29 Thread Aditya Sharma
Hi Arshitha,

I suspect that either you have defined the entity at two places or maybe
previously you had an entity with the same name but with field
HelloHobbyId as "not null".

HTH

Thanks and Regards,
*Aditya Sharma* | Enterprise Software Engineer
HotWax Systems <http://www.hotwaxsystems.com/>
Plot no. 80, Scheme no. 78 Part 2, Near Brilliant Convention Center, Indore,
M.P 452010
Linkedin: *Aditya Sharma* <https://www.linkedin.com/in/aditya-p-sharma/>



On Mon, Apr 29, 2019 at 3:30 PM Jacques Le Roux <
jacques.le.r...@les7arts.com> wrote:

> Hi,
>
> Your message has been moderated.
>
> Please subscribe to the user ML for such questions and then use your email
> client
> See also why here http://ofbiz.apache.org/mailing-lists.html
>
> You will get a better support , it's more fair to share with everybody
> and people can answer you on the ML rather than directly to you
> The wider the audience the better the answers you might get
>
> Also it's more work for moderators who have to accept your messages as
> long as you have not subscribed.
> I'll personally no longer accept them (other moderators still could)
>
> Thanks
>
> Jacques
>
> Le 29/04/2019 à 09:45, Arshitha K M a écrit :
> > hi,
> > I am new to ofbiz. I  met trouble during loading the seed data(hello3),
> >
> > The Following Errors Occurred:
> > ERROR: parsing file: ERROR parsing Entity Xml file:
> > org.xml.sax.SAXException: A transaction error occurred reading
> > dataorg.ofbiz.entity.GenericEntityException:
> > org.ofbiz.entity.GenericEntityException:
> > org.ofbiz.entity.GenericEntityException: Error while inserting:
> > [GenericEntity:HelloHobby][createdStamp,2019-04-29
> > 12:59:49.86(java.sql.Timestamp)][createdTxStamp,2019-04-29
> >
> 12:59:49.82(java.sql.Timestamp)][description,Reading(java.lang.String)][helloHobbyId,READING(java.lang.String)][lastUpdatedStamp,2019-04-29
> > 12:59:49.86(java.sql.Timestamp)][lastUpdatedTxStamp,2019-04-29
> > 12:59:49.82(java.sql.Timestamp)] (SQL Exception while executing the
> > following:INSERT INTO OFBIZ.HELLO_HOBBY (HELLO_HOBBY_ID, DESCRIPTION,
> > LAST_UPDATED_STAMP, LAST_UPDATED_TX_STAMP, CREATED_STAMP,
> CREATED_TX_STAMP)
> > VALUES (?, ?, ?, ?, ?, ?) (Column 'HELLO_PERSON_ID' cannot accept a NULL
> > value.))
> > the entity i want to load seed data is having only two columns
> HelloHobbyId
> > and Description,i did'nt get that,why error message showing as
> > 'HelloPersonId' cannot accept a null value.
> >
> > I tried to load seed data into another entity HelloPerson and that was
> > successful.
> > Could you please help me to fix the error.
> >
>


Re: Error Rendering Party

2019-04-04 Thread Aditya Sharma
If the issue is with a specific party, you should check the data prepared
for it.

Thanks and Regards,
*Aditya Sharma* | Enterprise Software Engineer
HotWax Systems <http://www.hotwaxsystems.com/>
Plot no. 80, Scheme no. 78 Part 2, Near Brilliant Convention Center, Indore,
M.P 452010
Linkedin: *Aditya Sharma* <https://www.linkedin.com/in/aditya-p-sharma/>



On Thu, Apr 4, 2019 at 6:19 PM Greg Finlayson 
wrote:

> Release 16.11.05, running on Windows 10 against SQL server 2012. Same
> issues running on Ubuntu or win 8.
>
> No custom mods.
>
> Sent from my BlackBerry — the most secure mobile device — via the XL
> Network
> From: aditya.sha...@hotwaxsystems.com
> Sent: 4 April 2019 8:34 pm
> To: user@ofbiz.apache.org
> Reply to: user@ofbiz.apache.org
> Subject: Re: Error Rendering Party
>
>
> Hi Greg,
> It will give us better insight if you give us some more details.
>
> Which release?
> Steps followed?
> Any custom changes?
>
> Thanks and Regards,
> *Aditya Sharma* | Enterprise Software Engineer
> HotWax Systems <http://www.hotwaxsystems.com/>
> Plot no. 80, Scheme no. 78 Part 2, Near Brilliant Convention Center,
> Indore,
> M.P 452010
> Linkedin: *Aditya Sharma* <https://www.linkedin.com/in/aditya-p-sharma/>
>
>
>
> On Thu, Apr 4, 2019 at 6:07 PM Greg Finlayson
> 
> wrote:
>
> > I get the following error when trying to display one particular party.
> > Fine with all other parties.
> >
> >
> > org.apache.ofbiz.widget.renderer.ScreenRenderException: Error rendering
> > screen [component://party/widget/partymgr/PartyScreens.xml#viewprofile]:
> > org.apache.ofbiz.widget.renderer.ScreenRenderException: Error rendering
> > screen
> >
> [component://party/widget/partymgr/CommonScreens.xml#CommonPartyDecorator]:
> > java.lang.IllegalArgumentException: Error doing entity query by
> condition:
> > org.apache.ofbiz.base.util.GeneralException: Error finding entity value
> by
> > primary key with entity-one:
> > org.apache.ofbiz.entity.GenericEntityException:
> > org.apache.shiro.crypto.CryptoException: Unable to execute 'doFinal' with
> > cipher instance [javax.crypto.Cipher@71ccde0f]. (Unable to execute
> > 'doFinal' with cipher instance [javax.crypto.Cipher@71ccde0f].)
> > (org.apache.shiro.crypto.CryptoException: Unable to execute 'doFinal'
> with
> > cipher instance [javax.crypto.Cipher@71ccde0f]. (Unable to execute
> > 'doFinal' with cipher instance [javax.crypto.Cipher@71ccde0f].)) (Error
> > doing entity query by condition:
> > org.apache.ofbiz.base.util.GeneralException: Error finding entity value
> by
> > primary key with entity-one:
> > org.apache.ofbiz.entity.GenericEntityException:
> > org.apache.shiro.crypto.CryptoException: Unable to execute 'doFinal' with
> > cipher instance [javax.crypto.Cipher@71ccde0f]. (Unable to execute
> > 'doFinal' with cipher instance [javax.crypto.Cipher@71ccde0f].)
> > (org.apache.shiro.crypto.CryptoException: Unable to execute 'doFinal'
> with
> > cipher instance [javax.crypto.Cipher@71ccde0f]. (Unable to execute
> > 'doFinal' with cipher instance [javax.crypto.Cipher@71ccde0f].))) (Error
> > rendering screen
> >
> [component://party/widget/partymgr/CommonScreens.xml#CommonPartyDecorator]:
> > java.lang.IllegalArgumentException: Error doing entity query by
> condition:
> > org.apache.ofbiz.base.util.GeneralException: Error finding entity value
> by
> > primary key with entity-one:
> > org.apache.ofbiz.entity.GenericEntityException:
> > org.apache.shiro.crypto.CryptoException: Unable to execute 'doFinal' with
> > cipher instance [javax.crypto.Cipher@71ccde0f]. (Unable to execute
> > 'doFinal' with cipher instance [javax.crypto.Cipher@71ccde0f].)
> > (org.apache.shiro.crypto.CryptoException: Unable to execute 'doFinal'
> with
> > cipher instance [javax.crypto.Cipher@71ccde0f]. (Unable to execute
> > 'doFinal' with cipher instance [javax.crypto.Cipher@71ccde0f].)) (Error
> > doing entity query by condition:
> > org.apache.ofbiz.base.util.GeneralException: Error finding entity value
> by
> > primary key with entity-one:
> > org.apache.ofbiz.entity.GenericEntityException:
> > org.apache.shiro.crypto.CryptoException: Unable to execute 'doFinal' with
> > cipher instance [javax.crypto.Cipher@71ccde0f]. (Unable to execute
> > 'doFinal' with cipher instance [javax.crypto.Cipher@71ccde0f].)
> > (org.apache.shiro.crypto.CryptoException: Unable to execute 'doFinal'
> with
> > cipher instance [javax.crypto.Cipher@71ccde0f]. (Unable to execute
> > 'doFinal' with cipher instance [javax.crypto.Cipher@71ccde0f].
> >
>


Re: Error Rendering Party

2019-04-04 Thread Aditya Sharma
Hi Greg,
It will give us better insight if you give us some more details.

Which release?
Steps followed?
Any custom changes?

Thanks and Regards,
*Aditya Sharma* | Enterprise Software Engineer
HotWax Systems <http://www.hotwaxsystems.com/>
Plot no. 80, Scheme no. 78 Part 2, Near Brilliant Convention Center, Indore,
M.P 452010
Linkedin: *Aditya Sharma* <https://www.linkedin.com/in/aditya-p-sharma/>



On Thu, Apr 4, 2019 at 6:07 PM Greg Finlayson 
wrote:

> I get the following error when trying to display one particular party.
> Fine with all other parties.
>
>
> org.apache.ofbiz.widget.renderer.ScreenRenderException: Error rendering
> screen [component://party/widget/partymgr/PartyScreens.xml#viewprofile]:
> org.apache.ofbiz.widget.renderer.ScreenRenderException: Error rendering
> screen
> [component://party/widget/partymgr/CommonScreens.xml#CommonPartyDecorator]:
> java.lang.IllegalArgumentException: Error doing entity query by condition:
> org.apache.ofbiz.base.util.GeneralException: Error finding entity value by
> primary key with entity-one:
> org.apache.ofbiz.entity.GenericEntityException:
> org.apache.shiro.crypto.CryptoException: Unable to execute 'doFinal' with
> cipher instance [javax.crypto.Cipher@71ccde0f]. (Unable to execute
> 'doFinal' with cipher instance [javax.crypto.Cipher@71ccde0f].)
> (org.apache.shiro.crypto.CryptoException: Unable to execute 'doFinal' with
> cipher instance [javax.crypto.Cipher@71ccde0f]. (Unable to execute
> 'doFinal' with cipher instance [javax.crypto.Cipher@71ccde0f].)) (Error
> doing entity query by condition:
> org.apache.ofbiz.base.util.GeneralException: Error finding entity value by
> primary key with entity-one:
> org.apache.ofbiz.entity.GenericEntityException:
> org.apache.shiro.crypto.CryptoException: Unable to execute 'doFinal' with
> cipher instance [javax.crypto.Cipher@71ccde0f]. (Unable to execute
> 'doFinal' with cipher instance [javax.crypto.Cipher@71ccde0f].)
> (org.apache.shiro.crypto.CryptoException: Unable to execute 'doFinal' with
> cipher instance [javax.crypto.Cipher@71ccde0f]. (Unable to execute
> 'doFinal' with cipher instance [javax.crypto.Cipher@71ccde0f].))) (Error
> rendering screen
> [component://party/widget/partymgr/CommonScreens.xml#CommonPartyDecorator]:
> java.lang.IllegalArgumentException: Error doing entity query by condition:
> org.apache.ofbiz.base.util.GeneralException: Error finding entity value by
> primary key with entity-one:
> org.apache.ofbiz.entity.GenericEntityException:
> org.apache.shiro.crypto.CryptoException: Unable to execute 'doFinal' with
> cipher instance [javax.crypto.Cipher@71ccde0f]. (Unable to execute
> 'doFinal' with cipher instance [javax.crypto.Cipher@71ccde0f].)
> (org.apache.shiro.crypto.CryptoException: Unable to execute 'doFinal' with
> cipher instance [javax.crypto.Cipher@71ccde0f]. (Unable to execute
> 'doFinal' with cipher instance [javax.crypto.Cipher@71ccde0f].)) (Error
> doing entity query by condition:
> org.apache.ofbiz.base.util.GeneralException: Error finding entity value by
> primary key with entity-one:
> org.apache.ofbiz.entity.GenericEntityException:
> org.apache.shiro.crypto.CryptoException: Unable to execute 'doFinal' with
> cipher instance [javax.crypto.Cipher@71ccde0f]. (Unable to execute
> 'doFinal' with cipher instance [javax.crypto.Cipher@71ccde0f].)
> (org.apache.shiro.crypto.CryptoException: Unable to execute 'doFinal' with
> cipher instance [javax.crypto.Cipher@71ccde0f]. (Unable to execute
> 'doFinal' with cipher instance [javax.crypto.Cipher@71ccde0f].
>


Re: 2 ofbiz questions

2019-03-29 Thread Aditya Sharma
Hi Sergio,

>1) Edit Contact information in Party Manager > State/Province
>The value for State/Province is 'No States/Province exists' when selecting
Spain as country. Would you please let me know where I can add this
information.

Refer:

1.
https://markmail.org/message/fuarn7zvuhv7ldmp#query:+page:1+mid:fuarn7zvuhv7ldmp+state:results
2. https://issues.apache.org/jira/browse/OFBIZ-10596

>2) Shipping cost estimates. How can I best setup weight based
transportation cost?
>Example:
>Box weight 0-5 kgs --> 5 Euros
>Box weight 5 - 10 kgs --> 4 Euros
>Box weight 10 - 30 kgs --> 3,75 Euros
>etc..


Refer:
1.
http://ofbiz.135035.n4.nabble.com/Shipping-configuration-in-OFBIZ-td4640305.html
2. http://ofbiz.135035.n4.nabble.com/Shipment-cost-estimate-td2253163.html

HTH

Thanks and Regards,
*Aditya Sharma* | Enterprise Software Engineer
HotWax Systems <http://www.hotwaxsystems.com/>
Plot no. 80, Scheme no. 78 Part 2, Near Brilliant Convention Center, Indore,
M.P 452010
Linkedin: *Aditya Sharma* <https://www.linkedin.com/in/aditya-p-sharma/>



On Fri, Mar 29, 2019 at 12:11 AM Sergio Rodriguez 
wrote:

> Hi, I am new to Ofbiz. I tested it now for a few days and must say that I
> am impressed by this application.
> Congratulations to the community.
>
> I progressed quite a bit in understanding how Ofbiz works, but there are
> two things I cannot get a solution and hope that the community can help me.
> 1) Edit Contact information in Party Manager > State/Province
> The value for State/Province is 'No States/Province exists' when selecting
> Spain as country. Would you please let me know where I can add this
> information.
>
> 2) Shipping cost estimates. How can I best setup weight based
> transportation cost?
> Example:
> Box weight 0-5 kgs --> 5 Euros
> Box weight 5 - 10 kgs --> 4 Euros
> Box weight 10 - 30 kgs --> 3,75 Euros
> etc..
>
> Thank you in advance for your help.
>
> Sergio
>
>
>
>
> Sent from Outlook<http://aka.ms/weboutlook>
>


Apache OFBiz Blog - February 2019 Update

2019-03-18 Thread Aditya Sharma
Hi Everyone

A brief summary of our project news for last month can be found in our
monthly blog update at the link below:

https://s.apache.org/xasS

Thanks to Sharan Foga, Swapnil M Mane, Suraj Khurana, Deepak Dixit,
Michael Brohl, Jacques Le Roux and Pranay Pandey for their continued
support.

Thanks & Regards
Aditya Sharma


Re: Upgraded jquery version to 3.3.1

2019-03-13 Thread Aditya Sharma
Hi Sonali,

You need to add jQuery Migrate 3.0.0.

You can refer to OFBIZ-9978
<https://issues.apache.org/jira/browse/OFBIZ-9978> for more details.

HTH

Thanks and Regards,
*Aditya Sharma* | Enterprise Software Engineer
HotWax Systems <http://www.hotwaxsystems.com/>
Plot no. 80, Scheme no. 78 Part 2, Near Brilliant Convention Center, Indore,
M.P 452010
Linkedin: *Aditya Sharma* <https://www.linkedin.com/in/aditya-p-sharma/>



On Wed, Mar 13, 2019 at 2:04 PM Sonali Agrahari 
wrote:

> Hello,
>
> I have upgraded jquery version to 3.3.1 in OFbiz 16.11. For this, I added
> jquery-3.3.1.min.js file in framework/images/webapp/images/jquery path and
> also include this jquery path in all required files.
>
> What is the version of jquery migrate which is supported to
> jquery-3.3.1.min.js.
> Kindly suggest, If there is anything else to do.
>
>
>
> Thanks & regards
> Sonali Agrahari
>
>
>
>
>
> --
> Sent from: http://ofbiz.135035.n4.nabble.com/OFBiz-User-f135036.html
>


Re: Web analytics

2019-02-28 Thread Aditya Sharma
For ecommerce plugin,

You can use WebAnalyticsConfig entity. Refer data in
applications/datamodel/data/demo/OrderDemoData.xml:282
and plugins/ecommerce/template/includes/HeaderHead.ftl:112
or
You can directly add the snippet in header file
plugins/ecommerce/template/includes/HeaderHead.ftl

Thanks and Regards,
*Aditya Sharma*


On Thu, Feb 28, 2019 at 5:32 PM Aditya Sharma <
aditya.sha...@hotwaxsystems.com> wrote:

>
>
> Refer https://developer.matomo.org/guides/tracking-javascript-guide
>
>
> Thanks and Regards,
> *Aditya Sharma* | Enterprise Software Engineer
> HotWax Systems <http://www.hotwaxsystems.com/>
> Plot no. 80, Scheme no. 78 Part 2, Near Brilliant Convention Center,
> Indore, M.P 452010
> Linkedin: *Aditya Sharma* <https://www.linkedin.com/in/aditya-p-sharma/>
>
>
>
> On Thu, Feb 28, 2019 at 5:06 PM Wolfgang Paul Rauchholz <
> wp.rauchh...@gmail.com> wrote:
>
>> I installed Matomo.
>> Would you please tell me  which files I have to add the JavaScript
>> Tracking Code to track the traffic on the ecommercie pages?
>>
>>
>> Thank you,
>>
>> Wolfgang
>>
>>
>> On Thu, 2019-02-28 at 10:46 +0530, Aditya Sharma wrote:
>> > Hi Wolfgang,
>> >
>> > For OFBiz OOTB tracking. You can enable server stats in OFBiz from
>> > serverstats.properties file. Refer to this [1] document
>> > Refer Visit and ServerHit entities. These visits can be viewed from
>> > the
>> > Find Visit [2] page of partymgr component.
>> >
>> > If you are looking for open source tools like Google Web Analytics,
>> > indeed
>> > Matomo (formerly known as Piwik) would be a good choice.
>> >
>> > HTH
>> >
>> >
>> > [1].
>> >
>>
>> https://cwiki.apache.org/confluence/display/OFBIZ/Framework+Configuration+Guide#FrameworkConfigurationGuide-serverstats.properties
>> > [2]. https://demo-stable.ofbiz.apache.org/partymgr/control/findVisits
>> >
>> > Thanks and Regards,
>> > *Aditya Sharma* | Enterprise Software Engineer
>> > HotWax Systems <http://www.hotwaxsystems.com/>
>> > Plot no. 80, Scheme no. 78 Part 2, Near Brilliant Convention Center,
>> > Indore,
>> > M.P 452010
>> > Linkedin: *Aditya Sharma* <
>> > https://www.linkedin.com/in/aditya-p-sharma/>
>> >
>> >
>> >
>> > On Wed, Feb 27, 2019 at 10:44 PM Michael Brohl <
>> > michael.br...@ecomify.de>
>> > wrote:
>> >
>> > > Hi Wolfgang,
>> > >
>> > > OFBiz itself can track visits and tracking codes, see the marketing
>> > > application.
>> > >
>> > > We are mainly using Matomo (formerly known as Piwik) for web
>> > > analytics
>> > > with OFBiz.
>> > >
>> > > Best regards,
>> > >
>> > > Michael
>> > >
>> > >
>> > > Am 27.02.19 um 15:03 schrieb wp.rauchh...@gmail.com:
>> > > > I do have a few  questions around ofbiz and web analytics:
>> > > >
>> > > > * Where can I find document on how to setup it up in orbiz?
>> > > > * Does ifbiz has reporting on board I did not find?
>> > > > * From your experience which other tools than google webanalytics
>> > > > can be
>> > >
>> > > used to drive in-depth reports? I'd rather prefer an open source
>> > > tool than
>> > > big brother google.
>> > > >
>> > > >
>> > > > Thanks, Wolfgang
>> > >
>> > >
>>
>>


Re: Web analytics

2019-02-28 Thread Aditya Sharma
Refer https://developer.matomo.org/guides/tracking-javascript-guide


Thanks and Regards,
*Aditya Sharma* | Enterprise Software Engineer
HotWax Systems <http://www.hotwaxsystems.com/>
Plot no. 80, Scheme no. 78 Part 2, Near Brilliant Convention Center, Indore,
M.P 452010
Linkedin: *Aditya Sharma* <https://www.linkedin.com/in/aditya-p-sharma/>



On Thu, Feb 28, 2019 at 5:06 PM Wolfgang Paul Rauchholz <
wp.rauchh...@gmail.com> wrote:

> I installed Matomo.
> Would you please tell me  which files I have to add the JavaScript
> Tracking Code to track the traffic on the ecommercie pages?
>
>
> Thank you,
>
> Wolfgang
>
>
> On Thu, 2019-02-28 at 10:46 +0530, Aditya Sharma wrote:
> > Hi Wolfgang,
> >
> > For OFBiz OOTB tracking. You can enable server stats in OFBiz from
> > serverstats.properties file. Refer to this [1] document
> > Refer Visit and ServerHit entities. These visits can be viewed from
> > the
> > Find Visit [2] page of partymgr component.
> >
> > If you are looking for open source tools like Google Web Analytics,
> > indeed
> > Matomo (formerly known as Piwik) would be a good choice.
> >
> > HTH
> >
> >
> > [1].
> >
>
> https://cwiki.apache.org/confluence/display/OFBIZ/Framework+Configuration+Guide#FrameworkConfigurationGuide-serverstats.properties
> > [2]. https://demo-stable.ofbiz.apache.org/partymgr/control/findVisits
> >
> > Thanks and Regards,
> > *Aditya Sharma* | Enterprise Software Engineer
> > HotWax Systems <http://www.hotwaxsystems.com/>
> > Plot no. 80, Scheme no. 78 Part 2, Near Brilliant Convention Center,
> > Indore,
> > M.P 452010
> > Linkedin: *Aditya Sharma* <
> > https://www.linkedin.com/in/aditya-p-sharma/>
> >
> >
> >
> > On Wed, Feb 27, 2019 at 10:44 PM Michael Brohl <
> > michael.br...@ecomify.de>
> > wrote:
> >
> > > Hi Wolfgang,
> > >
> > > OFBiz itself can track visits and tracking codes, see the marketing
> > > application.
> > >
> > > We are mainly using Matomo (formerly known as Piwik) for web
> > > analytics
> > > with OFBiz.
> > >
> > > Best regards,
> > >
> > > Michael
> > >
> > >
> > > Am 27.02.19 um 15:03 schrieb wp.rauchh...@gmail.com:
> > > > I do have a few  questions around ofbiz and web analytics:
> > > >
> > > > * Where can I find document on how to setup it up in orbiz?
> > > > * Does ifbiz has reporting on board I did not find?
> > > > * From your experience which other tools than google webanalytics
> > > > can be
> > >
> > > used to drive in-depth reports? I'd rather prefer an open source
> > > tool than
> > > big brother google.
> > > >
> > > >
> > > > Thanks, Wolfgang
> > >
> > >
>
>


Re: Web analytics

2019-02-27 Thread Aditya Sharma
Hi Wolfgang,

For OFBiz OOTB tracking. You can enable server stats in OFBiz from
serverstats.properties file. Refer to this [1] document
Refer Visit and ServerHit entities. These visits can be viewed from the
Find Visit [2] page of partymgr component.

If you are looking for open source tools like Google Web Analytics, indeed
Matomo (formerly known as Piwik) would be a good choice.

HTH


[1].
https://cwiki.apache.org/confluence/display/OFBIZ/Framework+Configuration+Guide#FrameworkConfigurationGuide-serverstats.properties
[2]. https://demo-stable.ofbiz.apache.org/partymgr/control/findVisits

Thanks and Regards,
*Aditya Sharma* | Enterprise Software Engineer
HotWax Systems <http://www.hotwaxsystems.com/>
Plot no. 80, Scheme no. 78 Part 2, Near Brilliant Convention Center, Indore,
M.P 452010
Linkedin: *Aditya Sharma* <https://www.linkedin.com/in/aditya-p-sharma/>



On Wed, Feb 27, 2019 at 10:44 PM Michael Brohl 
wrote:

> Hi Wolfgang,
>
> OFBiz itself can track visits and tracking codes, see the marketing
> application.
>
> We are mainly using Matomo (formerly known as Piwik) for web analytics
> with OFBiz.
>
> Best regards,
>
> Michael
>
>
> Am 27.02.19 um 15:03 schrieb wp.rauchh...@gmail.com:
> > I do have a few  questions around ofbiz and web analytics:
> >
> > * Where can I find document on how to setup it up in orbiz?
> > * Does ifbiz has reporting on board I did not find?
> > * From your experience which other tools than google webanalytics can be
> used to drive in-depth reports? I'd rather prefer an open source tool than
> big brother google.
> >
> >
> > Thanks, Wolfgang
>
>


Re: Error in stable / trunk with myleads for certain leads

2019-02-11 Thread Aditya Sharma
Hi Rajesh,

Please check if there is already an issue created for it
https://issues.apache.org/jira/issues/?filter=-4=project%20%3D%20OFBIZ%20order%20by%20created%20DESC
If not please feel free to create one.

Thanks and Regards,
*Aditya Sharma* | Enterprise Software Engineer
HotWax Systems <http://www.hotwaxsystems.com/>
Plot no. 80, Scheme no. 78 Part 2, Near Brilliant Convention Center, Indore,
M.P 452010
Linkedin: *Aditya Sharma* <https://www.linkedin.com/in/aditya-p-sharma/>



On Tue, Feb 12, 2019 at 8:42 AM Rajesh Mallah 
wrote:

> Dear All,
>
> I am getting below error when i access "My Leads"  after
> assigning the first 2 leads to myself in the demo stable or the trunk.
>
> Can someone please look into this?
>
> java.lang.RuntimeException: Error rendering included form named
> [ListMyLeads] at location
> [component://marketing/widget/sfa/forms/LeadForms.xml]:
> java.lang.IllegalArgumentException: Error evaluating groovy use-when
> condition [roleTypeId!=null&] on the field partyId of form ListMyLeads:
> org.codehaus.groovy.control.MultipleCompilationErrorsException: startup
> failed: Script1.groovy: 1: unexpected token: @ line 1, column 18.
> roleTypeId!=null& ^ 1 error java.lang.IllegalArgumentException: Error
> evaluating groovy use-when condition [roleTypeId!=null&] on the field
> partyId of form ListMyLeads:
> org.codehaus.groovy.control.MultipleCompilationErrorsException: startup
> failed: Script1.groovy: 1: unexpected token: @ line 1, column 18.
> roleTypeId!=null& ^ 1 error
>
>
> Regards
> Rajesh Mallah.
>


Re: Easiest way to load entity data in XML from cmdline

2019-02-11 Thread Aditya Sharma
Okay. Added a note and updated example. I will check for the issue later.

Thanks and Regards,
*Aditya Sharma* | Enterprise Software Engineer
HotWax Systems <http://www.hotwaxsystems.com/>
Plot no. 80, Scheme no. 78 Part 2, Near Brilliant Convention Center, Indore,
M.P 452010
Linkedin: *Aditya Sharma* <https://www.linkedin.com/in/aditya-p-sharma/>



On Mon, Feb 11, 2019 at 5:27 PM Rajesh Mallah 
wrote:

> Hi Aditya  ,
>
> with the stable release , it does work and I am benefiting from it.
> you may kindly change the example in the wiki (and add a note about the
> lc).
> Its indeed the simplest way to load entity data.
>
> Regds
> mallah.
>
>
>
>
> On Mon, Feb 11, 2019 at 5:00 PM Aditya Sharma <
> aditya.sha...@hotwaxsystems.com> wrote:
>
> > Indeed Rajesh. All files names get converted to lowercase while
> processing
> > so files with uppercase/camel/pascal case don't work. I will look
> further.
> >
> > I also noticed that it no longer works for Trunk with Gradle 5 & fails
> with
> > following error:
> > The task name 'ofbiz --load-data
> > file=applications/party/data/PartyTypeData.xml' must not contain any of
> the
> > following characters: [/, \, :, <, >, ", ?, *, |].
> >
> > Thanks and Regards,
> > *Aditya Sharma* | Enterprise Software Engineer
> > HotWax Systems <http://www.hotwaxsystems.com/>
> > Plot no. 80, Scheme no. 78 Part 2, Near Brilliant Convention Center,
> > Indore,
> > M.P 452010
> > Linkedin: *Aditya Sharma* <https://www.linkedin.com/in/aditya-p-sharma/>
> >
> >
> >
> > On Mon, Feb 11, 2019 at 11:21 AM Rajesh Mallah 
> > wrote:
> >
> > > Hi Aditya ,
> > >
> > > Thanks for the updating the docs ,
> > > but For some reason the filename MYDATA.xml did not work for me
> > > I had to change it to mydata.xml
> > > is it supposed to be like this?
> > >
> > > >> gradlew "ofbiz --load-data file=data/MyImportData.xml
> > > <https://cwiki.apache.org/confluence/display/OFBIZ/MyImportData.xml>"
> > >
> > > I am not sure if the MixedCase would work.
> > >
> > > Regds
> > > Mallah.
> > >
> > >
> > >
> > >
> > >
> > > On Mon, Feb 11, 2019 at 10:50 AM Aditya Sharma <
> > > aditya.sha...@hotwaxsystems.com> wrote:
> > >
> > > > Thanks, Rajesh, Rohit, and Francisco.
> > > >
> > > > I have updated the info.
> > > >
> > > > Thanks and Regards,
> > > > Aditya Sharma
> > > >
> > > > On Mon, Feb 11, 2019 at 10:23 AM Rajesh Mallah <
> > mallah.raj...@gmail.com>
> > > > wrote:
> > > >
> > > > > Dear Rohit / Francisco ,
> > > > >
> > > > > Thanks to both of you.
> > > > >
> > > > > I wanted to update with this info the below URL:
> > > > >
> > > >
> > >
> >
> https://cwiki.apache.org/confluence/display/OFBIZ/Handling+of+External+data
> > > > >
> > > > > but my confluence credentials not working at this moment.
> > > > >
> > > > >
> > > > > regds
> > > > > mallah.
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > > On Mon, Feb 11, 2019 at 8:43 AM Rohit Koushal <
> > > > > rohit.kous...@hotwaxsystems.com> wrote:
> > > > >
> > > > > > Addition to the above reply, if you have multiple files then put
> > them
> > > > in
> > > > > a
> > > > > > directory and run below command
> > > > > >
> > > > > > `gradlew "ofbiz --load-data dir=[path]"`
> > > > > >
> > > > > >
> > > > > >
> > > > > > On Mon, Feb 11, 2019 at 3:44 AM Blurbiness Info <
> > i...@blurbiness.com
> > > >
> > > > > > wrote:
> > > > > >
> > > > > > > Dear Rajesh,
> > > > > > >
> > > > > > > You could use:
> > > > > > >
> > > > > > > gradlew "ofbiz --load-data file=foo/bar/FileNameHere.xml"
> > > > > > >
> > > > > > > For any doubth about ofbiz command line options, the most
> useful
> > > > > > > documentation source 

Re: Easiest way to load entity data in XML from cmdline

2019-02-11 Thread Aditya Sharma
Indeed Rajesh. All files names get converted to lowercase while processing
so files with uppercase/camel/pascal case don't work. I will look further.

I also noticed that it no longer works for Trunk with Gradle 5 & fails with
following error:
The task name 'ofbiz --load-data
file=applications/party/data/PartyTypeData.xml' must not contain any of the
following characters: [/, \, :, <, >, ", ?, *, |].

Thanks and Regards,
*Aditya Sharma* | Enterprise Software Engineer
HotWax Systems <http://www.hotwaxsystems.com/>
Plot no. 80, Scheme no. 78 Part 2, Near Brilliant Convention Center, Indore,
M.P 452010
Linkedin: *Aditya Sharma* <https://www.linkedin.com/in/aditya-p-sharma/>



On Mon, Feb 11, 2019 at 11:21 AM Rajesh Mallah 
wrote:

> Hi Aditya ,
>
> Thanks for the updating the docs ,
> but For some reason the filename MYDATA.xml did not work for me
> I had to change it to mydata.xml
> is it supposed to be like this?
>
> >> gradlew "ofbiz --load-data file=data/MyImportData.xml
> <https://cwiki.apache.org/confluence/display/OFBIZ/MyImportData.xml>"
>
> I am not sure if the MixedCase would work.
>
> Regds
> Mallah.
>
>
>
>
>
> On Mon, Feb 11, 2019 at 10:50 AM Aditya Sharma <
> aditya.sha...@hotwaxsystems.com> wrote:
>
> > Thanks, Rajesh, Rohit, and Francisco.
> >
> > I have updated the info.
> >
> > Thanks and Regards,
> > Aditya Sharma
> >
> > On Mon, Feb 11, 2019 at 10:23 AM Rajesh Mallah 
> > wrote:
> >
> > > Dear Rohit / Francisco ,
> > >
> > > Thanks to both of you.
> > >
> > > I wanted to update with this info the below URL:
> > >
> >
> https://cwiki.apache.org/confluence/display/OFBIZ/Handling+of+External+data
> > >
> > > but my confluence credentials not working at this moment.
> > >
> > >
> > > regds
> > > mallah.
> > >
> > >
> > >
> > >
> > >
> > > On Mon, Feb 11, 2019 at 8:43 AM Rohit Koushal <
> > > rohit.kous...@hotwaxsystems.com> wrote:
> > >
> > > > Addition to the above reply, if you have multiple files then put them
> > in
> > > a
> > > > directory and run below command
> > > >
> > > > `gradlew "ofbiz --load-data dir=[path]"`
> > > >
> > > >
> > > >
> > > > On Mon, Feb 11, 2019 at 3:44 AM Blurbiness Info  >
> > > > wrote:
> > > >
> > > > > Dear Rajesh,
> > > > >
> > > > > You could use:
> > > > >
> > > > > gradlew "ofbiz --load-data file=foo/bar/FileNameHere.xml"
> > > > >
> > > > > For any doubth about ofbiz command line options, the most useful
> > > > > documentation source is the ofbiz/readme.md file.
> > > > >
> > > > > Best regards,
> > > > >
> > > > > Francisco
> > > > >
> > > > >
> > > > > El dom., 10 feb. 2019 a las 21:00, Rajesh Mallah (<
> > > > mallah.raj...@gmail.com
> > > > > >)
> > > > > escribió:
> > > > >
> > > > > > Dear List ,
> > > > > >
> > > > > > While importing data from external systems, i am creating XML
> files
> > > > > > having content like below.
> > > > > >
> > > > > > DemoData.xml
> > > > > > 
> > > > > > 
> > > > > > ..
> > > > > > entity data here ...
> > > > > > ..
> > > > > > 
> > > > > >
> > > > > > What is the simple command that can be executed on shell to load
> > > > > > the data from such files into OFBiz.
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > > regds
> > > > > > mallah.
> > > > > >
> > > > >
> > > > >
> > > > > --
> > > > >
> > > > >
> > > > > *Blurbiness*
> > > > > Producción multimedia para su negocio
> > > > > *www.blurbiness.com* <http://www.blurbiness.com>
> > > > >
> > > >
> > > >
> > > > 
> > > > Thanks and Regards
> > > > Rohit Koushal
> > > > Sr. Enterprise Software Engineer
> > > > Hotwax Systems
> > > > www.hotwaxsystems.com
> > > >
> > >
> >
>


Re: Easiest way to load entity data in XML from cmdline

2019-02-10 Thread Aditya Sharma
Thanks, Rajesh, Rohit, and Francisco.

I have updated the info.

Thanks and Regards,
Aditya Sharma

On Mon, Feb 11, 2019 at 10:23 AM Rajesh Mallah 
wrote:

> Dear Rohit / Francisco ,
>
> Thanks to both of you.
>
> I wanted to update with this info the below URL:
> https://cwiki.apache.org/confluence/display/OFBIZ/Handling+of+External+data
>
> but my confluence credentials not working at this moment.
>
>
> regds
> mallah.
>
>
>
>
>
> On Mon, Feb 11, 2019 at 8:43 AM Rohit Koushal <
> rohit.kous...@hotwaxsystems.com> wrote:
>
> > Addition to the above reply, if you have multiple files then put them in
> a
> > directory and run below command
> >
> > `gradlew "ofbiz --load-data dir=[path]"`
> >
> >
> >
> > On Mon, Feb 11, 2019 at 3:44 AM Blurbiness Info 
> > wrote:
> >
> > > Dear Rajesh,
> > >
> > > You could use:
> > >
> > > gradlew "ofbiz --load-data file=foo/bar/FileNameHere.xml"
> > >
> > > For any doubth about ofbiz command line options, the most useful
> > > documentation source is the ofbiz/readme.md file.
> > >
> > > Best regards,
> > >
> > > Francisco
> > >
> > >
> > > El dom., 10 feb. 2019 a las 21:00, Rajesh Mallah (<
> > mallah.raj...@gmail.com
> > > >)
> > > escribió:
> > >
> > > > Dear List ,
> > > >
> > > > While importing data from external systems, i am creating XML files
> > > > having content like below.
> > > >
> > > > DemoData.xml
> > > > 
> > > > 
> > > > ..
> > > > entity data here ...
> > > > ..
> > > > 
> > > >
> > > > What is the simple command that can be executed on shell to load
> > > > the data from such files into OFBiz.
> > > >
> > > >
> > > >
> > > >
> > > > regds
> > > > mallah.
> > > >
> > >
> > >
> > > --
> > >
> > >
> > > *Blurbiness*
> > > Producción multimedia para su negocio
> > > *www.blurbiness.com* <http://www.blurbiness.com>
> > >
> >
> >
> > 
> > Thanks and Regards
> > Rohit Koushal
> > Sr. Enterprise Software Engineer
> > Hotwax Systems
> > www.hotwaxsystems.com
> >
>


Re: Function Help

2019-01-07 Thread Aditya Sharma
Hi Mahmoud Abed,

You can refer https://ofbiz.apache.org/business-users.html

HTH

Thanks and Regards,

*Aditya Sharma* | Enterprise Software Engineer
HotWax Commerce <http://www.hotwax.co/> by HotWax Systems
<http://www.hotwaxsystems.com/>
[image: https://www.linkedin.com/in/aditya-p-sharma/]
<https://www.linkedin.com/in/aditya-p-sharma/>


On Tue, Jan 8, 2019 at 1:13 PM Mahmoud Abed 
wrote:

> Dear ,
> I need user guide for function set up and end user .
>
>
>
> BestRegards,
> Mahmoud ELBestawy
>
>
> Oracle Application Manager
> Email : mabed_best...@yahoo.com
> Mob :+971563596190
>
>
>
>


Re: Non working document links on OFBiz documentation page

2019-01-01 Thread Aditya Sharma
I will remove these links in a day if there are no conflicts.

Thanks and Regards,
Aditya Sharma


On Sat, Oct 27, 2018 at 5:46 PM Aditya Sharma 
wrote:

> Following links in *Documents on Other Sites section* of Documentation
> <https://cwiki.apache.org/confluence/x/GoB2> page seems non-working:
>
>- OFBiz.us - Developing Enterprise Application with Apache OFBiz
>Platform
>
> <http://ofbiz.us/developing-enterprise-application-with-apache-ofbiz-platform>
>- OFBiz: An Insider's View
><http://ofbizwiki.go-integral.com/Wiki.jsp?page=OFBizInsiderTutorial> by
>Basil Arkasosy
>- MyOFBiz.com <http://www.myofbiz.com/> by Ruth Hoffman
>
>
> I think we can remove them now.
>
> Thanks and Regards
> --
> Aditya Sharma
>
> <https://www.linkedin.com/in/aditya-p-sharma/>
>


Re: Freemarker missing

2018-11-28 Thread Aditya Sharma
Hi Frank,

Can you share some more details?

Which release are you using?


Thanks and Regards,

*Aditya Sharma* | Enterprise Software Engineer
HotWax Commerce <http://www.hotwax.co/> by HotWax Systems
<http://www.hotwaxsystems.com/>
[image: https://www.linkedin.com/in/aditya-p-sharma/]
<https://www.linkedin.com/in/aditya-p-sharma/>


On Wed, Nov 28, 2018 at 9:58 PM Frank Herrman  wrote:

> Hi all,
>
> After restarting Ofbiz I suddenly found an error in the logs relating to
> Freemarker. This was the error:
>
> /framework/base/src/main/java/org/apache/ofbiz/base/util/template/FreeMarkerWorker.java:74:
> error: cannot find symbol
> public static final Version version = Configuration.VERSION_2_3_28;
>
> This suggests Freemarker was not available. I did some recent changes to
> templates, but nothing spectacular and certainly nothing with freemarker
> code or configuration. I’m not sure which modification caused this error
> since you don’t need to restart for template changes.
>
> I ended up downloading and copying freemarker.jar into the /lib/ folder
> which resolved the issue, but that doesn’t feel right. Does anybody have
> any idea what went wrong here?
>
> Kind regards,
>
> Frank
>


Re: OFBiz duplicate user logins

2018-11-23 Thread Aditya Sharma
Adding to that,

You can find entries in Visit entity for the logged in users.

Refer
https://demo-trunk.ofbiz.apache.org/webtools/control/FindGeneric?entityName=Visit
and https://demo-trunk.ofbiz.apache.org/partymgr/control/listLoggedInUsers .

When a user session is destroyed, thruDate is set to Visit
entry in ControlEventListener which is custom HttpSessionListener
implementation. Refer
http://svn.apache.org/repos/asf/ofbiz/branches/release16.11/framework/webapp/src/main/java/org/apache/ofbiz/webapp/control/ControlEventListener.java

You can check if there is an entry in the Visit entity for the particular
userLoginId without thruDate. You can use the filterByDate() method of
EntityQuery API to filter out such entries.

Thanks and Regards,

*Aditya Sharma* | Enterprise Software Engineer
HotWax Commerce <http://www.hotwax.co/> by HotWax Systems
<http://www.hotwaxsystems.com/>
[image: https://www.linkedin.com/in/aditya-p-sharma/]
<https://www.linkedin.com/in/aditya-p-sharma/>


On Thu, Nov 22, 2018 at 11:33 AM Deepak Dixit 
wrote:

> Hi User,
>
> You can use LoginWorker.isUserLoggedIn method to check if a user logged in
> or not.
>
> Thanks & Regards
> --
> Deepak Dixit
>
>
>
> On Thu, Nov 22, 2018 at 11:27 AM jstric15  wrote:
>
> > Trying to set up Ofbiz as a service with multiple users, and wanted to
> know
> > if there is a way to prevent a user from logging in twice. I want to
> > prevent
> > two users from logging in under the same User ID.
> >
> > I know there are a number of ways to programmatically do this, but cant
> > seem
> > to find a parameter that would prevent it out of the box, which would be
> > the
> > preferred way.
> >
> >
> >
> > --
> > Sent from: http://ofbiz.135035.n4.nabble.com/OFBiz-User-f135036.html
> >
>


Re: GST tax configuration in ofbiz for INDIA

2018-11-23 Thread Aditya Sharma
Hi Rahul,

Refer this <https://markmail.org/message/7g5okl3fubghqemq> mail thread.

HTH

Thanks and Regards,

*Aditya Sharma* | Enterprise Software Engineer
HotWax Commerce <http://www.hotwax.co/> by HotWax Systems
<http://www.hotwaxsystems.com/>
[image: https://www.linkedin.com/in/aditya-p-sharma/]
<https://www.linkedin.com/in/aditya-p-sharma/>


On Fri, Nov 23, 2018 at 4:37 PM Rahul Vangari 
wrote:

> Hello,
>
> Has anybody done GST tax configuration in ofbiz for *INDIA *?
>
> --
> Regards,
> Rahul Vangari.
> vnnogile Solutions Private Limited
> www.vnnogile.com
>
>


Re: B2C

2018-11-22 Thread Aditya Sharma
Refer *drop ship products* data in DemoPurchasing.xml
<http://svn.apache.org/repos/asf/ofbiz/branches/release16.11/specialpurpose/ecommerce/data/DemoPurchasing.xml>

Notice
1. *SupplierProduct* entity data in which *canDropShip* is set to *Y*.
2. *Product* entity data in which *requirementMethodEnumID* is set to
*PRODRQM_DS* for Drop-ship only or *PRODRQM_DSATP* which means Auto
drop-ship on low quantity. You can refer all available options in
Enumeration
<https://demo-trunk.ofbiz.apache.org/webtools/control/FindGeneric?entityName=Enumeration>
entity with enumTypeID as PROD_REQ_METHOD.

HTH

Thanks and Regards,

*Aditya Sharma* | Enterprise Software Engineer
HotWax Commerce <http://www.hotwax.co/> by HotWax Systems
<http://www.hotwaxsystems.com/>
[image: https://www.linkedin.com/in/aditya-p-sharma/]
<https://www.linkedin.com/in/aditya-p-sharma/>


On Thu, Nov 22, 2018 at 2:51 PM ygk  wrote:

>
>
> On 2018/11/22 08:51:05, Aditya Sharma 
> wrote:
> > Hi Yokesh,
> >
> > You can check out the *DropShip Products* from the Categories menu of
> > ecommerce <https://demo-trunk.ofbiz.apache.org/ecommerce/control/main>
> > store.
> >
> > HTH
> >
> > Thanks and Regards,
> >
> > *Aditya Sharma* | Enterprise Software Engineer
> > HotWax Commerce <http://www.hotwax.co/> by HotWax Systems
> > <http://www.hotwaxsystems.com/>
> > [image: https://www.linkedin.com/in/aditya-p-sharma/]
> > <https://www.linkedin.com/in/aditya-p-sharma/>
> >
> >
> > On Thu, Nov 22, 2018 at 2:14 PM Nguyễn Thắng 
> > wrote:
> >
> > > Hi ygk,
> > >
> > > Ofbiz can do that, you can search Dropship.
> > >
> > > On Thu, Nov 22, 2018 at 3:31 PM ygk  wrote:
> > >
> > > > hi,
> > > >
> > > > we are planning to use ofbiz for a trading company. While most of
> the way
> > > > this company does business is to source products from its suppliers
> > > > (overseas) and sell them to customers (local market) for a margin.
> So the
> > > > standard ofbiz process of sales order raised by customer to the
> company,
> > > > purchase order by company to its supplier works fine along with
> inventory
> > > > management.
> > > >
> > > > For a small part of the business, the company also operates in a mode
> > > > wherein the customer raises an order directly to the company's
> supplier.
> > > > And the company is paid a commission by the supplier. In this case
> the
> > > > products are directly shipped by supplier to the customer and the
> > > > company's
> > > > inventory will have no impact. Does ofbiz provide a way of dealing
> with
> > > > this scenario? Any pointers will help.
> > > >
> > >
> > >
> > > --
> > > *THANG NGUYEN (Mr)*
> > >
> > > *OLBIUS DEVELOPER**Email:* nguyenthang0...@gmail.com| *Mobile:* (+84)
> 96
> > > 955 0905
> > >
> > > *OLBIUS., JSC*
> > > *Tel:* (+84) 9 88 99 
> > > *Address: *25th Fl., No 91, Nguyen Chi Thanh St., Ha Noi City, VietNam
> > > *Website:* http://olbius.com
> > >
> >@aaditya.sha...@hotwaxsystems.com
>
>
> Hi Aditya,
>
> Could u pls explain the process that how it can be done?
>
> Regards,
> Yokesh.
>


Re: B2C

2018-11-22 Thread Aditya Sharma
Hi Yokesh,

You can check out the *DropShip Products* from the Categories menu of
ecommerce <https://demo-trunk.ofbiz.apache.org/ecommerce/control/main>
store.

HTH

Thanks and Regards,

*Aditya Sharma* | Enterprise Software Engineer
HotWax Commerce <http://www.hotwax.co/> by HotWax Systems
<http://www.hotwaxsystems.com/>
[image: https://www.linkedin.com/in/aditya-p-sharma/]
<https://www.linkedin.com/in/aditya-p-sharma/>


On Thu, Nov 22, 2018 at 2:14 PM Nguyễn Thắng 
wrote:

> Hi ygk,
>
> Ofbiz can do that, you can search Dropship.
>
> On Thu, Nov 22, 2018 at 3:31 PM ygk  wrote:
>
> > hi,
> >
> > we are planning to use ofbiz for a trading company. While most of the way
> > this company does business is to source products from its suppliers
> > (overseas) and sell them to customers (local market) for a margin. So the
> > standard ofbiz process of sales order raised by customer to the company,
> > purchase order by company to its supplier works fine along with inventory
> > management.
> >
> > For a small part of the business, the company also operates in a mode
> > wherein the customer raises an order directly to the company's supplier.
> > And the company is paid a commission by the supplier. In this case the
> > products are directly shipped by supplier to the customer and the
> > company's
> > inventory will have no impact. Does ofbiz provide a way of dealing with
> > this scenario? Any pointers will help.
> >
>
>
> --
> *THANG NGUYEN (Mr)*
>
> *OLBIUS DEVELOPER**Email:* nguyenthang0...@gmail.com| *Mobile:* (+84) 96
> 955 0905
>
> *OLBIUS., JSC*
> *Tel:* (+84) 9 88 99 
> *Address: *25th Fl., No 91, Nguyen Chi Thanh St., Ha Noi City, VietNam
> *Website:* http://olbius.com
>


Test mail

2018-10-28 Thread Aditya Sharma
Just testing.

Tried sending a mail titled "Non working document links on OFBiz
documentation page" using my personal email id on Oct 27, 2018 to user/dev
list but couldn't get it delivered.

Please ignore.

Thanks and Regards,

*Aditya Sharma* | Enterprise Software Engineer
HotWax Commerce <http://www.hotwax.co/> by HotWax Systems
<http://www.hotwaxsystems.com/>


  1   2   >