mohsinalimat / ERPNextJumpStart

A collection of links for jump starting in ERPNext Development.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ERPNextJumpStart

A collection of links for jump starting in ERPNext Development.

Tutorial Methods

Install

First Steps

Fields

  • Overview Field Types
  • Link Fields
  • Child Tables
    • create a DocType with ticked "Is ChildTable"
    • create a field in other DocType of type "Link" (link one Entitiy) or "Table" (link multiple Entities)
    • add ChildTable DocType Name in "Options"

DocTypes

  • Linked Documents
  • Add Action to DocType Listview:
    • Add Client Script on "List" with:
 onload: function(frm) {
	 frm.page.add_action_item(__("Test option"), function() {
    	test( frm );
    });
  }
};

function test( frm )
  {
    frappe.msgprint("Test passed");
  }

Scripts

Reports

API

About

A collection of links for jump starting in ERPNext Development.