When you get the an error message that DocType POS Offer Detail not found, you are most likely missing POS Awesome app in your instance. All you need to do is get it installed.
Related Posts
Assigning a Value to a Child Table Field in Frappe or ERPNext
When working with child tables in the Frappe Framework or ERPNext, some functionalities that work out of the box with other DocTypes that aren’t child tables may prove to be a pain. In this tutorial, I will quickly brush through the following: How to listen to the add-row event in a child table How to […]
ERPNext Error After Install – 127.0.0.1 does not exist
Sometimes, even after a successful installation of ERPNext, the instance won’t load on the browser. The instance starts well on the terminal but on accessing the browser, you get a message that the address 127.0.0.1 is not found. The problem most of the time is a missing currentsite.txt file. This blog post will help you […]
Adding Custom Fields to Existing DocTypes in ERPNext
This tutorial demonstrated how we can add custom fields to existing DocTypes in ERPNext and/or the Frappe Framework. In this , we will cover the following: Add custom fields to existing ERPNext DocTpes Prepare hooks.py file to accept fixtures Export fixtures to capture custom fields in the file system for ease of management via GitHub.