How to create a Sales Invoice using Web Service API

Hello,

I can create customers using the API but creating an invoice involves a lot more and there is csv template that i can refer to.
Please provide an example.

regards
Ankit



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/msg/erpnext-developer-forum/-/0n6gOwUfDBoJ.

For more options, visit https://groups.google.com/groups/opt_out.

 

 

Ankit,

Had already given you a sample schema for invoice in the earlier example:


- Rushabh


On Wed, Apr 24, 2013 at 7:07 AM, Ankit <ap...@gmail.com> wrote:
Hello,

I can create customers using the API but creating an invoice involves a lot more and there is csv template that i can refer to.
Please provide an example.

regards
Ankit



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/msg/erpnext-developer-forum/-/0n6gOwUfDBoJ.

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.

For more options, visit https://groups.google.com/groups/opt_out.

 

 

1 Like

Thanks Rushabh,

My bad, I didn’t check the link.

On Wednesday, April 24, 2013 3:19:31 PM UTC+12, rushabh wrote:

Ankit,

Had already given you a sample schema for invoice in the earlier example:


- Rushabh


On Wed, Apr 24, 2013 at 7:07 AM, Ankit <ap...@gmail.com> wrote:
Hello,

I can create customers using the API but creating an invoice involves a lot more and there is csv template that i can refer to.
Please provide an example.

regards
Ankit



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/msg/erpnext-developer-forum/-/0n6gOwUfDBoJ.

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/msg/erpnext-developer-forum/-/ITGmFnTl9u0J.

For more options, visit https://groups.google.com/groups/opt_out.

 

 

Hello Rushabh,

Need your expert advice here.
I followed the example to create invoice.

Here is shat happens, if i send multiple  inserts for invoice like the example which sends invoice, taxes, items as branched doclists,
I get this error, even if there is just one doclist for sales invoice

“Traceback (innermost last):\n File "…/lib/webnotes/handler.py",
line 156, in handle\n execute_cmd(cmd)\n File
"…/lib/webnotes/handler.py", line 191, in execute_cmd\n ret =
call(method, webnotes.form_dict)\n File "…/lib/webnotes/handler.py",
line 208, in call\n return fn(**newargs)\n File
"…/lib/webnotes/client.py", line 49, in insert\n
doclist[0]["__islocal"] = 1\n TypeError: list indices must be
integers, not unicode\n”
note: in php, just encoding multidimensional array to the json
Eg: json object that throws this error

string ‘[{“naming_series”:“INV”,“company”:“Company”,“conversion_rate”:1,“currency”:“RRR”,“debit_to”:“ABCD EFGH - CMP”,“customer”:“ABCD EFGH”,“customer_name”:“ABCD EFGH”,“doctype”:“Sales Invoice”,“posting_date”:“2013-04-24”,“due_date”:“2013-04-24”,“fiscal_year”:“2013-2014”,“grand_total”:0,“grand_total_export”:0,“net_total”:0,“is_pos”:1,“plc_conversion_rate”:1,“price_list_currency”:“RRR”,“price_list_name”:“Standard”,“territory”:“Default”}]’


