Skip to content

fgiering/ERPNextJumpStart

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 

Repository files navigation

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.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published