What's erpnext equivalent to formula or calculated fields?

Hi,

I want to add a custom field to the Item doctype that is a calculated field. It is the product of the multiplication of two other fields on the same object.

Here's an example where I have two custom fields on Item:
width_mm
height_mm

I want to add a new field called area which is the product of width_mm * height_mm

What's the erpnext way of achieving this?
Thanks,
-Jev



You received this message because you are subscribed to the Google Groups "ERPNext User's Forum" group.

To unsubscribe from this group and stop receiving emails from it, send an email to erpnext-user-forum+un...@googlegroups.com.

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

you can add a custom script inside the your calculation fields
base
:

function compute(doc, cdt, cdn){
    if (doc.width_mm && doc.height_mm){ //it's check if the fields contains a value
        doc.result_field = doc.width_mm * doc.height_mm;
    }
}

cur_frm.cscript.custom_width_mm = compute;
cur_frm.cscript.custom_height_mm = compute;



2013/12/30 Jev Björsell <eb...@gmail.com>
Hi,

I want to add a custom field to the Item doctype that is a calculated field. It is the product of the multiplication of two other fields on the same object.

Here's an example where I have two custom fields on Item:
width_mm
height_mm

I want to add a new field called area which is the product of width_mm * height_mm

What's the erpnext way of achieving this?

Thanks,

-Jev



You received this message because you are subscribed to the Google Groups "ERPNext User's Forum" group.

To unsubscribe from this group and stop receiving emails from it, send an email to erpnext-user-forum+un…@googlegroups.com.

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






Maxwell Morais

Tecnologia da Informação
+55 11 3931-1412 Ramal 31

www.realizemodulados.com.br



You received this message because you are subscribed to the Google Groups "ERPNext User's Forum" group.

To unsubscribe from this group and stop receiving emails from it, send an email to erpnext-user-forum+un...@googlegroups.com.

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

Thank you Maxwell.

It is worth noting that this approach will allow the area to be calculated when a user is using the web-interface, but if we a record is created by the API then this calculation will be skipped.

-Jev



On Monday, December 30, 2013 9:06:30 AM UTC-8, Maxwell wrote:

you can add a custom script inside the your calculation fields
base
:

function compute(doc, cdt, cdn){
    if (doc.width_mm && doc.height_mm){ //it's check if the fields contains a value
        doc.result_field = doc.width_mm * doc.height_mm;
    }
}

cur_frm.cscript.custom_width_mm = compute;
cur_frm.cscript.custom_height_mm = compute;



2013/12/30 Jev Björsell <eb...@gmail.com>
Hi,

I want to add a custom field to the Item doctype that is a calculated field. It is the product of the multiplication of two other fields on the same object.

Here's an example where I have two custom fields on Item:
width_mm
height_mm

I want to add a new field called area which is the product of width_mm * height_mm

What's the erpnext way of achieving this?

Thanks,

-Jev



You received this message because you are subscribed to the Google Groups “ERPNext User’s Forum” group.

To unsubscribe from this group and stop receiving emails from it, send an email to erpnext-user-forum+un…@googlegroups.com.

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






Maxwell Morais

Tecnologia da Informação
+55 11 3931-1412 Ramal 31

 www.realizemodulados.com.br



You received this message because you are subscribed to the Google Groups "ERPNext User's Forum" group.

To unsubscribe from this group and stop receiving emails from it, send an email to erpnext-user-forum+un...@googlegroups.com.

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

Hi, Jev! You are right!

You must edit the code controler, in “mydoctype.py” i.e “accounts/doctype/account/account.py”

You must a custom code, inside the Doctype class

It is interesting that at the time of your validation function is called, see the code below.

https://github.com/webnotes/erpnext/blob/develop/accounts/doctype/account/account.py#L28

I refer to the validation because it does not matter if your doctype is being created or updated.

Your code would look something like below


from webnotes import cflt

class DocType:
def validate(self):

self.compute()