And i just send the sales invoice doclist to insert - not branched
It creates a blank invoice with the customer name on it.
note: in php, just encoding single dimensional array to the json
Eg: json object that works
string ‘{“naming_series”:“INV”,“company”:“Company”,“conversion_rate”:1,“currency”:“RRR”,“debit_to”:“ABCD EFGH - CMP”,“customer”:“ABCD EFGH”,“customer_name”:“ABCD EFGH”,“doctype”:“Sales Invoice”,“posting_date”:“2013-04-24”,“due_date”:“2013-04-24”,“fiscal_year”:“2013-2014”,“grand_total”:0,“grand_total_export”:0,“net_total”:0,“is_pos”:1,“plc_conversion_rate”:1,“price_list_currency”:“RRR”,“price_list_name”:“Standard”,“territory”:“Default”’

I have tried various combinations with and withouts those multiple doclists with same error always.
What am I doing wrong.





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/msg/erpnext-developer-forum/-/6-HMBK5a7hUJ.

For more options, visit https://groups.google.com/groups/opt_out.

 

 

Ankit,

From the error, it seems that the object you are sending is a list of lists, not a list of dicts like "[{ doc }, { doc } ..]"

Check the json object sent in the request - maybe you are wrapping an extra list?

- Rushabh


W: https://erpnext.com
T: @rushabh_mehta

On 24-Apr-2013, at 1:05 PM, Ankit <ap...@gmail.com> wrote:

Hello Rushabh,

Need your expert advice here.
I followed the example to create invoice.

Here is shat happens, if i send multiple  inserts for invoice like the example which sends invoice, taxes, items as branched doclists,
I get this error, even if there is just one doclist for sales invoice

"Traceback (innermost last):\n File \"../lib/webnotes/handler.py\", line 156, in handle\n execute_cmd(cmd)\n File \"../lib/webnotes/handler.py\", line 191, in execute_cmd\n ret = call(method, webnotes.form_dict)\n File \"../lib/webnotes/handler.py\", line 208, in call\n return fn(**newargs)\n File \"../lib/webnotes/client.py\", line 49, in insert\n doclist[0][\"__islocal\"] = 1\n TypeError: list indices must be integers, not unicode\n"
note: in php, just encoding multidimensional array to the json
Eg: json object that throws this error
string '[{"naming_series":"INV","company":"Company","conversion_rate":1,"currency":"RRR","debit_to":"ABCD EFGH - CMP","customer":"ABCD EFGH","customer_name":"ABCD EFGH","doctype":"Sales Invoice","posting_date":"2013-04-24","due_date":"2013-04-24","fiscal_year":"2013-2014","grand_total":0,"grand_total_export":0,"net_total":0,"is_pos":1,"plc_conversion_rate":1,"price_list_currency":"RRR","price_list_name":"Standard","territory":"Default"}]'


And i just send the sales invoice doclist to insert - not branched
It creates a blank invoice with the customer name on it.
note: in php, just encoding single dimensional array to the json
Eg: json object that works
string '{"naming_series":"INV","company":"Company","conversion_rate":1,"currency":"RRR","debit_to":"ABCD EFGH - CMP","customer":"ABCD EFGH","customer_name":"ABCD EFGH","doctype":"Sales Invoice","posting_date":"2013-04-24","due_date":"2013-04-24","fiscal_year":"2013-2014","grand_total":0,"grand_total_export":0,"net_total":0,"is_pos":1,"plc_conversion_rate":1,"price_list_currency":"RRR","price_list_name":"Standard","territory":"Default"'

I have tried various combinations with and withouts those multiple doclists with same error always.
What am I doing wrong.






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/msg/erpnext-developer-forum/-/6-HMBK5a7hUJ.

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.

For more options, visit https://groups.google.com/groups/opt_out.

 

 

Hello Rushabh,

Two observations once I got it working.
1. The customer and debit to is selected, but when I check the contact, that is not selected. I was hoping that the primary contact gets selected by default.
2. If I set isPos via the webservice, It doens’t populate the fields with default values for that Pos setting.

So I have to manually tick isPos which is fine, but I also have to reselect the customer to get the default contact.

How can I make sure the primary contact is selected when I set the customer?

regards
Ankit



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/msg/erpnext-developer-forum/-/8CbwNqRZ4HUJ.

For more options, visit https://groups.google.com/groups/opt_out.

 

 

Ankit,

Thanks for identifying - we will add these in the server side validations and update you. We are already in the process of updating all our server side validations.

Should be done by end of day today.

best,
Rushabh


On Fri, Apr 26, 2013 at 9:28 AM, Ankit <ap...@gmail.com> wrote:
Hello Rushabh,

Two observations once I got it working.
1. The customer and debit to is selected, but when I check the contact, that is not selected. I was hoping that the primary contact gets selected by default.
2. If I set isPos via the webservice, It doens't populate the fields with default values for that Pos setting.

So I have to manually tick isPos which is fine, but I also have to reselect the customer to get the default contact.

How can I make sure the primary contact is selected when I set the customer?

regards
Ankit



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/msg/erpnext-developer-forum/-/8CbwNqRZ4HUJ.


For more options, visit https://groups.google.com/groups/opt_out.





--



Twitter: @rushabh_mehta



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.

For more options, visit https://groups.google.com/groups/opt_out.

 

 

Thank you Rushabh.


On Fri, Apr 26, 2013 at 4:52 PM, Rushabh Mehta <rm...@gmail.com> wrote:
Ankit,

Thanks for identifying - we will add these in the server side validations and update you. We are already in the process of updating all our server side validations.

Should be done by end of day today.

best,
Rushabh


On Fri, Apr 26, 2013 at 9:28 AM, Ankit <ap...@gmail.com> wrote:
Hello Rushabh,

Two observations once I got it working.
1. The customer and debit to is selected, but when I check the contact, that is not selected. I was hoping that the primary contact gets selected by default.
  1. If I set isPos via the webservice, It doens't populate the fields with default values for that Pos setting.

    So I have to manually tick isPos which is fine, but I also have to reselect the customer to get the default contact.


How can I make sure the primary contact is selected when I set the customer?

regards
Ankit




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.




--



Twitter: @rushabh_mehta



You received this message because you are subscribed to a topic in the Google Groups "ERPNext Developer Forum" group.

To unsubscribe from this topic, visit https://groups.google.com/d/topic/erpnext-developer-forum/2TM0Tr_RILg/unsubscribe?hl=en.

To unsubscribe from this group and all its topics, send an email to erpnext-developer-forum+un…@googlegroups.com.

To post to this group, send email to er…@googlegroups.com.


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.

For more options, visit https://groups.google.com/groups/opt_out.

 

 

Hi Ankit,

We will shift the fetching of values to server side, as you requested.

However, at this point, most calculations are done on the client side. We have started work on shifting them to server side. 

Hence, for now, you will need to specify values and totals when you pass the doclist.

Thanks,
Anand.

On 26-Apr-2013, at 10:35 AM, Ankit Parikh <ap...@gmail.com> wrote:

Thank you Rushabh.


On Fri, Apr 26, 2013 at 4:52 PM, Rushabh Mehta <rm...@gmail.com> wrote:
Ankit,

Thanks for identifying - we will add these in the server side validations and update you. We are already in the process of updating all our server side validations.

Should be done by end of day today.

best,
Rushabh


On Fri, Apr 26, 2013 at 9:28 AM, Ankit <ap...@gmail.com> wrote:
Hello Rushabh,

Two observations once I got it working.
1. The customer and debit to is selected, but when I check the contact, that is not selected. I was hoping that the primary contact gets selected by default.
  1. If I set isPos via the webservice, It doens’t populate the fields with default values for that Pos setting.

    So I have to manually tick isPos which is fine, but I also have to reselect the customer to get the default contact.


How can I make sure the primary contact is selected when I set the customer?

regards
Ankit





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/msg/erpnext-developer-forum/-/8CbwNqRZ4HUJ.


For more options, visit https://groups.google.com/groups/opt_out.
 
 



--



Twitter: @rushabh_mehta



You received this message because you are subscribed to a topic in the Google Groups “ERPNext Developer Forum” group.

To unsubscribe from this topic, visit https://groups.google.com/d/topic/erpnext-developer-forum/2TM0Tr_RILg/unsubscribe?hl=en.

To unsubscribe from this group and all its topics, send an email to erpnext-developer-forum+un…@googlegroups.com.

To post to this group, send email to er…@googlegroups.com.


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.

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.

For more options, visit https://groups.google.com/groups/opt_out.

 

 

Hello Anand,

Calculations are not an issue.
We just the fields to be populated with the default values
like, primary contact for the customer should be selected automatically, when we send the customer.

We are checking all calculations before submitting the invoice.

regards
Ankit


On Fri, Apr 26, 2013 at 6:11 PM, Anand Doshi <an...@iwebnotes.com> wrote:
Hi Ankit,

We will shift the fetching of values to server side, as you requested.

However, at this point, most calculations are done on the client side. We have started work on shifting them to server side.

Hence, for now, you will need to specify values and totals when you pass the doclist.

Thanks,
Anand.

On 26-Apr-2013, at 10:35 AM, Ankit Parikh <ap...@gmail.com> wrote:

Thank you Rushabh.


On Fri, Apr 26, 2013 at 4:52 PM, Rushabh Mehta <rm...@gmail.com> wrote:
Ankit,

Thanks for identifying - we will add these in the server side validations and update you. We are already in the process of updating all our server side validations.

Should be done by end of day today.

best,
Rushabh


On Fri, Apr 26, 2013 at 9:28 AM, Ankit <ap...@gmail.com> wrote:
Hello Rushabh,

Two observations once I got it working.
1. The customer and debit to is selected, but when I check the contact, that is not selected. I was hoping that the primary contact gets selected by default.
  1. If I set isPos via the webservice, It doens't populate the fields with default values for that Pos setting.

    So I have to manually tick isPos which is fine, but I also have to reselect the customer to get the default contact.


How can I make sure the primary contact is selected when I set the customer?

regards
Ankit





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.




--



Twitter: @rushabh_mehta



You received this message because you are subscribed to a topic in the Google Groups "ERPNext Developer Forum" group.

To unsubscribe from this topic, visit https://groups.google.com/d/topic/erpnext-developer-forum/2TM0Tr_RILg/unsubscribe?hl=en.

To unsubscribe from this group and all its topics, send an email to erpnext-developer-forum+un…@googlegroups.com.

To post to this group, send email to er…@googlegroups.com.


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.

For more options, visit https://groups.google.com/groups/opt_out.







You received this message because you are subscribed to a topic in the Google Groups "ERPNext Developer Forum" group.

To unsubscribe from this topic, visit https://groups.google.com/d/topic/erpnext-developer-forum/2TM0Tr_RILg/unsubscribe?hl=en.

To unsubscribe from this group and all its topics, send an email to erpnext-developer-forum+un…@googlegroups.com.

To post to this group, send email to er…@googlegroups.com.

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.

For more options, visit https://groups.google.com/groups/opt_out.

 

 

Hi Ankit,

We will release these changes on Monday, since we can provide better support then.

Thanks,
Anand.

On 26-Apr-2013, at 11:44 AM, Ankit Parikh <ap...@gmail.com> wrote:

Hello Anand,

Calculations are not an issue.
We just the fields to be populated with the default values
like, primary contact for the customer should be selected automatically, when we send the customer.

We are checking all calculations before submitting the invoice.

regards
Ankit


On Fri, Apr 26, 2013 at 6:11 PM, Anand Doshi <an...@iwebnotes.com> wrote:
Hi Ankit,

We will shift the fetching of values to server side, as you requested.

However, at this point, most calculations are done on the client side. We have started work on shifting them to server side. 

Hence, for now, you will need to specify values and totals when you pass the doclist.

Thanks,
Anand.

On 26-Apr-2013, at 10:35 AM, Ankit Parikh <ap...@gmail.com> wrote:

Thank you Rushabh.


On Fri, Apr 26, 2013 at 4:52 PM, Rushabh Mehta <rm...@gmail.com> wrote:
Ankit,

Thanks for identifying - we will add these in the server side validations and update you. We are already in the process of updating all our server side validations.

Should be done by end of day today.

best,
Rushabh


On Fri, Apr 26, 2013 at 9:28 AM, Ankit <ap...@gmail.com> wrote:
Hello Rushabh,

Two observations once I got it working.
1. The customer and debit to is selected, but when I check the contact, that is not selected. I was hoping that the primary contact gets selected by default.
  1. If I set isPos via the webservice, It doens’t populate the fields with default values for that Pos setting.

    So I have to manually tick isPos which is fine, but I also have to reselect the customer to get the default contact.


How can I make sure the primary contact is selected when I set the customer?

regards
Ankit





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/msg/erpnext-developer-forum/-/8CbwNqRZ4HUJ.


For more options, visit https://groups.google.com/groups/opt_out.
 
 



--



Twitter: @rushabh_mehta



You received this message because you are subscribed to a topic in the Google Groups “ERPNext Developer Forum” group.

To unsubscribe from this topic, visit https://groups.google.com/d/topic/erpnext-developer-forum/2TM0Tr_RILg/unsubscribe?hl=en.

To unsubscribe from this group and all its topics, send an email to erpnext-developer-forum+un…@googlegroups.com.

To post to this group, send email to er…@googlegroups.com.


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.

For more options, visit https://groups.google.com/groups/opt_out.

 

 





You received this message because you are subscribed to a topic in the Google Groups “ERPNext Developer Forum” group.

To unsubscribe from this topic, visit https://groups.google.com/d/topic/erpnext-developer-forum/2TM0Tr_RILg/unsubscribe?hl=en.

To unsubscribe from this group and all its topics, send an email to erpnext-developer-forum+un…@googlegroups.com.

To post to this group, send email to er…@googlegroups.com.

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.

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.

For more options, visit https://groups.google.com/groups/opt_out.

 

 

Hello Anand,

I still can't see the changes. Now I am passing the item code as I start populating the items, and it should fetch the name and description from the database.

Are you going to implement what we discussed last week.
Setting customer, pos defaults, item details - all depend on this feature.

regards
Ankit


On Sat, Apr 27, 2013 at 12:14 AM, Anand Doshi <an...@iwebnotes.com> wrote:
Hi Ankit,

We will release these changes on Monday, since we can provide better support then.

Thanks,
Anand.

On 26-Apr-2013, at 11:44 AM, Ankit Parikh <ap...@gmail.com> wrote:

Hello Anand,

Calculations are not an issue.
We just the fields to be populated with the default values
like, primary contact for the customer should be selected automatically, when we send the customer.


We are checking all calculations before submitting the invoice.

regards
Ankit


On Fri, Apr 26, 2013 at 6:11 PM, Anand Doshi <an…@iwebnotes.com> wrote:

Hi Ankit,

We will shift the fetching of values to server side, as you requested.

However, at this point, most calculations are done on the client side. We have started work on shifting them to server side.

Hence, for now, you will need to specify values and totals when you pass the doclist.

Thanks,
Anand.

On 26-Apr-2013, at 10:35 AM, Ankit Parikh <ap...@gmail.com> wrote:


Thank you Rushabh.


On Fri, Apr 26, 2013 at 4:52 PM, Rushabh Mehta <rm…@gmail.com> wrote:

Ankit,

Thanks for identifying - we will add these in the server side validations and update you. We are already in the process of updating all our server side validations.

Should be done by end of day today.

best,
Rushabh


On Fri, Apr 26, 2013 at 9:28 AM, Ankit <ap...@gmail.com> wrote:
Hello Rushabh,

Two observations once I got it working.
1. The customer and debit to is selected, but when I check the contact, that is not selected. I was hoping that the primary contact gets selected by default.
  1. If I set isPos via the webservice, It doens't populate the fields with default values for that Pos setting.

    So I have to manually tick isPos which is fine, but I also have to reselect the customer to get the default contact.


How can I make sure the primary contact is selected when I set the customer?

regards
Ankit





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.




--



Twitter: @rushabh_mehta



You received this message because you are subscribed to a topic in the Google Groups "ERPNext Developer Forum" group.

To unsubscribe from this topic, visit https://groups.google.com/d/topic/erpnext-developer-forum/2TM0Tr_RILg/unsubscribe?hl=en.

To unsubscribe from this group and all its topics, send an email to erpnext-developer-forum+un…@googlegroups.com.

To post to this group, send email to er…@googlegroups.com.


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.

For more options, visit https://groups.google.com/groups/opt_out.








You received this message because you are subscribed to a topic in the Google Groups "ERPNext Developer Forum" group.

To unsubscribe from this topic, visit https://groups.google.com/d/topic/erpnext-developer-forum/2TM0Tr_RILg/unsubscribe?hl=en.

To unsubscribe from this group and all its topics, send an email to erpnext-developer-forum+un…@googlegroups.com.

To post to this group, send email to er…@googlegroups.com.

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.

For more options, visit https://groups.google.com/groups/opt_out.







You received this message because you are subscribed to a topic in the Google Groups "ERPNext Developer Forum" group.

To unsubscribe from this topic, visit https://groups.google.com/d/topic/erpnext-developer-forum/2TM0Tr_RILg/unsubscribe?hl=en.

To unsubscribe from this group and all its topics, send an email to erpnext-developer-forum+un…@googlegroups.com.

To post to this group, send email to er…@googlegroups.com.

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.

For more options, visit https://groups.google.com/groups/opt_out.

 

 

Hi Ankit

As per your last mail I had implemented fetching of customer data an post settings. 

Item details fetching was not mentioned. Will try to get this done. In the mean time, pass the item name and description. 

Sent from my phone

On 30-Apr-2013, at 5:55 AM, Ankit Parikh <ap...@gmail.com> wrote:

Hello Anand,

I still can't see the changes. Now I am passing the item code as I start populating the items, and it should fetch the name and description from the database.

Are you going to implement what we discussed last week.
Setting customer, pos defaults, item details - all depend on this feature.

regards
Ankit


On Sat, Apr 27, 2013 at 12:14 AM, Anand Doshi <an...@iwebnotes.com> wrote:
Hi Ankit,

We will release these changes on Monday, since we can provide better support then.

Thanks,
Anand.

On 26-Apr-2013, at 11:44 AM, Ankit Parikh <ap...@gmail.com> wrote:

Hello Anand,

Calculations are not an issue.
We just the fields to be populated with the default values
like, primary contact for the customer should be selected automatically, when we send the customer.


We are checking all calculations before submitting the invoice.

regards
Ankit


On Fri, Apr 26, 2013 at 6:11 PM, Anand Doshi <an…@iwebnotes.com> wrote:

Hi Ankit,

We will shift the fetching of values to server side, as you requested.

However, at this point, most calculations are done on the client side. We have started work on shifting them to server side. 

Hence, for now, you will need to specify values and totals when you pass the doclist.

Thanks,
Anand.

On 26-Apr-2013, at 10:35 AM, Ankit Parikh <ap...@gmail.com> wrote:


Thank you Rushabh.


On Fri, Apr 26, 2013 at 4:52 PM, Rushabh Mehta <rm…@gmail.com> wrote:

Ankit,

Thanks for identifying - we will add these in the server side validations and update you. We are already in the process of updating all our server side validations.

Should be done by end of day today.

best,
Rushabh


On Fri, Apr 26, 2013 at 9:28 AM, Ankit <ap...@gmail.com> wrote:
Hello Rushabh,

Two observations once I got it working.
1. The customer and debit to is selected, but when I check the contact, that is not selected. I was hoping that the primary contact gets selected by default.
  1. If I set isPos via the webservice, It doens’t populate the fields with default values for that Pos setting.

    So I have to manually tick isPos which is fine, but I also have to reselect the customer to get the default contact.


How can I make sure the primary contact is selected when I set the customer?

regards
Ankit





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/msg/erpnext-developer-forum/-/8CbwNqRZ4HUJ.


For more options, visit https://groups.google.com/groups/opt_out.
 
 



--



Twitter: @rushabh_mehta



You received this message because you are subscribed to a topic in the Google Groups “ERPNext Developer Forum” group.

To unsubscribe from this topic, visit https://groups.google.com/d/topic/erpnext-developer-forum/2TM0Tr_RILg/unsubscribe?hl=en.

To unsubscribe from this group and all its topics, send an email to erpnext-developer-forum+un…@googlegroups.com.

To post to this group, send email to er…@googlegroups.com.


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.

For more options, visit https://groups.google.com/groups/opt_out.

 

 





You received this message because you are subscribed to a topic in the Google Groups “ERPNext Developer Forum” group.

To unsubscribe from this topic, visit https://groups.google.com/d/topic/erpnext-developer-forum/2TM0Tr_RILg/unsubscribe?hl=en.

To unsubscribe from this group and all its topics, send an email to erpnext-developer-forum+un…@googlegroups.com.

To post to this group, send email to er…@googlegroups.com.

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.

For more options, visit https://groups.google.com/groups/opt_out.

 

 




You received this message because you are subscribed to a topic in the Google Groups “ERPNext Developer Forum” group.

To unsubscribe from this topic, visit https://groups.google.com/d/topic/erpnext-developer-forum/2TM0Tr_RILg/unsubscribe?hl=en.

To unsubscribe from this group and all its topics, send an email to erpnext-developer-forum+un…@googlegroups.com.

To post to this group, send email to er…@googlegroups.com.

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.

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.

For more options, visit https://groups.google.com/groups/opt_out.

 

 

Hello Anand,

Just verified and the customer contact is not fetched when I set the customer.So it is still not working.

I cannot provide item name and description exactly to match the database hence the preferred option would be fetch it from erpnext like a normal flow of events when creating an invoice manually.




On Tue, Apr 30, 2013 at 2:12 PM, Anand Doshi <an...@iwebnotes.com> wrote:
Hi Ankit

As per your last mail I had implemented fetching of customer data an post settings.

Item details fetching was not mentioned. Will try to get this done. In the mean time, pass the item name and description.

Sent from my phone

On 30-Apr-2013, at 5:55 AM, Ankit Parikh <ap...@gmail.com> wrote:

Hello Anand,

I still can't see the changes. Now I am passing the item code as I start populating the items, and it should fetch the name and description from the database.


Are you going to implement what we discussed last week.
Setting customer, pos defaults, item details - all depend on this feature.

regards
Ankit


On Sat, Apr 27, 2013 at 12:14 AM, Anand Doshi <an...@iwebnotes.com> wrote:
Hi Ankit,

We will release these changes on Monday, since we can provide better support then.

Thanks,
Anand.

On 26-Apr-2013, at 11:44 AM, Ankit Parikh <ap...@gmail.com> wrote:

Hello Anand,

Calculations are not an issue.
We just the fields to be populated with the default values
like, primary contact for the customer should be selected automatically, when we send the customer.


We are checking all calculations before submitting the invoice.

regards
Ankit


On Fri, Apr 26, 2013 at 6:11 PM, Anand Doshi <an…@iwebnotes.com> wrote:

Hi Ankit,

We will shift the fetching of values to server side, as you requested.

However, at this point, most calculations are done on the client side. We have started work on shifting them to server side.

Hence, for now, you will need to specify values and totals when you pass the doclist.

Thanks,
Anand.

On 26-Apr-2013, at 10:35 AM, Ankit Parikh <ap...@gmail.com> wrote:


Thank you Rushabh.


On Fri, Apr 26, 2013 at 4:52 PM, Rushabh Mehta <rm…@gmail.com> wrote:

Ankit,

Thanks for identifying - we will add these in the server side validations and update you. We are already in the process of updating all our server side validations.

Should be done by end of day today.

best,
Rushabh


On Fri, Apr 26, 2013 at 9:28 AM, Ankit <ap...@gmail.com> wrote:
Hello Rushabh,

Two observations once I got it working.
1. The customer and debit to is selected, but when I check the contact, that is not selected. I was hoping that the primary contact gets selected by default.
  1. If I set isPos via the webservice, It doens't populate the fields with default values for that Pos setting.

    So I have to manually tick isPos which is fine, but I also have to reselect the customer to get the default contact.


How can I make sure the primary contact is selected when I set the customer?

regards
Ankit





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.




--



Twitter: @rushabh_mehta



You received this message because you are subscribed to a topic in the Google Groups "ERPNext Developer Forum" group.

To unsubscribe from this topic, visit https://groups.google.com/d/topic/erpnext-developer-forum/2TM0Tr_RILg/unsubscribe?hl=en.

To unsubscribe from this group and all its topics, send an email to erpnext-developer-forum+un…@googlegroups.com.

To post to this group, send email to er…@googlegroups.com.


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.

For more options, visit https://groups.google.com/groups/opt_out.








You received this message because you are subscribed to a topic in the Google Groups "ERPNext Developer Forum" group.

To unsubscribe from this topic, visit https://groups.google.com/d/topic/erpnext-developer-forum/2TM0Tr_RILg/unsubscribe?hl=en.

To unsubscribe from this group and all its topics, send an email to erpnext-developer-forum+un…@googlegroups.com.

To post to this group, send email to er…@googlegroups.com.

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.

For more options, visit https://groups.google.com/groups/opt_out.







You received this message because you are subscribed to a topic in the Google Groups "ERPNext Developer Forum" group.

To unsubscribe from this topic, visit https://groups.google.com/d/topic/erpnext-developer-forum/2TM0Tr_RILg/unsubscribe?hl=en.

To unsubscribe from this group and all its topics, send an email to erpnext-developer-forum+un…@googlegroups.com.

To post to this group, send email to er…@googlegroups.com.

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.

For more options, visit https://groups.google.com/groups/opt_out.






You received this message because you are subscribed to a topic in the Google Groups "ERPNext Developer Forum" group.

To unsubscribe from this topic, visit https://groups.google.com/d/topic/erpnext-developer-forum/2TM0Tr_RILg/unsubscribe?hl=en.

To unsubscribe from this group and all its topics, send an email to erpnext-developer-forum+un…@googlegroups.com.

To post to this group, send email to er…@googlegroups.com.

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.

For more options, visit https://groups.google.com/groups/opt_out.

 

 

Oops. Since this was a sensitive release, we were supposed to release it after some testing. But due to heave support load yesterday, we couldn't make it live.

We will do it today and also try to get the item fetching done.

Thanks,
Anand.

On 30-Apr-2013, at 7:47 AM, Ankit Parikh <ap...@gmail.com> wrote:

Hello Anand,

Just verified and the customer contact is not fetched when I set the customer.So it is still not working.

I cannot provide item name and description exactly to match the database hence the preferred option would be fetch it from erpnext like a normal flow of events when creating an invoice manually.




On Tue, Apr 30, 2013 at 2:12 PM, Anand Doshi <an...@iwebnotes.com> wrote:
Hi Ankit

As per your last mail I had implemented fetching of customer data an post settings. 

Item details fetching was not mentioned. Will try to get this done. In the mean time, pass the item name and description. 

Sent from my phone

On 30-Apr-2013, at 5:55 AM, Ankit Parikh <ap...@gmail.com> wrote:

Hello Anand,

I still can't see the changes. Now I am passing the item code as I start populating the items, and it should fetch the name and description from the database.


Are you going to implement what we discussed last week.
Setting customer, pos defaults, item details - all depend on this feature.

regards
Ankit


On Sat, Apr 27, 2013 at 12:14 AM, Anand Doshi <an...@iwebnotes.com> wrote:
Hi Ankit,

We will release these changes on Monday, since we can provide better support then.

Thanks,
Anand.

On 26-Apr-2013, at 11:44 AM, Ankit Parikh <ap...@gmail.com> wrote:

Hello Anand,

Calculations are not an issue.
We just the fields to be populated with the default values
like, primary contact for the customer should be selected automatically, when we send the customer.


We are checking all calculations before submitting the invoice.

regards
Ankit


On Fri, Apr 26, 2013 at 6:11 PM, Anand Doshi <an…@iwebnotes.com> wrote:

Hi Ankit,

We will shift the fetching of values to server side, as you requested.

However, at this point, most calculations are done on the client side. We have started work on shifting them to server side. 

Hence, for now, you will need to specify values and totals when you pass the doclist.

Thanks,
Anand.

On 26-Apr-2013, at 10:35 AM, Ankit Parikh <ap...@gmail.com> wrote:


Thank you Rushabh.


On Fri, Apr 26, 2013 at 4:52 PM, Rushabh Mehta <rm…@gmail.com> wrote:

Ankit,

Thanks for identifying - we will add these in the server side validations and update you. We are already in the process of updating all our server side validations.

Should be done by end of day today.

best,
Rushabh


On Fri, Apr 26, 2013 at 9:28 AM, Ankit <ap...@gmail.com> wrote:
Hello Rushabh,

Two observations once I got it working.
1. The customer and debit to is selected, but when I check the contact, that is not selected. I was hoping that the primary contact gets selected by default.
  1. If I set isPos via the webservice, It doens’t populate the fields with default values for that Pos setting.

    So I have to manually tick isPos which is fine, but I also have to reselect the customer to get the default contact.


How can I make sure the primary contact is selected when I set the customer?

regards
Ankit





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/msg/erpnext-developer-forum/-/8CbwNqRZ4HUJ.


For more options, visit https://groups.google.com/groups/opt_out.
 
 



--



Twitter: @rushabh_mehta



You received this message because you are subscribed to a topic in the Google Groups “ERPNext Developer Forum” group.

To unsubscribe from this topic, visit https://groups.google.com/d/topic/erpnext-developer-forum/2TM0Tr_RILg/unsubscribe?hl=en.

To unsubscribe from this group and all its topics, send an email to erpnext-developer-forum+un…@googlegroups.com.

To post to this group, send email to er…@googlegroups.com.


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.

For more options, visit https://groups.google.com/groups/opt_out.

 

 





You received this message because you are subscribed to a topic in the Google Groups “ERPNext Developer Forum” group.

To unsubscribe from this topic, visit https://groups.google.com/d/topic/erpnext-developer-forum/2TM0Tr_RILg/unsubscribe?hl=en.

To unsubscribe from this group and all its topics, send an email to erpnext-developer-forum+un…@googlegroups.com.

To post to this group, send email to er…@googlegroups.com.

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.

For more options, visit https://groups.google.com/groups/opt_out.

 

 





You received this message because you are subscribed to a topic in the Google Groups “ERPNext Developer Forum” group.

To unsubscribe from this topic, visit https://groups.google.com/d/topic/erpnext-developer-forum/2TM0Tr_RILg/unsubscribe?hl=en.

To unsubscribe from this group and all its topics, send an email to erpnext-developer-forum+un…@googlegroups.com.

To post to this group, send email to er…@googlegroups.com.

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.

For more options, visit https://groups.google.com/groups/opt_out.

 

 




You received this message because you are subscribed to a topic in the Google Groups “ERPNext Developer Forum” group.

To unsubscribe from this topic, visit https://groups.google.com/d/topic/erpnext-developer-forum/2TM0Tr_RILg/unsubscribe?hl=en.

To unsubscribe from this group and all its topics, send an email to erpnext-developer-forum+un…@googlegroups.com.

To post to this group, send email to er…@googlegroups.com.

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.

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.

For more options, visit https://groups.google.com/groups/opt_out.

 

 

Hello Anand,

The changes are not there yet. Please email me when you have done those changes.
Very crucial to fetch the details for customers and items to automate the process otherwise it defeats the purpose of automatic invoice generation.

regards
Ankit


On Tue, Apr 30, 2013 at 5:50 PM, Anand Doshi <an...@iwebnotes.com> wrote:
Oops. Since this was a sensitive release, we were supposed to release it after some testing. But due to heave support load yesterday, we couldn't make it live.

We will do it today and also try to get the item fetching done.

Thanks,
Anand.


On 30-Apr-2013, at 7:47 AM, Ankit Parikh <ap...@gmail.com> wrote:

Hello Anand,

Just verified and the customer contact is not fetched when I set the customer.So it is still not working.

I cannot provide item name and description exactly to match the database hence the preferred option would be fetch it from erpnext like a normal flow of events when creating an invoice manually.





On Tue, Apr 30, 2013 at 2:12 PM, Anand Doshi <an…@iwebnotes.com> wrote:

Hi Ankit

As per your last mail I had implemented fetching of customer data an post settings.

Item details fetching was not mentioned. Will try to get this done. In the mean time, pass the item name and description.

Sent from my phone

On 30-Apr-2013, at 5:55 AM, Ankit Parikh <ap...@gmail.com> wrote:


Hello Anand,

I still can't see the changes. Now I am passing the item code as I start populating the items, and it should fetch the name and description from the database.


Are you going to implement what we discussed last week.
Setting customer, pos defaults, item details - all depend on this feature.

regards
Ankit


On Sat, Apr 27, 2013 at 12:14 AM, Anand Doshi <an...@iwebnotes.com> wrote:
Hi Ankit,

We will release these changes on Monday, since we can provide better support then.

Thanks,
Anand.

On 26-Apr-2013, at 11:44 AM, Ankit Parikh <ap...@gmail.com> wrote:

Hello Anand,

Calculations are not an issue.
We just the fields to be populated with the default values
like, primary contact for the customer should be selected automatically, when we send the customer.


We are checking all calculations before submitting the invoice.

regards
Ankit


On Fri, Apr 26, 2013 at 6:11 PM, Anand Doshi <an…@iwebnotes.com> wrote:

Hi Ankit,

We will shift the fetching of values to server side, as you requested.

However, at this point, most calculations are done on the client side. We have started work on shifting them to server side.

Hence, for now, you will need to specify values and totals when you pass the doclist.

Thanks,
Anand.

On 26-Apr-2013, at 10:35 AM, Ankit Parikh <ap...@gmail.com> wrote:


Thank you Rushabh.


On Fri, Apr 26, 2013 at 4:52 PM, Rushabh Mehta <rm…@gmail.com> wrote:

Ankit,

Thanks for identifying - we will add these in the server side validations and update you. We are already in the process of updating all our server side validations.

Should be done by end of day today.

best,
Rushabh


On Fri, Apr 26, 2013 at 9:28 AM, Ankit <ap...@gmail.com> wrote:
Hello Rushabh,

Two observations once I got it working.
1. The customer and debit to is selected, but when I check the contact, that is not selected. I was hoping that the primary contact gets selected by default.
  1. If I set isPos via the webservice, It doens't populate the fields with default values for that Pos setting.

    So I have to manually tick isPos which is fine, but I also have to reselect the customer to get the default contact.


How can I make sure the primary contact is selected when I set the customer?

regards
Ankit





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.




--



Twitter: @rushabh_mehta



You received this message because you are subscribed to a topic in the Google Groups "ERPNext Developer Forum" group.

To unsubscribe from this topic, visit https://groups.google.com/d/topic/erpnext-developer-forum/2TM0Tr_RILg/unsubscribe?hl=en.

To unsubscribe from this group and all its topics, send an email to erpnext-developer-forum+un…@googlegroups.com.

To post to this group, send email to er…@googlegroups.com.


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.

For more options, visit https://groups.google.com/groups/opt_out.








You received this message because you are subscribed to a topic in the Google Groups "ERPNext Developer Forum" group.

To unsubscribe from this topic, visit https://groups.google.com/d/topic/erpnext-developer-forum/2TM0Tr_RILg/unsubscribe?hl=en.

To unsubscribe from this group and all its topics, send an email to erpnext-developer-forum+un…@googlegroups.com.

To post to this group, send email to er…@googlegroups.com.

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.

For more options, visit https://groups.google.com/groups/opt_out.








You received this message because you are subscribed to a topic in the Google Groups "ERPNext Developer Forum" group.

To unsubscribe from this topic, visit https://groups.google.com/d/topic/erpnext-developer-forum/2TM0Tr_RILg/unsubscribe?hl=en.

To unsubscribe from this group and all its topics, send an email to erpnext-developer-forum+un…@googlegroups.com.

To post to this group, send email to er…@googlegroups.com.

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.

For more options, visit https://groups.google.com/groups/opt_out.







You received this message because you are subscribed to a topic in the Google Groups "ERPNext Developer Forum" group.

To unsubscribe from this topic, visit https://groups.google.com/d/topic/erpnext-developer-forum/2TM0Tr_RILg/unsubscribe?hl=en.

To unsubscribe from this group and all its topics, send an email to erpnext-developer-forum+un…@googlegroups.com.

To post to this group, send email to er…@googlegroups.com.

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.

For more options, visit https://groups.google.com/groups/opt_out.







You received this message because you are subscribed to a topic in the Google Groups "ERPNext Developer Forum" group.

To unsubscribe from this topic, visit https://groups.google.com/d/topic/erpnext-developer-forum/2TM0Tr_RILg/unsubscribe?hl=en.

To unsubscribe from this group and all its topics, send an email to erpnext-developer-forum+un…@googlegroups.com.

To post to this group, send email to er…@googlegroups.com.

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.

For more options, visit https://groups.google.com/groups/opt_out.

 

 

Hello Anand,

Another week has ended here.
Still waiting for those changes to kick in.

Haven't heard from you.

Ankit


On Wed, May 1, 2013 at 2:29 PM, Ankit Parikh <ap...@gmail.com> wrote:
Hello Anand,

The changes are not there yet. Please email me when you have done those changes.
Very crucial to fetch the details for customers and items to automate the process otherwise it defeats the purpose of automatic invoice generation.


regards
Ankit


On Tue, Apr 30, 2013 at 5:50 PM, Anand Doshi <an…@iwebnotes.com> wrote:

Oops. Since this was a sensitive release, we were supposed to release it after some testing. But due to heave support load yesterday, we couldn't make it live.


We will do it today and also try to get the item fetching done.

Thanks,
Anand.


On 30-Apr-2013, at 7:47 AM, Ankit Parikh <ap…@gmail.com> wrote:


Hello Anand,

Just verified and the customer contact is not fetched when I set the customer.So it is still not working.

I cannot provide item name and description exactly to match the database hence the preferred option would be fetch it from erpnext like a normal flow of events when creating an invoice manually.





On Tue, Apr 30, 2013 at 2:12 PM, Anand Doshi <an…@iwebnotes.com> wrote:

Hi Ankit

As per your last mail I had implemented fetching of customer data an post settings.

Item details fetching was not mentioned. Will try to get this done. In the mean time, pass the item name and description.

Sent from my phone

On 30-Apr-2013, at 5:55 AM, Ankit Parikh <ap...@gmail.com> wrote:


Hello Anand,

I still can't see the changes. Now I am passing the item code as I start populating the items, and it should fetch the name and description from the database.


Are you going to implement what we discussed last week.
Setting customer, pos defaults, item details - all depend on this feature.

regards
Ankit


On Sat, Apr 27, 2013 at 12:14 AM, Anand Doshi <an...@iwebnotes.com> wrote:
Hi Ankit,

We will release these changes on Monday, since we can provide better support then.

Thanks,
Anand.

On 26-Apr-2013, at 11:44 AM, Ankit Parikh <ap...@gmail.com> wrote:

Hello Anand,

Calculations are not an issue.
We just the fields to be populated with the default values
like, primary contact for the customer should be selected automatically, when we send the customer.


We are checking all calculations before submitting the invoice.

regards
Ankit


On Fri, Apr 26, 2013 at 6:11 PM, Anand Doshi <an…@iwebnotes.com> wrote:

Hi Ankit,

We will shift the fetching of values to server side, as you requested.

However, at this point, most calculations are done on the client side. We have started work on shifting them to server side.

Hence, for now, you will need to specify values and totals when you pass the doclist.

Thanks,
Anand.

On 26-Apr-2013, at 10:35 AM, Ankit Parikh <ap...@gmail.com> wrote:


Thank you Rushabh.


On Fri, Apr 26, 2013 at 4:52 PM, Rushabh Mehta <rm…@gmail.com> wrote:

Ankit,

Thanks for identifying - we will add these in the server side validations and update you. We are already in the process of updating all our server side validations.

Should be done by end of day today.

best,
Rushabh


On Fri, Apr 26, 2013 at 9:28 AM, Ankit <ap...@gmail.com> wrote:
Hello Rushabh,

Two observations once I got it working.
1. The customer and debit to is selected, but when I check the contact, that is not selected. I was hoping that the primary contact gets selected by default.
  1. If I set isPos via the webservice, It doens't populate the fields with default values for that Pos setting.

    So I have to manually tick isPos which is fine, but I also have to reselect the customer to get the default contact.


How can I make sure the primary contact is selected when I set the customer?

regards
Ankit





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.




--



Twitter: @rushabh_mehta



You received this message because you are subscribed to a topic in the Google Groups "ERPNext Developer Forum" group.

To unsubscribe from this topic, visit https://groups.google.com/d/topic/erpnext-developer-forum/2TM0Tr_RILg/unsubscribe?hl=en.

To unsubscribe from this group and all its topics, send an email to erpnext-developer-forum+un…@googlegroups.com.

To post to this group, send email to er…@googlegroups.com.


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.

For more options, visit https://groups.google.com/groups/opt_out.








You received this message because you are subscribed to a topic in the Google Groups "ERPNext Developer Forum" group.

To unsubscribe from this topic, visit https://groups.google.com/d/topic/erpnext-developer-forum/2TM0Tr_RILg/unsubscribe?hl=en.

To unsubscribe from this group and all its topics, send an email to erpnext-developer-forum+un…@googlegroups.com.

To post to this group, send email to er…@googlegroups.com.

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.

For more options, visit https://groups.google.com/groups/opt_out.








You received this message because you are subscribed to a topic in the Google Groups "ERPNext Developer Forum" group.

To unsubscribe from this topic, visit https://groups.google.com/d/topic/erpnext-developer-forum/2TM0Tr_RILg/unsubscribe?hl=en.

To unsubscribe from this group and all its topics, send an email to erpnext-developer-forum+un…@googlegroups.com.

To post to this group, send email to er…@googlegroups.com.

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.

For more options, visit https://groups.google.com/groups/opt_out.







You received this message because you are subscribed to a topic in the Google Groups "ERPNext Developer Forum" group.

To unsubscribe from this topic, visit https://groups.google.com/d/topic/erpnext-developer-forum/2TM0Tr_RILg/unsubscribe?hl=en.

To unsubscribe from this group and all its topics, send an email to erpnext-developer-forum+un…@googlegroups.com.

To post to this group, send email to er…@googlegroups.com.

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.

For more options, visit https://groups.google.com/groups/opt_out.







You received this message because you are subscribed to a topic in the Google Groups "ERPNext Developer Forum" group.

To unsubscribe from this topic, visit https://groups.google.com/d/topic/erpnext-developer-forum/2TM0Tr_RILg/unsubscribe?hl=en.

To unsubscribe from this group and all its topics, send an email to erpnext-developer-forum+un…@googlegroups.com.

To post to this group, send email to er…@googlegroups.com.

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.

For more options, visit https://groups.google.com/groups/opt_out.

 

 

Hi Ankit,

We have had a heavy support load this week along with our usual development. Hence, we were unable to release it. I am testing it. We will release it on monday.

Thanks,
Anand.


On 03-May-2013, at 11:58 AM, Ankit Parikh <ap...@gmail.com> wrote:

Hello Anand,

Another week has ended here.
Still waiting for those changes to kick in.

Haven't heard from you.

Ankit


On Wed, May 1, 2013 at 2:29 PM, Ankit Parikh <ap...@gmail.com> wrote:
Hello Anand,

The changes are not there yet. Please email me when you have done those changes.
Very crucial to fetch the details for customers and items to automate the process otherwise it defeats the purpose of automatic invoice generation.


regards
Ankit


On Tue, Apr 30, 2013 at 5:50 PM, Anand Doshi <an…@iwebnotes.com> wrote:

Oops. Since this was a sensitive release, we were supposed to release it after some testing. But due to heave support load yesterday, we couldn't make it live.


We will do it today and also try to get the item fetching done.

Thanks,
Anand.


On 30-Apr-2013, at 7:47 AM, Ankit Parikh <ap…@gmail.com> wrote:


Hello Anand,

Just verified and the customer contact is not fetched when I set the customer.So it is still not working.

I cannot provide item name and description exactly to match the database hence the preferred option would be fetch it from erpnext like a normal flow of events when creating an invoice manually.





On Tue, Apr 30, 2013 at 2:12 PM, Anand Doshi <an…@iwebnotes.com> wrote:

Hi Ankit

As per your last mail I had implemented fetching of customer data an post settings. 

Item details fetching was not mentioned. Will try to get this done. In the mean time, pass the item name and description. 

Sent from my phone

On 30-Apr-2013, at 5:55 AM, Ankit Parikh <ap...@gmail.com> wrote:


Hello Anand,

I still can’t see the changes. Now I am passing the item code as I start populating the items, and it should fetch the name and description from the database.


Are you going to implement what we discussed last week.
Setting customer, pos defaults, item details - all depend on this feature.

regards
Ankit


On Sat, Apr 27, 2013 at 12:14 AM, Anand Doshi <an...@iwebnotes.com> wrote:
Hi Ankit,

We will release these changes on Monday, since we can provide better support then.

Thanks,
Anand.

On 26-Apr-2013, at 11:44 AM, Ankit Parikh <ap...@gmail.com> wrote:

Hello Anand,

Calculations are not an issue.
We just the fields to be populated with the default values
like, primary contact for the customer should be selected automatically, when we send the customer.


We are checking all calculations before submitting the invoice.

regards
Ankit


On Fri, Apr 26, 2013 at 6:11 PM, Anand Doshi <an…@iwebnotes.com> wrote:

Hi Ankit,

We will shift the fetching of values to server side, as you requested.

However, at this point, most calculations are done on the client side. We have started work on shifting them to server side. 

Hence, for now, you will need to specify values and totals when you pass the doclist.

Thanks,
Anand.

On 26-Apr-2013, at 10:35 AM, Ankit Parikh <ap...@gmail.com> wrote:


Thank you Rushabh.


On Fri, Apr 26, 2013 at 4:52 PM, Rushabh Mehta <rm…@gmail.com> wrote:

Ankit,

Thanks for identifying - we will add these in the server side validations and update you. We are already in the process of updating all our server side validations.

Should be done by end of day today.

best,
Rushabh


On Fri, Apr 26, 2013 at 9:28 AM, Ankit <ap...@gmail.com> wrote:
Hello Rushabh,

Two observations once I got it working.
1. The customer and debit to is selected, but when I check the contact, that is not selected. I was hoping that the primary contact gets selected by default.
  1. If I set isPos via the webservice, It doens’t populate the fields with default values for that Pos setting.

    So I have to manually tick isPos which is fine, but I also have to reselect the customer to get the default contact.


How can I make sure the primary contact is selected when I set the customer?

regards
Ankit





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/msg/erpnext-developer-forum/-/8CbwNqRZ4HUJ.


For more options, visit https://groups.google.com/groups/opt_out.
 
 



--



Twitter: @rushabh_mehta



You received this message because you are subscribed to a topic in the Google Groups “ERPNext Developer Forum” group.

To unsubscribe from this topic, visit https://groups.google.com/d/topic/erpnext-developer-forum/2TM0Tr_RILg/unsubscribe?hl=en.

To unsubscribe from this group and all its topics, send an email to erpnext-developer-forum+un…@googlegroups.com.

To post to this group, send email to er…@googlegroups.com.


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.

For more options, visit https://groups.google.com/groups/opt_out.

 

 





You received this message because you are subscribed to a topic in the Google Groups “ERPNext Developer Forum” group.

To unsubscribe from this topic, visit https://groups.google.com/d/topic/erpnext-developer-forum/2TM0Tr_RILg/unsubscribe?hl=en.

To unsubscribe from this group and all its topics, send an email to erpnext-developer-forum+un…@googlegroups.com.

To post to this group, send email to er…@googlegroups.com.

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.

For more options, visit https://groups.google.com/groups/opt_out.

 

 





You received this message because you are subscribed to a topic in the Google Groups “ERPNext Developer Forum” group.

To unsubscribe from this topic, visit https://groups.google.com/d/topic/erpnext-developer-forum/2TM0Tr_RILg/unsubscribe?hl=en.

To unsubscribe from this group and all its topics, send an email to erpnext-developer-forum+un…@googlegroups.com.

To post to this group, send email to er…@googlegroups.com.

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.

For more options, visit https://groups.google.com/groups/opt_out.

 

 




You received this message because you are subscribed to a topic in the Google Groups “ERPNext Developer Forum” group.

To unsubscribe from this topic, visit https://groups.google.com/d/topic/erpnext-developer-forum/2TM0Tr_RILg/unsubscribe?hl=en.

To unsubscribe from this group and all its topics, send an email to erpnext-developer-forum+un…@googlegroups.com.

To post to this group, send email to er…@googlegroups.com.

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.

For more options, visit https://groups.google.com/groups/opt_out.

 

 





You received this message because you are subscribed to a topic in the Google Groups “ERPNext Developer Forum” group.

To unsubscribe from this topic, visit https://groups.google.com/d/topic/erpnext-developer-forum/2TM0Tr_RILg/unsubscribe?hl=en.

To unsubscribe from this group and all its topics, send an email to erpnext-developer-forum+un…@googlegroups.com.

To post to this group, send email to er…@googlegroups.com.

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.

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.

For more options, visit https://groups.google.com/groups/opt_out.

 

 

Hi Ankit,

This change required some other related changes and hence, it could introduce bugs.

I hope that you don't get the idea that I am stalling the release. 

The coding has been done and I am doing some tests on it.

We don't release any major changes on our server on a Friday. Hence, we will release it on Monday.

Thanks,
Anand. 

On 03-May-2013, at 12:01 PM, Anand Doshi <an...@iwebnotes.com> wrote:

Hi Ankit,

We have had a heavy support load this week along with our usual development. Hence, we were unable to release it. I am testing it. We will release it on monday.

Thanks,
Anand.


On 03-May-2013, at 11:58 AM, Ankit Parikh <ap...@gmail.com> wrote:

Hello Anand,

Another week has ended here.
Still waiting for those changes to kick in.

Haven't heard from you.

Ankit


On Wed, May 1, 2013 at 2:29 PM, Ankit Parikh <ap...@gmail.com> wrote:
Hello Anand,

The changes are not there yet. Please email me when you have done those changes.
Very crucial to fetch the details for customers and items to automate the process otherwise it defeats the purpose of automatic invoice generation.


regards
Ankit


On Tue, Apr 30, 2013 at 5:50 PM, Anand Doshi <an…@iwebnotes.com> wrote:

Oops. Since this was a sensitive release, we were supposed to release it after some testing. But due to heave support load yesterday, we couldn't make it live.


We will do it today and also try to get the item fetching done.

Thanks,
Anand.


On 30-Apr-2013, at 7:47 AM, Ankit Parikh <ap…@gmail.com> wrote:


Hello Anand,

Just verified and the customer contact is not fetched when I set the customer.So it is still not working.

I cannot provide item name and description exactly to match the database hence the preferred option would be fetch it from erpnext like a normal flow of events when creating an invoice manually.





On Tue, Apr 30, 2013 at 2:12 PM, Anand Doshi <an…@iwebnotes.com> wrote:

Hi Ankit

As per your last mail I had implemented fetching of customer data an post settings. 

Item details fetching was not mentioned. Will try to get this done. In the mean time, pass the item name and description. 

Sent from my phone

On 30-Apr-2013, at 5:55 AM, Ankit Parikh <ap...@gmail.com> wrote:


Hello Anand,

I still can’t see the changes. Now I am passing the item code as I start populating the items, and it should fetch the name and description from the database.


Are you going to implement what we discussed last week.
Setting customer, pos defaults, item details - all depend on this feature.

regards
Ankit


On Sat, Apr 27, 2013 at 12:14 AM, Anand Doshi <an...@iwebnotes.com> wrote:
Hi Ankit,

We will release these changes on Monday, since we can provide better support then.

Thanks,
Anand.

On 26-Apr-2013, at 11:44 AM, Ankit Parikh <ap...@gmail.com> wrote:

Hello Anand,

Calculations are not an issue.
We just the fields to be populated with the default values
like, primary contact for the customer should be selected automatically, when we send the customer.


We are checking all calculations before submitting the invoice.

regards
Ankit


On Fri, Apr 26, 2013 at 6:11 PM, Anand Doshi <an…@iwebnotes.com> wrote:

Hi Ankit,

We will shift the fetching of values to server side, as you requested.

However, at this point, most calculations are done on the client side. We have started work on shifting them to server side. 

Hence, for now, you will need to specify values and totals when you pass the doclist.

Thanks,
Anand.

On 26-Apr-2013, at 10:35 AM, Ankit Parikh <ap...@gmail.com> wrote:


Thank you Rushabh.


On Fri, Apr 26, 2013 at 4:52 PM, Rushabh Mehta <rm…@gmail.com> wrote:

Ankit,

Thanks for identifying - we will add these in the server side validations and update you. We are already in the process of updating all our server side validations.

Should be done by end of day today.

best,
Rushabh


On Fri, Apr 26, 2013 at 9:28 AM, Ankit <ap...@gmail.com> wrote:
Hello Rushabh,

Two observations once I got it working.
1. The customer and debit to is selected, but when I check the contact, that is not selected. I was hoping that the primary contact gets selected by default.
  1. If I set isPos via the webservice, It doens’t populate the fields with default values for that Pos setting.

    So I have to manually tick isPos which is fine, but I also have to reselect the customer to get the default contact.


How can I make sure the primary contact is selected when I set the customer?

regards
Ankit





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/msg/erpnext-developer-forum/-/8CbwNqRZ4HUJ.


For more options, visit https://groups.google.com/groups/opt_out.
 
 



--



Twitter: @rushabh_mehta



You received this message because you are subscribed to a topic in the Google Groups “ERPNext Developer Forum” group.

To unsubscribe from this topic, visit https://groups.google.com/d/topic/erpnext-developer-forum/2TM0Tr_RILg/unsubscribe?hl=en.

To unsubscribe from this group and all its topics, send an email to erpnext-developer-forum+un…@googlegroups.com.

To post to this group, send email to er…@googlegroups.com.


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.

For more options, visit https://groups.google.com/groups/opt_out.

 

 





You received this message because you are subscribed to a topic in the Google Groups “ERPNext Developer Forum” group.

To unsubscribe from this topic, visit https://groups.google.com/d/topic/erpnext-developer-forum/2TM0Tr_RILg/unsubscribe?hl=en.

To unsubscribe from this group and all its topics, send an email to erpnext-developer-forum+un…@googlegroups.com.

To post to this group, send email to er…@googlegroups.com.

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.

For more options, visit https://groups.google.com/groups/opt_out.

 

 





You received this message because you are subscribed to a topic in the Google Groups “ERPNext Developer Forum” group.

To unsubscribe from this topic, visit https://groups.google.com/d/topic/erpnext-developer-forum/2TM0Tr_RILg/unsubscribe?hl=en.

To unsubscribe from this group and all its topics, send an email to erpnext-developer-forum+un…@googlegroups.com.

To post to this group, send email to er…@googlegroups.com.

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.

For more options, visit https://groups.google.com/groups/opt_out.

 

 




You received this message because you are subscribed to a topic in the Google Groups “ERPNext Developer Forum” group.

To unsubscribe from this topic, visit https://groups.google.com/d/topic/erpnext-developer-forum/2TM0Tr_RILg/unsubscribe?hl=en.

To unsubscribe from this group and all its topics, send an email to erpnext-developer-forum+un…@googlegroups.com.

To post to this group, send email to er…@googlegroups.com.

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.

For more options, visit https://groups.google.com/groups/opt_out.

 

 





You received this message because you are subscribed to a topic in the Google Groups “ERPNext Developer Forum” group.

To unsubscribe from this topic, visit https://groups.google.com/d/topic/erpnext-developer-forum/2TM0Tr_RILg/unsubscribe?hl=en.

To unsubscribe from this group and all its topics, send an email to erpnext-developer-forum+un…@googlegroups.com.

To post to this group, send email to er…@googlegroups.com.

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.

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.

For more options, visit https://groups.google.com/groups/opt_out.

 

 

Thanks Anand


On Fri, May 3, 2013 at 7:30 PM, Anand Doshi <an...@iwebnotes.com> wrote:
Hi Ankit,

This change required some other related changes and hence, it could introduce bugs.

I hope that you don't get the idea that I am stalling the release.

The coding has been done and I am doing some tests on it.

We don't release any major changes on our server on a Friday. Hence, we will release it on Monday.

Thanks,
Anand.

On 03-May-2013, at 12:01 PM, Anand Doshi <an...@iwebnotes.com> wrote:

Hi Ankit,

We have had a heavy support load this week along with our usual development. Hence, we were unable to release it. I am testing it. We will release it on monday.

Thanks,
Anand.


On 03-May-2013, at 11:58 AM, Ankit Parikh <ap...@gmail.com> wrote:

Hello Anand,

Another week has ended here.
Still waiting for those changes to kick in.

Haven't heard from you.

Ankit


On Wed, May 1, 2013 at 2:29 PM, Ankit Parikh <ap...@gmail.com> wrote:
Hello Anand,

The changes are not there yet. Please email me when you have done those changes.
Very crucial to fetch the details for customers and items to automate the process otherwise it defeats the purpose of automatic invoice generation.


regards
Ankit


On Tue, Apr 30, 2013 at 5:50 PM, Anand Doshi <an…@iwebnotes.com> wrote:

Oops. Since this was a sensitive release, we were supposed to release it after some testing. But due to heave support load yesterday, we couldn't make it live.


We will do it today and also try to get the item fetching done.

Thanks,
Anand.


On 30-Apr-2013, at 7:47 AM, Ankit Parikh <ap…@gmail.com> wrote:


Hello Anand,

Just verified and the customer contact is not fetched when I set the customer.So it is still not working.

I cannot provide item name and description exactly to match the database hence the preferred option would be fetch it from erpnext like a normal flow of events when creating an invoice manually.





On Tue, Apr 30, 2013 at 2:12 PM, Anand Doshi <an…@iwebnotes.com> wrote:

Hi Ankit

As per your last mail I had implemented fetching of customer data an post settings.

Item details fetching was not mentioned. Will try to get this done. In the mean time, pass the item name and description.

Sent from my phone

On 30-Apr-2013, at 5:55 AM, Ankit Parikh <ap...@gmail.com> wrote:


Hello Anand,

I still can't see the changes. Now I am passing the item code as I start populating the items, and it should fetch the name and description from the database.


Are you going to implement what we discussed last week.
Setting customer, pos defaults, item details - all depend on this feature.

regards
Ankit


On Sat, Apr 27, 2013 at 12:14 AM, Anand Doshi <an...@iwebnotes.com> wrote:
Hi Ankit,

We will release these changes on Monday, since we can provide better support then.

Thanks,
Anand.

On 26-Apr-2013, at 11:44 AM, Ankit Parikh <ap...@gmail.com> wrote:

Hello Anand,

Calculations are not an issue.
We just the fields to be populated with the default values
like, primary contact for the customer should be selected automatically, when we send the customer.


We are checking all calculations before submitting the invoice.

regards
Ankit


On Fri, Apr 26, 2013 at 6:11 PM, Anand Doshi <an…@iwebnotes.com> wrote:

Hi Ankit,

We will shift the fetching of values to server side, as you requested.

However, at this point, most calculations are done on the client side. We have started work on shifting them to server side.

Hence, for now, you will need to specify values and totals when you pass the doclist.

Thanks,
Anand.

On 26-Apr-2013, at 10:35 AM, Ankit Parikh <ap...@gmail.com> wrote:


Thank you Rushabh.


On Fri, Apr 26, 2013 at 4:52 PM, Rushabh Mehta <rm…@gmail.com> wrote:

Ankit,

Thanks for identifying - we will add these in the server side validations and update you. We are already in the process of updating all our server side validations.

Should be done by end of day today.

best,
Rushabh


On Fri, Apr 26, 2013 at 9:28 AM, Ankit <ap...@gmail.com> wrote:
Hello Rushabh,

Two observations once I got it working.
1. The customer and debit to is selected, but when I check the contact, that is not selected. I was hoping that the primary contact gets selected by default.
  1. If I set isPos via the webservice, It doens't populate the fields with default values for that Pos setting.

    So I have to manually tick isPos which is fine, but I also have to reselect the customer to get the default contact.


How can I make sure the primary contact is selected when I set the customer?

regards
Ankit





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.




--



Twitter: @rushabh_mehta



You received this message because you are subscribed to a topic in the Google Groups "ERPNext Developer Forum" group.

To unsubscribe from this topic, visit https://groups.google.com/d/topic/erpnext-developer-forum/2TM0Tr_RILg/unsubscribe?hl=en.

To unsubscribe from this group and all its topics, send an email to erpnext-developer-forum+un…@googlegroups.com.

To post to this group, send email to er…@googlegroups.com.


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.

For more options, visit https://groups.google.com/groups/opt_out.








You received this message because you are subscribed to a topic in the Google Groups "ERPNext Developer Forum" group.

To unsubscribe from this topic, visit https://groups.google.com/d/topic/erpnext-developer-forum/2TM0Tr_RILg/unsubscribe?hl=en.

To unsubscribe from this group and all its topics, send an email to erpnext-developer-forum+un…@googlegroups.com.

To post to this group, send email to er…@googlegroups.com.

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.

For more options, visit https://groups.google.com/groups/opt_out.








You received this message because you are subscribed to a topic in the Google Groups "ERPNext Developer Forum" group.

To unsubscribe from this topic, visit https://groups.google.com/d/topic/erpnext-developer-forum/2TM0Tr_RILg/unsubscribe?hl=en.

To unsubscribe from this group and all its topics, send an email to erpnext-developer-forum+un…@googlegroups.com.

To post to this group, send email to er…@googlegroups.com.

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.

For more options, visit https://groups.google.com/groups/opt_out.







You received this message because you are subscribed to a topic in the Google Groups "ERPNext Developer Forum" group.

To unsubscribe from this topic, visit https://groups.google.com/d/topic/erpnext-developer-forum/2TM0Tr_RILg/unsubscribe?hl=en.

To unsubscribe from this group and all its topics, send an email to erpnext-developer-forum+un…@googlegroups.com.

To post to this group, send email to er…@googlegroups.com.

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.

For more options, visit https://groups.google.com/groups/opt_out.








You received this message because you are subscribed to a topic in the Google Groups "ERPNext Developer Forum" group.

To unsubscribe from this topic, visit https://groups.google.com/d/topic/erpnext-developer-forum/2TM0Tr_RILg/unsubscribe?hl=en.

To unsubscribe from this group and all its topics, send an email to erpnext-developer-forum+un…@googlegroups.com.

To post to this group, send email to er…@googlegroups.com.

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.

For more options, visit https://groups.google.com/groups/opt_out.








You received this message because you are subscribed to a topic in the Google Groups "ERPNext Developer Forum" group.

To unsubscribe from this topic, visit https://groups.google.com/d/topic/erpnext-developer-forum/2TM0Tr_RILg/unsubscribe?hl=en.

To unsubscribe from this group and all its topics, send an email to erpnext-developer-forum+un…@googlegroups.com.

To post to this group, send email to er…@googlegroups.com.

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.

For more options, visit https://groups.google.com/groups/opt_out.