Created new doc type and new form, how do I get to the form to enter info?

I created new doc type and new form, how do I get to the form to enter info? It does not show up in any of the menu items in the Selling window. The documentation shows how to create the new doc and form but I can find nothing on how to access them after they have been created.

@jaytee

Create one document, save it and search that Doctype in search box or In Module of that Doctype you will find the created documents. Also check permissions of that Doctype.

1 Like

Thanks!
Do you know how to add a link in the Selling page where other things are listed?

@jaytee
If you want to add Any Doc-type in selling list add it in selling.py
for e.g. if you want to add Item in Selling list -

{
	"type": "doctype",
	"name": "Item",
	"description": _("Item List."),
},
2 Likes

Thanks!