<span class="function"><span class="keyword" style="color:rgb(51,51,51);font-weight:bold">def</span> <span class="title" style="color:rgb(153,0,0);font-weight:bold">compute</span><span class="params">(self)</span>:</span>
    <span class="keyword" style="color:rgb(51,51,51);font-weight:bold">if</span> <span class="keyword" style="color:rgb(51,51,51);font-weight:bold">not</span> self.doc.height_mm <span class="keyword" style="color:rgb(51,51,51);font-weight:bold">or</span> <span class="keyword" style="color:rgb(51,51,51);font-weight:bold">not</span> self.doc.width_mm:
        msgprint(_(<span class="string" style="color:rgb(221,17,68)">&#39;Please, input the width and the height!&#39;</span>), raise_exception=<span class="number" style="color:rgb(0,153,153)">1</span>) 
       <span class="comment" style="color:rgb(153,153,136);font-style:italic"># raise_exception=1 stops the code, and raise the error</span>
    self.doc.computed_field = cflt(self.doc.width_mm) * cflt(self.doc.height_mm)</code></pre>


2013/12/30 Jev Björsell <eb...@gmail.com>
Thank you Maxwell.

It is worth noting that this approach will allow the area to be calculated when a user is using the web-interface, but if we a record is created by the API then this calculation will be skipped.

-Jev



On Monday, December 30, 2013 9:06:30 AM UTC-8, Maxwell wrote:

you can add a custom script inside the your calculation fields
base
:

function compute(doc, cdt, cdn){
    if (doc.width_mm && doc.height_mm){ //it's check if the fields contains a value
        doc.result_field = doc.width_mm * doc.height_mm;
    }
}

cur_frm.cscript.custom_width_mm = compute;
cur_frm.cscript.custom_height_mm = compute;



2013/12/30 Jev Björsell <eb...@gmail.com>

Hi,

I want to add a custom field to the Item doctype that is a calculated field. It is the product of the multiplication of two other fields on the same object.

Here's an example where I have two custom fields on Item:

width_mm
height_mm

I want to add a new field called area which is the product of width_mm * height_mm

What's the erpnext way of achieving this?

Thanks,

-Jev



You received this message because you are subscribed to the Google Groups "ERPNext User's Forum" group.

To unsubscribe from this group and stop receiving emails from it, send an email to erpnext-user-forum+un…@googlegroups.com.

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






Maxwell Morais

Tecnologia da Informação



You received this message because you are subscribed to the Google Groups "ERPNext User's Forum" group.

To unsubscribe from this group and stop receiving emails from it, send an email to erpnext-user-forum+un…@googlegroups.com.

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




--

Maxwell Morais
Tecnologia da Informação
+55 11 3931-1412 Ramal 31

www.realizemodulados.com.br



You received this message because you are subscribed to the Google Groups "ERPNext User's Forum" group.

To unsubscribe from this group and stop receiving emails from it, send an email to erpnext-user-forum+un...@googlegroups.com.

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

Thank you Maxwell, this is very useful, you saved me some time!

I may try and get by without the server side modifications until 4.0 lands, and there I'll try to do it with a custom module. I think this will be easier to maintain as more updates come down the line.

-Jev

On Monday, December 30, 2013 10:38:09 AM UTC-8, Maxwell wrote:

Hi, Jev! You are right!

You must edit the code controler, in “mydoctype.py” i.e “accounts/doctype/account/account.py”

You must a custom code, inside the Doctype class

It is interesting that at the time of your validation function is called, see the code below.

https://github.com/webnotes/erpnext/blob/develop/accounts/doctype/account/account.py#L28

I refer to the validation because it does not matter if your doctype is being created or updated.

Your code would look something like below


from webnotes import cflt

class DocType:
def validate(self):

self.compute()

<span><span style="color:rgb(51,51,51);font-weight:bold">def</span> <span style="color:rgb(153,0,0);font-weight:bold">compute</span><span>(self)</span>:</span>
    <span style="color:rgb(51,51,51);font-weight:bold">if</span> <span style="color:rgb(51,51,51);font-weight:bold">not</span> self.doc.height_mm <span style="color:rgb(51,51,51);font-weight:bold">or</span> <span style="color:rgb(51,51,51);font-weight:bold">not</span> self.doc.width_mm:
        msgprint(_(<span style="color:rgb(221,17,68)">'Please, input the width and the height!'</span>), raise_exception=<span style="color:rgb(0,153,153)">1</span>) 
       <span style="color:rgb(153,153,136);font-style:italic"># raise_exception=1 stops the code, and raise the error</span>
    self.doc.computed_field = cflt(self.doc.width_mm) * cflt(self.doc.height_mm)</code></pre>


2013/12/30 Jev Björsell <eb...@gmail.com>
Thank you Maxwell.

It is worth noting that this approach will allow the area to be calculated when a user is using the web-interface, but if we a record is created by the API then this calculation will be skipped.

-Jev



On Monday, December 30, 2013 9:06:30 AM UTC-8, Maxwell wrote:

you can add a custom script inside the your calculation fields
base
:

function compute(doc, cdt, cdn){
    if (doc.width_mm && doc.height_mm){ //it's check if the fields contains a value
        doc.result_field = doc.width_mm * doc.height_mm;
    }
}

cur_frm.cscript.custom_width_mm = compute;
cur_frm.cscript.custom_height_mm = compute;



2013/12/30 Jev Björsell <eb...@gmail.com>

Hi,

I want to add a custom field to the Item doctype that is a calculated field. It is the product of the multiplication of two other fields on the same object.

Here’s an example where I have two custom fields on Item:

width_mm
height_mm

I want to add a new field called area which is the product of width_mm * height_mm

What's the erpnext way of achieving this?

Thanks,

-Jev



You received this message because you are subscribed to the Google Groups “ERPNext User’s Forum” group.

To unsubscribe from this group and stop receiving emails from it, send an email to erpnext-user-forum+unsubscribe@googlegroups.com.

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






Maxwell Morais

Tecnologia da Informação



You received this message because you are subscribed to the Google Groups “ERPNext User’s Forum” group.

To unsubscribe from this group and stop receiving emails from it, send an email to erpnext-user-forum+un…@googlegroups.com.

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




--

Maxwell Morais
Tecnologia da Informação
+55 11 3931-1412 Ramal 31

 www.realizemodulados.com.br



You received this message because you are subscribed to the Google Groups "ERPNext User's Forum" group.

To unsubscribe from this group and stop receiving emails from it, send an email to erpnext-user-forum+un...@googlegroups.com.

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

Yes in 4.0.0, all your customizations will be a part of your own "app" - this will also make them easily deployable.

Then via hooks.txt you can listen on events.

Checkout how we stripped out the "demo" from erpnext

https://github.com/webnotes/erpnext-demo/



On Tuesday, December 31, 2013 12:19:32 AM UTC+5:30, Jev Björsell wrote:
Thank you Maxwell, this is very useful, you saved me some time!

I may try and get by without the server side modifications until 4.0 lands, and there I'll try to do it with a custom module. I think this will be easier to maintain as more updates come down the line.

-Jev




You received this message because you are subscribed to the Google Groups "ERPNext User's Forum" group.

To unsubscribe from this group and stop receiving emails from it, send an email to erpnext-user-forum+un...@googlegroups.com.

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

Very nice.

Can we create custom fields on existing objects?
How/where do we put unit tests and integration tests?

If 4.0 was available now, and stable, I would consider writing my data migration scripts as a module. I would have it set up all my custom fields, and import all my data (from salesforce export files). With unit tests, and integration tests, I would be able to set up and tear down a new instance of erpnext with one command, and use that for UAT. I would have a very tight loop for user feed back.

My current situation is that I have done a lot of setup manually, and I'm afraid of breaking something. Writing all my migration scripts would make starting from scratch very cheap for me. :)

Do you have a target/hopeful date for releasing 4.0?

Thanks,
-Jev






On Tue, Dec 31, 2013 at 5:11 PM, Rushabh Mehta <rm...@gmail.com> wrote:
Yes in 4.0.0, all your customizations will be a part of your own "app" - this will also make them easily deployable.

Then via hooks.txt you can listen on events.

Checkout how we stripped out the "demo" from erpnext




On Tuesday, December 31, 2013 12:19:32 AM UTC+5:30, Jev Björsell wrote:
Thank you Maxwell, this is very useful, you saved me some time!

I may try and get by without the server side modifications until 4.0 lands, and there I'll try to do it with a custom module. I think this will be easier to maintain as more updates come down the line.

-Jev




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

To unsubscribe from this topic, visit https://groups.google.com/d/topic/erpnext-user-forum/TLhFXnBiWS0/unsubscribe.

To unsubscribe from this group and all its topics, send an email to erpnext-user-forum+un…@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 User's Forum" group.

To unsubscribe from this group and stop receiving emails from it, send an email to erpnext-user-forum+un...@googlegroups.com.

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

Jev,

We are almost there in terms of development. Since we have changed method routing (all methods are now "erpnext.selling.." instead of "selling.." we need to do a full round of manual testing. Let me check internally how fast we can put out a release candidate.

We are also taking the opportunity to break up the core accounting / selling code into functional elements (right it is not very easy to figure the class hierarchy and debug). We were hoping to put this in with the release.

Thanks for the reminder - We will have a discussion on this soon.

Also Max has been trying out 4 - will be happy to get his views on how quickly we can release.

Max - can you weigh in?

best,
Rushabh




On Thursday, January 2, 2014 8:24:03 AM UTC+5:30, Jev Björsell wrote:
Very nice.

Can we create custom fields on existing objects?
How/where do we put unit tests and integration tests?

If 4.0 was available now, and stable, I would consider writing my data migration scripts as a module. I would have it set up all my custom fields, and import all my data (from salesforce export files). With unit tests, and integration tests, I would be able to set up and tear down a new instance of erpnext with one command, and use that for UAT. I would have a very tight loop for user feed back.

My current situation is that I have done a lot of setup manually, and I'm afraid of breaking something. Writing all my migration scripts would make starting from scratch very cheap for me. :)

Do you have a target/hopeful date for releasing 4.0?

Thanks,
-Jev







You received this message because you are subscribed to the Google Groups "ERPNext User's Forum" group.

To unsubscribe from this group and stop receiving emails from it, send an email to erpnext-user-forum+un...@googlegroups.com.

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

I've been watching and experiencing each new feature ERPNext assiduously.

Before even venturing out for 4.0.0, I was already excited with the customized server scripts that allow a breakdown of my code out of ERPNext.


Compared to 4.0.0, I'm crawling, but I see great facilities such as triggers in hooks.txt, and breaking modules in applications.

Jev, in my view, you can start your migration to 4.0.0 right now even with the custom scripts served.

This will create a folder called plugins in your repository, within it, you can migrate your customizations through inheritance, replacing or extending the DocTypes.

You can also add custom javascript code, following the same pattern Client Custom Code (cur_frm.cscript.custom_method).

Your tests, unit may be included in your own customization.

In my view, you just need to validate your changes, on the premise that the code ERPNext is guaranteed as tested.

Integration tests are, in my view a desired future for all. But it's still a bit early to talk about something.

I've had my experiences, and still realize basic integration testing through Salad (https://github.com/salad/salad), ie https://gist.github.com/MaxMorais/7464629

But in my opinion, is kind of hard to talk about integration testing, given that I needed to make some changes in my fork, to allow such integrations.

Jev, honestly, after 1 year and a half working with ERPNext, I can assure you one thing.

As much as the future of 4.0.0 is a grand promise, and that will bring major changes in the last fork 3.x, has all the necessary resources to prepare you safely to 4.0.0.


Looking a little content posted here by Pratik Vidias, if you have the opportunity, talk a few minutes with him on Plugins 3.x, and you'll notice that already has the necessary to start to change.





2014/1/3 Rushabh Mehta <rm…@gmail.com>

Jev,

We are almost there in terms of development. Since we have changed method routing (all methods are now "erpnext.selling.." instead of "selling.." we need to do a full round of manual testing. Let me check internally how fast we can put out a release candidate.

We are also taking the opportunity to break up the core accounting / selling code into functional elements (right it is not very easy to figure the class hierarchy and debug). We were hoping to put this in with the release.

Thanks for the reminder - We will have a discussion on this soon.

Also Max has been trying out 4 - will be happy to get his views on how quickly we can release.

Max - can you weigh in?

best,
Rushabh




On Thursday, January 2, 2014 8:24:03 AM UTC+5:30, Jev Björsell wrote:
Very nice.

Can we create custom fields on existing objects?
How/where do we put unit tests and integration tests?

If 4.0 was available now, and stable, I would consider writing my data migration scripts as a module. I would have it set up all my custom fields, and import all my data (from salesforce export files). With unit tests, and integration tests, I would be able to set up and tear down a new instance of erpnext with one command, and use that for UAT. I would have a very tight loop for user feed back.

My current situation is that I have done a lot of setup manually, and I'm afraid of breaking something. Writing all my migration scripts would make starting from scratch very cheap for me. :)

Do you have a target/hopeful date for releasing 4.0?

Thanks,
-Jev







You received this message because you are subscribed to the Google Groups "ERPNext User's Forum" group.

To unsubscribe from this group and stop receiving emails from it, send an email to erpnext-user-forum+un…@googlegroups.com.

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




--

Maxwell Morais
Tecnologia da Informação
+55 11 3931-1412 Ramal 31

www.realizemodulados.com.br



You received this message because you are subscribed to the Google Groups "ERPNext User's Forum" group.

To unsubscribe from this group and stop receiving emails from it, send an email to erpnext-user-forum+un...@googlegroups.com.

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

Thanks Max for the positive feedback :)

We are excited too about version 4. I think it will also release a lot of energy for us.... Jev here is a getting started doc:

https://github.com/webnotes/wnframework/wiki/Getting-Started-With-App-Development-4.0.0

Please post if you have any questions.


On Friday, January 3, 2014 5:26:26 PM UTC+5:30, Maxwell wrote:
I've been watching and experiencing each new feature ERPNext assiduously.

Before even venturing out for 4.0.0, I was already excited with the customized server scripts that allow a breakdown of my code out of ERPNext.


Compared to 4.0.0, I'm crawling, but I see great facilities such as triggers in hooks.txt, and breaking modules in applications.

Jev, in my view, you can start your migration to 4.0.0 right now even with the custom scripts served.

This will create a folder called plugins in your repository, within it, you can migrate your customizations through inheritance, replacing or extending the DocTypes.

You can also add custom javascript code, following the same pattern Client Custom Code (cur_frm.cscript.custom_method).

Your tests, unit may be included in your own customization.

In my view, you just need to validate your changes, on the premise that the code ERPNext is guaranteed as tested.

Integration tests are, in my view a desired future for all. But it's still a bit early to talk about something.

I've had my experiences, and still realize basic integration testing through Salad (https://github.com/salad/salad), ie https://gist.github.com/MaxMorais/7464629

But in my opinion, is kind of hard to talk about integration testing, given that I needed to make some changes in my fork, to allow such integrations.

Jev, honestly, after 1 year and a half working with ERPNext, I can assure you one thing.

As much as the future of 4.0.0 is a grand promise, and that will bring major changes in the last fork 3.x, has all the necessary resources to prepare you safely to 4.0.0.


Looking a little content posted here by Pratik Vidias, if you have the opportunity, talk a few minutes with him on Plugins 3.x, and you’ll notice that already has the necessary to start to change.





2014/1/3 Rushabh Mehta <rm…@gmail.com>

Jev,

We are almost there in terms of development. Since we have changed method routing (all methods are now "erpnext.selling.." instead of "selling.." we need to do a full round of manual testing. Let me check internally how fast we can put out a release candidate.

We are also taking the opportunity to break up the core accounting / selling code into functional elements (right it is not very easy to figure the class hierarchy and debug). We were hoping to put this in with the release.

Thanks for the reminder - We will have a discussion on this soon.

Also Max has been trying out 4 - will be happy to get his views on how quickly we can release.

Max - can you weigh in?

best,
Rushabh




On Thursday, January 2, 2014 8:24:03 AM UTC+5:30, Jev Björsell wrote:
Very nice.

Can we create custom fields on existing objects?
How/where do we put unit tests and integration tests?

If 4.0 was available now, and stable, I would consider writing my data migration scripts as a module. I would have it set up all my custom fields, and import all my data (from salesforce export files). With unit tests, and integration tests, I would be able to set up and tear down a new instance of erpnext with one command, and use that for UAT. I would have a very tight loop for user feed back.

My current situation is that I have done a lot of setup manually, and I'm afraid of breaking something. Writing all my migration scripts would make starting from scratch very cheap for me. :)

Do you have a target/hopeful date for releasing 4.0?

Thanks,
-Jev







You received this message because you are subscribed to the Google Groups “ERPNext User’s Forum” group.

To unsubscribe from this group and stop receiving emails from it, send an email to erpnext-user-forum+un…@googlegroups.com.

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




--

Maxwell Morais
Tecnologia da Informação
+55 11 3931-1412 Ramal 31

 www.realizemodulados.com.br



You received this message because you are subscribed to the Google Groups "ERPNext User's Forum" group.

To unsubscribe from this group and stop receiving emails from it, send an email to erpnext-user-forum+un...@googlegroups.com.

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

Thanks for all the great information guys. I'm looking forward to it.

I'm going to stick with the 3.X branch for now, as getting live on ERPNext is the priority, and I don't want to add risk from a pre-release version.

On Friday, January 3, 2014 9:33:02 PM UTC-8, Rushabh Mehta wrote:
Thanks Max for the positive feedback :)

We are excited too about version 4. I think it will also release a lot of energy for us.... Jev here is a getting started doc:


Please post if you have any questions.


On Friday, January 3, 2014 5:26:26 PM UTC+5:30, Maxwell wrote:
I've been watching and experiencing each new feature ERPNext assiduously.

Before even venturing out for 4.0.0, I was already excited with the customized server scripts that allow a breakdown of my code out of ERPNext.


Compared to 4.0.0, I'm crawling, but I see great facilities such as triggers in hooks.txt, and breaking modules in applications.

Jev, in my view, you can start your migration to 4.0.0 right now even with the custom scripts served.

This will create a folder called plugins in your repository, within it, you can migrate your customizations through inheritance, replacing or extending the DocTypes.

You can also add custom javascript code, following the same pattern Client Custom Code (cur_frm.cscript.custom_method).

Your tests, unit may be included in your own customization.

In my view, you just need to validate your changes, on the premise that the code ERPNext is guaranteed as tested.

Integration tests are, in my view a desired future for all. But it's still a bit early to talk about something.

I've had my experiences, and still realize basic integration testing through Salad (https://github.com/salad/salad), ie https://gist.github.com/MaxMorais/7464629

But in my opinion, is kind of hard to talk about integration testing, given that I needed to make some changes in my fork, to allow such integrations.

Jev, honestly, after 1 year and a half working with ERPNext, I can assure you one thing.

As much as the future of 4.0.0 is a grand promise, and that will bring major changes in the last fork 3.x, has all the necessary resources to prepare you safely to 4.0.0.


Looking a little content posted here by Pratik Vidias, if you have the opportunity, talk a few minutes with him on Plugins 3.x, and you’ll notice that already has the necessary to start to change.





2014/1/3 Rushabh Mehta <rm…@gmail.com>

Jev,

We are almost there in terms of development. Since we have changed method routing (all methods are now "erpnext.selling.." instead of "selling.." we need to do a full round of manual testing. Let me check internally how fast we can put out a release candidate.

We are also taking the opportunity to break up the core accounting / selling code into functional elements (right it is not very easy to figure the class hierarchy and debug). We were hoping to put this in with the release.

Thanks for the reminder - We will have a discussion on this soon.

Also Max has been trying out 4 - will be happy to get his views on how quickly we can release.

Max - can you weigh in?

best,
Rushabh




On Thursday, January 2, 2014 8:24:03 AM UTC+5:30, Jev Björsell wrote:
Very nice.

Can we create custom fields on existing objects?
How/where do we put unit tests and integration tests?

If 4.0 was available now, and stable, I would consider writing my data migration scripts as a module. I would have it set up all my custom fields, and import all my data (from salesforce export files). With unit tests, and integration tests, I would be able to set up and tear down a new instance of erpnext with one command, and use that for UAT. I would have a very tight loop for user feed back.

My current situation is that I have done a lot of setup manually, and I'm afraid of breaking something. Writing all my migration scripts would make starting from scratch very cheap for me. :)

Do you have a target/hopeful date for releasing 4.0?

Thanks,
-Jev







You received this message because you are subscribed to the Google Groups “ERPNext User’s Forum” group.

To unsubscribe from this group and stop receiving emails from it, send an email to erpnext-user-forum+un…@googlegroups.com.

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




--

Maxwell Morais
Tecnologia da Informação
+55 11 3931-1412 Ramal 31

 www.realizemodulados.com.br



You received this message because you are subscribed to the Google Groups "ERPNext User's Forum" group.

To unsubscribe from this group and stop receiving emails from it, send an email to erpnext-user-forum+un...@googlegroups.com.

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