New Doctype

Hi,

I have just discovered this amazing software (ERPNEXT) and trying to evaluate it using the virtual image downloaded from the site .

I wanted to add a new Doctype but everytime I try to create it, the system gives a error “not in developer mode”. Is the developer mode supported on this virtual machine? I even tried to alter site config json file (forgetting the actual name at the moment)

Also I searched the forum and came across a post where there is guide to write entirely new app (in frappe.io library mgmt). My question is how can i just customize ERPNEXT and not write an entirly new App?

Thanks
Akshay


Note:

If you are posting an issue,

  1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.
  2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email
  3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.

End of Note

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 view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/7607bdc0-93fb-41e1-ae90-ee428399df91%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Akshay,

Welcome to the forum! Yes developer mode should work in Virtual Machine. You can set "developer_mode": 1 in the site_config.json file and restart gunicorn (I think)

@Pratik - you need to create write a few lines on how to update / restart the VM (we are getting many such questions)

best,
Rushabh



@rushabh_mehta

On 02-Jun-2014, at 1:46 am, Akshay Mehta <me...@gmail.com> wrote:

Hi,

I have just discovered this amazing software (ERPNEXT) and trying to evaluate it using the virtual image downloaded from the site .

I wanted to add a new Doctype but everytime I try to create it, the system gives a error "not in developer mode". Is the developer mode supported on this virtual machine? I even tried to alter site config json file (forgetting the actual name at the moment)

Also I searched the forum and came across a post where there is guide to write entirely new app (in frappe.io library mgmt). My question is how can i just customize ERPNEXT and not write an entirly new App?

Thanks
Akshay

--
Note:

If you are posting an issue,
1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.
2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email
3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.

End of Note
---
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 view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/7607bdc0-93fb-41e1-ae90-ee428399df91%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.



Note:

 

If you are posting an issue,

  1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.
  2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email
  3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.

     

    End of Note



    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 view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/FF502855-C26C-4E37-80B3-A58783288DEA%40gmail.com.

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

On Mon, Jun 2, 2014 at 1:46 AM, Akshay Mehta me...@gmail.com wrote:

Hi,

I have just discovered this amazing software (ERPNEXT) and trying to evaluate it using the virtual image downloaded from the site .

I wanted to add a new Doctype but everytime I try to create it, the system gives a error “not in developer mode”. Is the developer mode supported on this virtual machine? I even tried to alter site config json file (forgetting the actual name at the moment)

Also I searched the forum and came across a post where there is guide to write entirely new app (in frappe.io library mgmt). My question is how can i just customize ERPNEXT and not write an entirly new App?

Hi Akshay,

