Hi Anand,
Please let me know what POS ( preferably open source) works with ERPnext.
What are the tech requirements ( like is it Web service based integration?)
Thanks
Gaurav
–
You received this message because you are subscribed to the Google Groups "ERPNext Developer Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email to erpnext-developer-forum+un...@googlegroups.com .
To post to this group, send email to er...@googlegroups.com .
To view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/923f8222-444c-46b8-8ba7-8cfdadf3b06a%40googlegroups.com?hl=en .
For more options, visit https://groups.google.com/groups/opt_out .
1 Like
system
June 10, 2013, 8:23am
#2
Hi Gaurav,
Potentially, any POS should work.
We have a web service.
Here is the sample on how to invoke basic functions using python:
Thanks,
Anand.
–
You received this message because you are subscribed to the Google Groups "ERPNext Developer Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email to erpnext-developer-forum+un...@googlegroups.com .
To post to this group, send email to er...@googlegroups.com .
To view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/821D249B-D693-426F-99E1-20D0DF782234%40erpnext.com?hl=en .
For more options, visit https://groups.google.com/groups/opt_out .
what POS do you recommend ? On Monday, June 10, 2013 1:45:23 PM UTC+5:30, Gaurav Baraskar wrote:
Hi Anand,
Please let me know what POS ( preferably open source) works with ERPnext.
What are the tech requirements ( like is it Web service based integration?)
Thanks
Gaurav
–
You received this message because you are subscribed to the Google Groups "ERPNext Developer Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email to erpnext-developer-forum+un...@googlegroups.com .
To post to this group, send email to er...@googlegroups.com .
To view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/1da8d397-c2c0-46ee-9949-e97669d179e4%40googlegroups.com?hl=en .
For more options, visit https://groups.google.com/groups/opt_out .
system
June 10, 2013, 12:08pm
#4
Hi Gaurav,
I am not aware of any POS system. Maybe someone else in the community can shed more light on this.
Thanks,
Anand.
–
You received this message because you are subscribed to the Google Groups "ERPNext Developer Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email to erpnext-developer-forum+un...@googlegroups.com .
To post to this group, send email to er...@googlegroups.com .
To view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/98788D41-030E-47EE-A4EA-F77562666BC5%40erpnext.com?hl=en .
For more options, visit https://groups.google.com/groups/opt_out .
I could not find the service URL :
http://localhost/webnotes/erpnext_master/public/server.py Is there a seperate package to install webservices capabilities in erpnext? for example openbravo has special package for webservice that needs to be installed. I am using openbravoPOS to integrate with erpnext.
–
You received this message because you are subscribed to the Google Groups "ERPNext Developer Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email to erpnext-developer-forum+un...@googlegroups.com .
To post to this group, send email to er...@googlegroups.com .
To view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/57cc477e-7329-43f9-af1a-9b324fe00d61%40googlegroups.com?hl=en .
For more options, visit https://groups.google.com/groups/opt_out .
system
June 13, 2013, 10:26am
#6
Hi Gaurav,
Apache HTTPD server is required. If you already have that, check what your apache settings are.
What URL are you using to login to ERPNext?
-Anand.
–
You received this message because you are subscribed to the Google Groups "ERPNext Developer Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email to erpnext-developer-forum+un...@googlegroups.com .
To post to this group, send email to er...@googlegroups.com .
To view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/FA5640EF-F645-4758-AC6A-DB3BEBB0C35D%40erpnext.com?hl=en .
For more options, visit https://groups.google.com/groups/opt_out .
Hi Anand, I have the complete environment setup with apache httpd server on ubuntu 13 and all pre-reqs as mentioned in the install doc. am using http://erpnext.local:8080/login to login. My apache settings are : contents of conf file as below: Listen 8080 NameVirtualHost *:8080 <VirtualHost *:8080> ServerName localhost DocumentRoot /home/erp/erpnext/public/ AddHandler cgi-script .cgi .xml .py <Directory /home/erp/erpnext/public/> # directory specific options Options -Indexes +FollowSymLinks +ExecCGI # directory’s index file DirectoryIndex web.py AllowOverride all Order Allow,Deny Allow from all # rewrite rule RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-l RewriteRule ^([^/]+)$ /web.py?page=$1 [QSA,L] </Directory> </VirtualHost> ______________ Thanks Gaurav
–
You received this message because you are subscribed to the Google Groups "ERPNext Developer Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email to erpnext-developer-forum+un...@googlegroups.com .
To post to this group, send email to er...@googlegroups.com .
To view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/255bbcce-676e-4b7c-9541-460cf9be634d%40googlegroups.com?hl=en .
For more options, visit https://groups.google.com/groups/opt_out .
The installation steps we followed from here: https://github.com/webnotes/erpnext/wiki/How-to-Install-ERPNext On Thursday, June 13, 2013 4:16:12 PM UTC+5:30, Gaurav Baraskar wrote:
Hi Anand, I have the complete environment setup with apache httpd server on ubuntu 13 and all pre-reqs as mentioned in the install doc. am using http://erpnext.local:8080/login to login. My apache settings are : contents of conf file as below: Listen 8080 NameVirtualHost *:8080 <VirtualHost *:8080> ServerName localhost DocumentRoot /home/erp/erpnext/public/ AddHandler cgi-script .cgi .xml .py <Directory /home/erp/erpnext/public/> # directory specific options Options -Indexes +FollowSymLinks +ExecCGI # directory’s index file DirectoryIndex web.py AllowOverride all Order Allow,Deny Allow from all # rewrite rule RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-l RewriteRule ^([^/]+)$ /web.py?page=$1 [QSA,L] </Directory> </VirtualHost> ______________ Thanks Gaurav
–
You received this message because you are subscribed to the Google Groups "ERPNext Developer Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email to erpnext-developer-forum+un...@googlegroups.com .
To post to this group, send email to er...@googlegroups.com .
To view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/3fe6503e-9107-4e19-9b68-753f076b329d%40googlegroups.com?hl=en .
For more options, visit https://groups.google.com/groups/opt_out .
system
June 13, 2013, 11:15am
#9
Then you should use
http://erpnext.local:8080/server.py
-Anand.
The installation steps we followed from here: https://github.com/webnotes/erpnext/wiki/How-to-Install-ERPNext On Thursday, June 13, 2013 4:16:12 PM UTC+5:30, Gaurav Baraskar wrote:Hi Anand, I have the complete environment setup with apache httpd server on ubuntu 13 and all pre-reqs as mentioned in the install doc. am using http://erpnext.local:8080/login to login. My apache settings are : contents of conf file as below: ____________________________________ Listen 8080 NameVirtualHost *:8080 <VirtualHost *:8080> ServerName localhost DocumentRoot /home/erp/erpnext/public/ AddHandler cgi-script .cgi .xml .py <Directory /home/erp/erpnext/public/> # directory specific options Options -Indexes +FollowSymLinks +ExecCGI # directory's index file DirectoryIndex web.py AllowOverride all Order Allow,Deny Allow from all # rewrite rule RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-l RewriteRule ^([^/]+)$ /web.py?page=$1 [QSA,L] </Directory> </VirtualHost> __________________________________________________ Thanks Gaurav
–
You received this message because you are subscribed to the Google Groups “ERPNext Developer Forum” group.
To unsubscribe from this group and stop receiving emails from it, send an email to erpnext-developer-forum+un…@googlegroups.com .
To post to this group, send email to er…@googlegroups.com .
To view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/3fe6503e-9107-4e19-9b68-753f076b329d%40googlegroups.com?hl=en .
For more options, visit https://groups.google.com/groups/opt_out .
–
You received this message because you are subscribed to the Google Groups "ERPNext Developer Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email to erpnext-developer-forum+un...@googlegroups.com .
To post to this group, send email to er...@googlegroups.com .
To view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/5830FBCC-953F-4257-A4BF-0C62BFB12194%40erpnext.com?hl=en .
For more options, visit https://groups.google.com/groups/opt_out .
Hi, I saw a post mentioning that erpnext team were developing a POS solution/Integration. Could someone provide more information on this development? Thanks On Monday, June 10, 2013 2:44:54 PM UTC+5:30, Gaurav Baraskar wrote:
what POS do you recommend ? On Monday, June 10, 2013 1:45:23 PM UTC+5:30, Gaurav Baraskar wrote:Hi Anand,
Please let me know what POS ( preferably open source) works with ERPnext.
What are the tech requirements ( like is it Web service based integration?)
Thanks
Gaurav
–
You received this message because you are subscribed to the Google Groups "ERPNext Developer Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email to erpnext-developer-forum+un...@googlegroups.com .
To post to this group, send email to er...@googlegroups.com .
To view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/e092b2e5-ada8-4d33-888d-349095d63dec%40googlegroups.com?hl=en .
For more options, visit https://groups.google.com/groups/opt_out .
umair
June 13, 2013, 12:34pm
#11
On Thu, Jun 13, 2013 at 5:58 PM, Prashant Rais
<pr...@gmail.com > wrote:
Hi, I saw a post mentioning that erpnext team were developing a POS solution/Integration. Could someone provide more information on this development? Thanks
On Monday, June 10, 2013 2:44:54 PM UTC+5:30, Gaurav Baraskar wrote:
what POS do you recommend ? On Monday, June 10, 2013 1:45:23 PM UTC+5:30, Gaurav Baraskar wrote:Hi Anand,
Please let me know what POS ( preferably open source) works with ERPnext.
What are the tech requirements ( like is it Web service based integration?)
Thanks
Gaurav
–
You received this message because you are subscribed to the Google Groups "ERPNext Developer Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email to erpnext-developer-forum+un…@googlegroups.com .
To post to this group, send email to er…@googlegroups.com .
To view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/e092b2e5-ada8-4d33-888d-349095d63dec%40googlegroups.com?hl=en .
--
Thanks and Regards,
Umair Sayyedwww.erpnext.com
–
You received this message because you are subscribed to the Google Groups "ERPNext Developer Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email to erpnext-developer-forum+un...@googlegroups.com .
To post to this group, send email to er...@googlegroups.com .
To view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/CAJ33fAuY2ri%3D7y1ymk3mO%2BB6BVhdTT4YEirObRyRqLTXE%3D0aFg%40mail.gmail.com?hl=en .
For more options, visit https://groups.google.com/groups/opt_out .
Umair , I already went thru this post. My question is : What POS System do you support and have a working integration with? to compare : openbravo erp works with openbravoPOS. Thanks, Prashant On Thursday, June 13, 2013 6:04:28 PM UTC+5:30, Umair Sayyed wrote:
On Thu, Jun 13, 2013 at 5:58 PM, Prashant Rais
<pr...@gmail.com > wrote:
Hi, I saw a post mentioning that erpnext team were developing a POS solution/Integration. Could someone provide more information on this development? Thanks
On Monday, June 10, 2013 2:44:54 PM UTC+5:30, Gaurav Baraskar wrote:
what POS do you recommend ? On Monday, June 10, 2013 1:45:23 PM UTC+5:30, Gaurav Baraskar wrote:Hi Anand,
Please let me know what POS ( preferably open source) works with ERPnext.
What are the tech requirements ( like is it Web service based integration?)
Thanks
Gaurav
–
You received this message because you are subscribed to the Google Groups “ERPNext Developer Forum” group.
To unsubscribe from this group and stop receiving emails from it, send an email to erpnext-developer-forum+un…@googlegroups.com .
To post to this group, send email to erpnext-dev…@googlegroups.com .
To view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/e092b2e5-ada8-4d33-888d-349095d63dec%40googlegroups.com?hl=en .
--
Thanks and Regards,
Umair Sayyedwww.erpnext.com
–
You received this message because you are subscribed to the Google Groups "ERPNext Developer Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email to erpnext-developer-forum+un...@googlegroups.com .
To post to this group, send email to er...@googlegroups.com .
To view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/b0505e81-d0b2-44bd-88bd-46db0645bdc4%40googlegroups.com?hl=en .
For more options, visit https://groups.google.com/groups/opt_out .
umair
June 13, 2013, 1:50pm
#13
Prashant,
This query is already answered in very first response to this thread. Pasting the same below.
--------------------------------------------------------------------------------------------------------------------------------------
Potentially, any POS should work.
We have a web service.
Here is the sample on how to invoke basic functions using python:
On Thu, Jun 13, 2013 at 6:16 PM, Prashant Rais
<pr...@gmail.com > wrote:
Umair ,
I already went thru this post. My question is : What POS System do you support and have a working integration with? to compare : openbravo erp works with openbravoPOS. Thanks, Prashant
On Thursday, June 13, 2013 6:04:28 PM UTC+5:30, Umair Sayyed wrote:
Hi, I saw a post mentioning that erpnext team were developing a POS solution/Integration. Could someone provide more information on this development? Thanks
On Monday, June 10, 2013 2:44:54 PM UTC+5:30, Gaurav Baraskar wrote:
what POS do you recommend ? On Monday, June 10, 2013 1:45:23 PM UTC+5:30, Gaurav Baraskar wrote:
Hi Anand,
Please let me know what POS ( preferably open source) works with ERPnext.
What are the tech requirements ( like is it Web service based integration?)
Thanks
Gaurav
–
You received this message because you are subscribed to the Google Groups "ERPNext Developer Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email to erpnext-developer-forum+un…@googlegroups.com .
To post to this group, send email to erpnext-dev…@googlegroups.com .
To view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/b0505e81-d0b2-44bd-88bd-46db0645bdc4%40googlegroups.com?hl=en .
--
Thanks and Regards,
Umair Sayyedwww.erpnext.com
–
You received this message because you are subscribed to the Google Groups "ERPNext Developer Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email to erpnext-developer-forum+un...@googlegroups.com .
To post to this group, send email to er...@googlegroups.com .
To view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/CAJ33fAuRjxeAS-k1MGzerAsoPpdvUUt6Hzy8TA-8Am_LRCNVqw%40mail.gmail.com?hl=en .
For more options, visit https://groups.google.com/groups/opt_out .
so If i use any POS system I should be able to integrate it with ERPnext using this webservice via a Data Integrator (ETL) tool. Please provide some direction as to how you have done this. Regards Prashant On Thursday, June 13, 2013 7:20:20 PM UTC+5:30, Umair Sayyed wrote:
Prashant,
This query is already answered in very first response to this thread. Pasting the same below.
--------------------------------------------------------------------------------------------------------------------------------------
Potentially, any POS should work.
We have a web service.
Here is the sample on how to invoke basic functions using python:
On Thu, Jun 13, 2013 at 6:16 PM, Prashant Rais
<pr...@gmail.com > wrote:
Umair ,
I already went thru this post. My question is : What POS System do you support and have a working integration with? to compare : openbravo erp works with openbravoPOS. Thanks, Prashant
On Thursday, June 13, 2013 6:04:28 PM UTC+5:30, Umair Sayyed wrote:
Hi, I saw a post mentioning that erpnext team were developing a POS solution/Integration. Could someone provide more information on this development? Thanks
On Monday, June 10, 2013 2:44:54 PM UTC+5:30, Gaurav Baraskar wrote:
what POS do you recommend ? On Monday, June 10, 2013 1:45:23 PM UTC+5:30, Gaurav Baraskar wrote:
Hi Anand,
Please let me know what POS ( preferably open source) works with ERPnext.
What are the tech requirements ( like is it Web service based integration?)
Thanks
Gaurav
–
You received this message because you are subscribed to the Google Groups “ERPNext Developer Forum” group.
To unsubscribe from this group and stop receiving emails from it, send an email to erpnext-developer-forum+unsubscr…@googlegroups.com .
To post to this group, send email to erpnext-dev…@googlegroups.com .
To view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/b0505e81-d0b2-44bd-88bd-46db0645bdc4%40googlegroups.com?hl=en .
--
Thanks and Regards,
Umair Sayyedwww.erpnext.com
–
You received this message because you are subscribed to the Google Groups "ERPNext Developer Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email to erpnext-developer-forum+un...@googlegroups.com .
To post to this group, send email to er...@googlegroups.com .
To view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/a0e83232-8797-427c-a17f-70f322720536%40googlegroups.com .
For more options, visit https://groups.google.com/groups/opt_out .
rmehta
June 15, 2013, 4:56am
#15
Prashant,
We have given you the API links and there are other threads on the forum discussing this. Please search them and help yourself.
best,
Rushabh
On Sat, Jun 15, 2013 at 8:41 AM, Prashant Rais
<pr...@gmail.com > wrote:
so If i use any POS system I should be able to integrate it with ERPnext using this webservice via a Data Integrator (ETL) tool.
Please provide some direction as to how you have done this. Regards Prashant
On Thursday, June 13, 2013 7:20:20 PM UTC+5:30, Umair Sayyed wrote:
Prashant,
This query is already answered in very first response to this thread. Pasting the same below.
--------------------------------------------------------------------------------------------------------------------------------------
Potentially, any POS should work.
We have a web service.
Here is the sample on how to invoke basic functions using python:
Umair ,
I already went thru this post. My question is : What POS System do you support and have a working integration with? to compare : openbravo erp works with openbravoPOS. Thanks, Prashant
On Thursday, June 13, 2013 6:04:28 PM UTC+5:30, Umair Sayyed wrote:
Hi, I saw a post mentioning that erpnext team were developing a POS solution/Integration. Could someone provide more information on this development? Thanks
On Monday, June 10, 2013 2:44:54 PM UTC+5:30, Gaurav Baraskar wrote:
what POS do you recommend ? On Monday, June 10, 2013 1:45:23 PM UTC+5:30, Gaurav Baraskar wrote:
Hi Anand,
Please let me know what POS ( preferably open source) works with ERPnext.
What are the tech requirements ( like is it Web service based integration?)
Thanks
Gaurav
–
You received this message because you are subscribed to the Google Groups "ERPNext Developer Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email to erpnext-developer-forum+unsubscr…@googlegroups.com .
To post to this group, send email to erpnext-dev…@googlegroups.com .
To view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/a0e83232-8797-427c-a17f-70f322720536%40googlegroups.com .
--
–
You received this message because you are subscribed to the Google Groups "ERPNext Developer Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email to erpnext-developer-forum+un...@googlegroups.com .
To post to this group, send email to er...@googlegroups.com .
To view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/CANn8SWJAm59aN%2BGNpGL_E%3DEYCC4jXU84bCDVzTTmr0ZisWCWyg%40mail.gmail.com .
For more options, visit https://groups.google.com/groups/opt_out .