I am trying to do a bit of customization in existing ERPNext app. Where am i supposed to put my server side scripts ? Say for example i want to make slight changes in behavior of production order and quality inspection doctypes do I modify existing production_order.py and quality_inspection.py or those scripts are to be written in some custom location.
It would be better if you could guide me to some tutorial on this. Thanks in advance.
@ajaygupta since you can handle all your customized script(client, server both) in your custom app. you can go handle hooks event and ajax to manipulate your own customization. for creating your own app go to following link
@khushal_t thanks for your reply . Actually i am interested only in minor customization in ERPNext app and not in developing a new app.
@ajaygupta you can have your file in existing erpnext app,you will have to handle doc events in hooks.py if your on them .