Best way to add a new doctype would be by creating a new app (follow
https://frappe.io/apps/frappe-framework/developers/guide) because
otherwise you’ll be editing erpnext code and which is not recommended
as you’ll have to maintain a fork. Although, simple customizations
like, adding a field or customizing forms is supported out of the box
via GUI and doesn’t require any code change (stored in database).

You will have to add “developer_mode” as true in site_config.json.

Thanks,
Pratik

Thanks
Akshay


Note:

If you are posting an issue,

  1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.
  2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email
  3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.

End of Note

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 view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/7607bdc0-93fb-41e1-ae90-ee428399df91%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Pratik
erpnext

Thank you guys for a quick response.

I am basically trying to ease out operations eg. Receipts and Payments (as I could only see Journal transaction having Bank Voucher in ERPNEXT). As not every person would be familiar with accounting principles, what to debit and what to credit. Therefore I was just trying to add simple Documents to achieve this. How can i do this in the best possible way? where do i start from? I want avoid creating a new app from the scratch.

Thanks
Akshay

On Mon, Jun 2, 2014 at 1:46 AM, Akshay Mehta <me...@gmail.com> wrote:

> Hi,

>

> I have just discovered this amazing software (ERPNEXT) and trying to evaluate it using the virtual image downloaded from the site .

>

> I wanted to add a new Doctype but everytime I try to create it, the system gives a error "not in developer mode". Is the developer mode supported on this virtual machine? I even tried to alter site config json file (forgetting the actual name at the moment)

>

> Also I searched the forum and came across a post where there is guide to write entirely new app (in frappe.io library mgmt). My question is how can i just customize ERPNEXT and not write an entirly new App?

>



Hi Akshay,



Best way to add a new doctype would be by creating a new app (follow

https://frappe.io/apps/frappe-framework/developers/guide) because

otherwise you'll be editing erpnext code and which is not recommended

as you'll have to maintain a fork. Although, simple customizations

like, adding a field or customizing forms is supported out of the box

via GUI and doesn't require any code change (stored in database).



You will have to add "developer_mode" as true in site_config.json.





Thanks,

Pratik



> Thanks

> Akshay

>

> –

> Note:

>

> If you are posting an issue,

> 1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.

> 2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email

> 3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.

>

> End of Note

> —

> 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 view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/7607bdc0-93fb-41e1-ae90-ee428399df91%40googlegroups.com.

> For more options, visit https://groups.google.com/d/optout.









Pratik

erpnext





Note:



If you are posting an issue,

  1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.
  2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email
  3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.



    End of Note



    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 view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/CAG8U0EmUi%3DByHsOqXWpyGLFEsCMZJUHcyf10f4CPXsHNrS3x7Q%40mail.gmail.com.

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



Note:

 

If you are posting an issue,

  1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.
  2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email
  3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.

     

    End of Note



    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 view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/CAMgq%3DkdmrVgWbG%3DTV8j_djhWuxDPPHxy5c2EcTFivsJ-EgRcaA%40mail.gmail.com.

    For more options, visit https://groups.google.com/d/optout.
Akshay,

Best to create a "Single" type DocType that will create a Journal Voucher in background.

You can create a Journal Voucher on server side using (verify fieldnames etc):

jv = frappe.new_doc("Journal Voucher")
jv.voucher_type = ..
jv.append("details", { .. }) // add rows
..
jv.insert()

Try pushing this in your fork - we can help you too, this has been on our list for quite sometime - we can then merge it in the product.

best,
Rushabh



@rushabh_mehta

On 02-Jun-2014, at 12:11 pm, Akshay Mehta <me...@gmail.com> wrote:

Thank you guys for a quick response.

I am basically trying to ease out operations eg. Receipts and Payments (as I could only see Journal transaction having Bank Voucher in ERPNEXT). As not every person would be familiar with accounting principles, what to debit and what to credit. Therefore I was just trying to add simple Documents to achieve this. How can i do this in the best possible way? where do i start from? I want avoid creating a new app from the scratch.

Thanks
Akshay

On Mon, Jun 2, 2014 at 1:46 AM, Akshay Mehta <me...@gmail.com> wrote:

> Hi,

>

> I have just discovered this amazing software (ERPNEXT) and trying to evaluate it using the virtual image downloaded from the site .

>

> I wanted to add a new Doctype but everytime I try to create it, the system gives a error “not in developer mode”. Is the developer mode supported on this virtual machine? I even tried to alter site config json file (forgetting the actual name at the moment)

>

> Also I searched the forum and came across a post where there is guide to write entirely new app (in frappe.io library mgmt). My question is how can i just customize ERPNEXT and not write an entirly new App?

>



Hi Akshay,



Best way to add a new doctype would be by creating a new app (follow

https://frappe.io/apps/frappe-framework/developers/guide) because

otherwise you’ll be editing erpnext code and which is not recommended

as you’ll have to maintain a fork. Although, simple customizations

like, adding a field or customizing forms is supported out of the box

via GUI and doesn’t require any code change (stored in database).



You will have to add “developer_mode” as true in site_config.json.





Thanks,

Pratik



> Thanks

> Akshay

>

> –

> Note:

>

> If you are posting an issue,

> 1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.

> 2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email

> 3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.

>

> End of Note

> —

> 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 view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/7607bdc0-93fb-41e1-ae90-ee428399df91%40googlegroups.com.

> For more options, visit https://groups.google.com/d/optout.









Pratik

erpnext





Note:



If you are posting an issue,

  1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.
  2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email
  3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.



    End of Note



    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 view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/CAG8U0EmUi%3DByHsOqXWpyGLFEsCMZJUHcyf10f4CPXsHNrS3x7Q%40mail.gmail.com.

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




Note:

 

If you are posting an issue,

  1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.
  2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email
  3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.

     

    End of Note



    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 view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/CAMgq%3DkdmrVgWbG%3DTV8j_djhWuxDPPHxy5c2EcTFivsJ-EgRcaA%40mail.gmail.com.

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



Note:

 

If you are posting an issue,

  1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.
  2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email
  3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.

     

    End of Note



    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 view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/E06A76A7-3D42-4BDE-B3A2-0B074843D8D7%40gmail.com.

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

Thanks, I'll give it a try

On 2 Jun 2014 14:22, "Rushabh Mehta" <rm...@gmail.com> wrote:
Akshay,

Best to create a "Single" type DocType that will create a Journal Voucher in background.

You can create a Journal Voucher on server side using (verify fieldnames etc):

jv = frappe.new_doc("Journal Voucher")
jv.voucher_type = ..
jv.append("details", { .. }) // add rows
..
jv.insert()

Try pushing this in your fork - we can help you too, this has been on our list for quite sometime - we can then merge it in the product.

best,
Rushabh



@rushabh_mehta

On 02-Jun-2014, at 12:11 pm, Akshay Mehta <me...@gmail.com> wrote:

Thank you guys for a quick response.

I am basically trying to ease out operations eg. Receipts and Payments (as I could only see Journal transaction having Bank Voucher in ERPNEXT). As not every person would be familiar with accounting principles, what to debit and what to credit. Therefore I was just trying to add simple Documents to achieve this. How can i do this in the best possible way? where do i start from? I want avoid creating a new app from the scratch.

Thanks
Akshay

On Mon, Jun 2, 2014 at 1:46 AM, Akshay Mehta <me...@gmail.com> wrote:

> Hi,

>

> I have just discovered this amazing software (ERPNEXT) and trying to evaluate it using the virtual image downloaded from the site .

>

> I wanted to add a new Doctype but everytime I try to create it, the system gives a error "not in developer mode". Is the developer mode supported on this virtual machine? I even tried to alter site config json file (forgetting the actual name at the moment)

>

> Also I searched the forum and came across a post where there is guide to write entirely new app (in frappe.io library mgmt). My question is how can i just customize ERPNEXT and not write an entirly new App?

>



Hi Akshay,



Best way to add a new doctype would be by creating a new app (follow

https://frappe.io/apps/frappe-framework/developers/guide) because

otherwise you'll be editing erpnext code and which is not recommended

as you'll have to maintain a fork. Although, simple customizations

like, adding a field or customizing forms is supported out of the box

via GUI and doesn't require any code change (stored in database).



You will have to add "developer_mode" as true in site_config.json.





Thanks,

Pratik



> Thanks

> Akshay

>

> –

> Note:

>

> If you are posting an issue,

> 1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.

> 2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email

> 3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.

>

> End of Note

> —

> 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 view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/7607bdc0-93fb-41e1-ae90-ee428399df91%40googlegroups.com.

> For more options, visit https://groups.google.com/d/optout.









Pratik

erpnext





Note:



If you are posting an issue,

  1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.
  2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email
  3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.



    End of Note



    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 view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/CAG8U0EmUi%3DByHsOqXWpyGLFEsCMZJUHcyf10f4CPXsHNrS3x7Q%40mail.gmail.com.

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




Note:



If you are posting an issue,

  1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.
  2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email
  3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.



    End of Note



    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 view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/CAMgq%3DkdmrVgWbG%3DTV8j_djhWuxDPPHxy5c2EcTFivsJ-EgRcaA%40mail.gmail.com.

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




Note:



If you are posting an issue,

  1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.
  2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email
  3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.



    End of Note



    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 view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/E06A76A7-3D42-4BDE-B3A2-0B074843D8D7%40gmail.com.

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



Note:

 

If you are posting an issue,

  1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.
  2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email
  3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.

     

    End of Note



    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 view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/CAMgq%3DkfmU26g4S5iJxcOEnp3D-g_6NkS%2By1KHO0PJ1RTz%3Dro7Q%40mail.gmail.com.

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

Hi,

To start with I tried creating a very basic and simple Doctype through the core module (just to get a grip on how things work). But somehow it never appears on the desktop under any module.

Also i have tried to create a new App, the way it is described in the guide, with the same result. However here it shows under the file->new.

Nor does the new module def works and shows up on the desktop.

Which step am i missing?

Regards

On 2 Jun 2014 15:44, "Akshay Mehta" <me...@gmail.com> wrote:

Thanks, I'll give it a try

On 2 Jun 2014 14:22, "Rushabh Mehta" <rm...@gmail.com> wrote:
Akshay,

Best to create a "Single" type DocType that will create a Journal Voucher in background.

You can create a Journal Voucher on server side using (verify fieldnames etc):

jv = frappe.new_doc("Journal Voucher")
jv.voucher_type = ..
jv.append("details", { .. }) // add rows
..
jv.insert()

Try pushing this in your fork - we can help you too, this has been on our list for quite sometime - we can then merge it in the product.

best,
Rushabh

On 02-Jun-2014, at 12:11 pm, Akshay Mehta <me...@gmail.com> wrote:

Thank you guys for a quick response.

I am basically trying to ease out operations eg. Receipts and Payments (as I could only see Journal transaction having Bank Voucher in ERPNEXT). As not every person would be familiar with accounting principles, what to debit and what to credit. Therefore I was just trying to add simple Documents to achieve this. How can i do this in the best possible way? where do i start from? I want avoid creating a new app from the scratch.

Thanks
Akshay

On Mon, Jun 2, 2014 at 1:46 AM, Akshay Mehta <me...@gmail.com> wrote:

> Hi,

>

> I have just discovered this amazing software (ERPNEXT) and trying to evaluate it using the virtual image downloaded from the site .

>

> I wanted to add a new Doctype but everytime I try to create it, the system gives a error "not in developer mode". Is the developer mode supported on this virtual machine? I even tried to alter site config json file (forgetting the actual name at the moment)

>

> Also I searched the forum and came across a post where there is guide to write entirely new app (in frappe.io library mgmt). My question is how can i just customize ERPNEXT and not write an entirly new App?

>



Hi Akshay,



Best way to add a new doctype would be by creating a new app (follow

https://frappe.io/apps/frappe-framework/developers/guide) because

otherwise you'll be editing erpnext code and which is not recommended

as you'll have to maintain a fork. Although, simple customizations

like, adding a field or customizing forms is supported out of the box

via GUI and doesn't require any code change (stored in database).



You will have to add "developer_mode" as true in site_config.json.





Thanks,

Pratik



> Thanks

> Akshay

>

> –

> Note:

>

> If you are posting an issue,

> 1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.

> 2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email

> 3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.

>

> End of Note

> —

> 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 view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/7607bdc0-93fb-41e1-ae90-ee428399df91%40googlegroups.com.

> For more options, visit https://groups.google.com/d/optout.









Pratik

erpnext





Note:



If you are posting an issue,

  1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.
  2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email
  3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.



    End of Note



    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 view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/CAG8U0EmUi%3DByHsOqXWpyGLFEsCMZJUHcyf10f4CPXsHNrS3x7Q%40mail.gmail.com.

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




Note:



If you are posting an issue,

  1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.
  2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email
  3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.



    End of Note



    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 view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/CAMgq%3DkdmrVgWbG%3DTV8j_djhWuxDPPHxy5c2EcTFivsJ-EgRcaA%40mail.gmail.com.

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




Note:



If you are posting an issue,

  1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.
  2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email
  3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.



    End of Note



    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 view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/E06A76A7-3D42-4BDE-B3A2-0B074843D8D7%40gmail.com.

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



Note:

 

If you are posting an issue,

  1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.
  2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email
  3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.

     

    End of Note



    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 view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/CAMgq%3DkcUxKmMJ_4Yp-1bJZAR6dx4RDeVdpdB6WR0vHgqffTeUQ%40mail.gmail.com.

    For more options, visit https://groups.google.com/d/optout.
Did you give yourself permissions for the doc?



@rushabh_mehta

On 03-Jun-2014, at 5:51 pm, Akshay Mehta <me...@gmail.com> wrote:

Hi,

To start with I tried creating a very basic and simple Doctype through the core module (just to get a grip on how things work). But somehow it never appears on the desktop under any module.

Also i have tried to create a new App, the way it is described in the guide, with the same result. However here it shows under the file->new.

Nor does the new module def works and shows up on the desktop.

Which step am i missing?

Regards

On 2 Jun 2014 15:44, "Akshay Mehta" <me...@gmail.com> wrote:

Thanks, I'll give it a try

On 2 Jun 2014 14:22, "Rushabh Mehta" <rm...@gmail.com> wrote:
Akshay,

Best to create a "Single" type DocType that will create a Journal Voucher in background.

You can create a Journal Voucher on server side using (verify fieldnames etc):

jv = frappe.new_doc("Journal Voucher")
jv.voucher_type = ..
jv.append("details", { .. }) // add rows
..
jv.insert()

Try pushing this in your fork - we can help you too, this has been on our list for quite sometime - we can then merge it in the product.

best,
Rushabh

On 02-Jun-2014, at 12:11 pm, Akshay Mehta <me...@gmail.com> wrote:

Thank you guys for a quick response.

I am basically trying to ease out operations eg. Receipts and Payments (as I could only see Journal transaction having Bank Voucher in ERPNEXT). As not every person would be familiar with accounting principles, what to debit and what to credit. Therefore I was just trying to add simple Documents to achieve this. How can i do this in the best possible way? where do i start from? I want avoid creating a new app from the scratch.

Thanks
Akshay

On Mon, Jun 2, 2014 at 1:46 AM, Akshay Mehta <me...@gmail.com> wrote:

> Hi,

>

> I have just discovered this amazing software (ERPNEXT) and trying to evaluate it using the virtual image downloaded from the site .

>

> I wanted to add a new Doctype but everytime I try to create it, the system gives a error “not in developer mode”. Is the developer mode supported on this virtual machine? I even tried to alter site config json file (forgetting the actual name at the moment)

>

> Also I searched the forum and came across a post where there is guide to write entirely new app (in frappe.io library mgmt). My question is how can i just customize ERPNEXT and not write an entirly new App?

>



Hi Akshay,



Best way to add a new doctype would be by creating a new app (follow

https://frappe.io/apps/frappe-framework/developers/guide) because

otherwise you’ll be editing erpnext code and which is not recommended

as you’ll have to maintain a fork. Although, simple customizations

like, adding a field or customizing forms is supported out of the box

via GUI and doesn’t require any code change (stored in database).



You will have to add “developer_mode” as true in site_config.json.





Thanks,

Pratik



> Thanks

> Akshay

>

> –

> Note:

>

> If you are posting an issue,

> 1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.

> 2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email

> 3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.

>

> End of Note

> —

> 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 view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/7607bdc0-93fb-41e1-ae90-ee428399df91%40googlegroups.com.

> For more options, visit https://groups.google.com/d/optout.









Pratik

erpnext





Note:



If you are posting an issue,

  1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.
  2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email
  3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.



    End of Note



    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 view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/CAG8U0EmUi%3DByHsOqXWpyGLFEsCMZJUHcyf10f4CPXsHNrS3x7Q%40mail.gmail.com.

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




Note:

 

If you are posting an issue,

  1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.
  2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email
  3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.

     

    End of Note



    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 view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/CAMgq%3DkdmrVgWbG%3DTV8j_djhWuxDPPHxy5c2EcTFivsJ-EgRcaA%40mail.gmail.com.

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





Note:

 

If you are posting an issue,

  1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.
  2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email
  3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.

     

    End of Note



    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 view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/E06A76A7-3D42-4BDE-B3A2-0B074843D8D7%40gmail.com.

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




Note:

 

If you are posting an issue,

  1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.
  2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email
  3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.

     

    End of Note



    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 view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/CAMgq%3DkcUxKmMJ_4Yp-1bJZAR6dx4RDeVdpdB6WR0vHgqffTeUQ%40mail.gmail.com.

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



Note:

 

If you are posting an issue,

  1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.
  2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email
  3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.

     

    End of Note



    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 view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/3E080650-DE19-493B-BAFD-5C47A1F9806D%40gmail.com.

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

I gave permission to all.

Did you give yourself permissions for the doc?



@rushabh_mehta

On 03-Jun-2014, at 5:51 pm, Akshay Mehta <me...@gmail.com> wrote:

Hi,

To start with I tried creating a very basic and simple Doctype through the core module (just to get a grip on how things work). But somehow it never appears on the desktop under any module.

Also i have tried to create a new App, the way it is described in the guide, with the same result. However here it shows under the file->new.

Nor does the new module def works and shows up on the desktop.

Which step am i missing?

Regards

On 2 Jun 2014 15:44, "Akshay Mehta" <me...@gmail.com> wrote:

Thanks, I'll give it a try

On 2 Jun 2014 14:22, "Rushabh Mehta" <rm...@gmail.com> wrote:
Akshay,

Best to create a "Single" type DocType that will create a Journal Voucher in background.

You can create a Journal Voucher on server side using (verify fieldnames etc):

jv = frappe.new_doc("Journal Voucher")
jv.voucher_type = ..
jv.append("details", { .. }) // add rows
..
jv.insert()

Try pushing this in your fork - we can help you too, this has been on our list for quite sometime - we can then merge it in the product.

best,
Rushabh

On 02-Jun-2014, at 12:11 pm, Akshay Mehta <me...@gmail.com> wrote:

Thank you guys for a quick response.

I am basically trying to ease out operations eg. Receipts and Payments (as I could only see Journal transaction having Bank Voucher in ERPNEXT). As not every person would be familiar with accounting principles, what to debit and what to credit. Therefore I was just trying to add simple Documents to achieve this. How can i do this in the best possible way? where do i start from? I want avoid creating a new app from the scratch.

Thanks
Akshay

On Mon, Jun 2, 2014 at 1:46 AM, Akshay Mehta <me...@gmail.com> wrote:

> Hi,

>

> I have just discovered this amazing software (ERPNEXT) and trying to evaluate it using the virtual image downloaded from the site .

>

> I wanted to add a new Doctype but everytime I try to create it, the system gives a error "not in developer mode". Is the developer mode supported on this virtual machine? I even tried to alter site config json file (forgetting the actual name at the moment)

>

> Also I searched the forum and came across a post where there is guide to write entirely new app (in frappe.io library mgmt). My question is how can i just customize ERPNEXT and not write an entirly new App?

>



Hi Akshay,



Best way to add a new doctype would be by creating a new app (follow

https://frappe.io/apps/frappe-framework/developers/guide) because

otherwise you'll be editing erpnext code and which is not recommended

as you'll have to maintain a fork. Although, simple customizations

like, adding a field or customizing forms is supported out of the box

via GUI and doesn't require any code change (stored in database).



You will have to add "developer_mode" as true in site_config.json.





Thanks,

Pratik



> Thanks

> Akshay

>

> –

> Note:

>

> If you are posting an issue,

> 1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.

> 2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email

> 3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.

>

> End of Note

> —

> 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 view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/7607bdc0-93fb-41e1-ae90-ee428399df91%40googlegroups.com.

> For more options, visit https://groups.google.com/d/optout.









Pratik

erpnext





Note:



If you are posting an issue,

  1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.
  2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email
  3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.



    End of Note



    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 view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/CAG8U0EmUi%3DByHsOqXWpyGLFEsCMZJUHcyf10f4CPXsHNrS3x7Q%40mail.gmail.com.

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




Note:



If you are posting an issue,

  1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.
  2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email
  3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.



    End of Note



    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 view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/CAMgq%3DkdmrVgWbG%3DTV8j_djhWuxDPPHxy5c2EcTFivsJ-EgRcaA%40mail.gmail.com.

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





Note:



If you are posting an issue,

  1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.
  2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email
  3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.



    End of Note



    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 view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/E06A76A7-3D42-4BDE-B3A2-0B074843D8D7%40gmail.com.

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




Note:



If you are posting an issue,

  1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.
  2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email
  3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.



    End of Note



    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 view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/CAMgq%3DkcUxKmMJ_4Yp-1bJZAR6dx4RDeVdpdB6WR0vHgqffTeUQ%40mail.gmail.com.

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




Note:



If you are posting an issue,

  1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.
  2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email
  3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.



    End of Note



    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 view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/3E080650-DE19-493B-BAFD-5C47A1F9806D%40gmail.com.

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



Note:

 

If you are posting an issue,

  1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.
  2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email
  3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.

     

    End of Note



    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 view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/CAMgq%3Dke_ik3oYi_ifoGKuP-oFzDGiSW%3Dag_udQnDuwP4xFwjiA%40mail.gmail.com.

    For more options, visit https://groups.google.com/d/optout.
Did you update conf/desktop.py like:

https://github.com/frappe/website-chat/blob/master/website_chat/config/desktop.py



@rushabh_mehta
https://erpnext.org

On 03-Jun-2014, at 7:45 pm, Akshay Mehta <me...@gmail.com> wrote:

I gave permission to all.

Did you give yourself permissions for the doc?



@rushabh_mehta

On 03-Jun-2014, at 5:51 pm, Akshay Mehta <me...@gmail.com> wrote:

Hi,

To start with I tried creating a very basic and simple Doctype through the core module (just to get a grip on how things work). But somehow it never appears on the desktop under any module.

Also i have tried to create a new App, the way it is described in the guide, with the same result. However here it shows under the file->new.

Nor does the new module def works and shows up on the desktop.

Which step am i missing?

Regards

On 2 Jun 2014 15:44, "Akshay Mehta" <me...@gmail.com> wrote:

Thanks, I'll give it a try

On 2 Jun 2014 14:22, "Rushabh Mehta" <rm...@gmail.com> wrote:
Akshay,

Best to create a "Single" type DocType that will create a Journal Voucher in background.

You can create a Journal Voucher on server side using (verify fieldnames etc):

jv = frappe.new_doc("Journal Voucher")
jv.voucher_type = ..
jv.append("details", { .. }) // add rows
..
jv.insert()

Try pushing this in your fork - we can help you too, this has been on our list for quite sometime - we can then merge it in the product.

best,
Rushabh

On 02-Jun-2014, at 12:11 pm, Akshay Mehta <me...@gmail.com> wrote:

Thank you guys for a quick response.

I am basically trying to ease out operations eg. Receipts and Payments (as I could only see Journal transaction having Bank Voucher in ERPNEXT). As not every person would be familiar with accounting principles, what to debit and what to credit. Therefore I was just trying to add simple Documents to achieve this. How can i do this in the best possible way? where do i start from? I want avoid creating a new app from the scratch.

Thanks
Akshay

On Mon, Jun 2, 2014 at 1:46 AM, Akshay Mehta <me...@gmail.com> wrote:

> Hi,

>

> I have just discovered this amazing software (ERPNEXT) and trying to evaluate it using the virtual image downloaded from the site .

>

> I wanted to add a new Doctype but everytime I try to create it, the system gives a error “not in developer mode”. Is the developer mode supported on this virtual machine? I even tried to alter site config json file (forgetting the actual name at the moment)

>

> Also I searched the forum and came across a post where there is guide to write entirely new app (in frappe.io library mgmt). My question is how can i just customize ERPNEXT and not write an entirly new App?

>



Hi Akshay,



Best way to add a new doctype would be by creating a new app (follow

https://frappe.io/apps/frappe-framework/developers/guide) because

otherwise you’ll be editing erpnext code and which is not recommended

as you’ll have to maintain a fork. Although, simple customizations

like, adding a field or customizing forms is supported out of the box

via GUI and doesn’t require any code change (stored in database).



You will have to add “developer_mode” as true in site_config.json.





Thanks,

Pratik



> Thanks

> Akshay

>

> –

> Note:

>

> If you are posting an issue,

> 1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.

> 2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email

> 3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.

>

> End of Note

> —

> 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 view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/7607bdc0-93fb-41e1-ae90-ee428399df91%40googlegroups.com.

> For more options, visit https://groups.google.com/d/optout.









Pratik

erpnext





Note:



If you are posting an issue,

  1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.
  2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email
  3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.



    End of Note



    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 view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/CAG8U0EmUi%3DByHsOqXWpyGLFEsCMZJUHcyf10f4CPXsHNrS3x7Q%40mail.gmail.com.

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




Note:

 

If you are posting an issue,

  1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.
  2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email
  3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.

     

    End of Note



    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 view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/CAMgq%3DkdmrVgWbG%3DTV8j_djhWuxDPPHxy5c2EcTFivsJ-EgRcaA%40mail.gmail.com.

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





Note:

 

If you are posting an issue,

  1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.
  2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email
  3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.

     

    End of Note



    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 view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/E06A76A7-3D42-4BDE-B3A2-0B074843D8D7%40gmail.com.

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




Note:

 

If you are posting an issue,

  1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.
  2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email
  3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.

     

    End of Note



    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 view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/CAMgq%3DkcUxKmMJ_4Yp-1bJZAR6dx4RDeVdpdB6WR0vHgqffTeUQ%40mail.gmail.com.

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





Note:

 

If you are posting an issue,

  1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.
  2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email
  3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.

     

    End of Note



    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 view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/3E080650-DE19-493B-BAFD-5C47A1F9806D%40gmail.com.

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




Note:

 

If you are posting an issue,

  1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.
  2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email
  3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.

     

    End of Note



    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 view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/CAMgq%3Dke_ik3oYi_ifoGKuP-oFzDGiSW%3Dag_udQnDuwP4xFwjiA%40mail.gmail.com.

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



Note:

 

If you are posting an issue,

  1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.
  2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email
  3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.

     

    End of Note



    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 view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/4327CD94-92E9-4DFB-8488-3FE986D865B9%40gmail.com.

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