-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from alyf-de/develop
feat: use title as subfolder name (#4)
- Loading branch information
Showing
6 changed files
with
131 additions
and
414 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
32 changes: 32 additions & 0 deletions
32
pdf_on_submit/pdf_on_submit/doctype/enabled_doctype/enabled_doctype.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ | ||
"actions": [], | ||
"creation": "2021-01-13 15:41:24.310478", | ||
"doctype": "DocType", | ||
"editable_grid": 1, | ||
"engine": "InnoDB", | ||
"field_order": [ | ||
"document_type" | ||
], | ||
"fields": [ | ||
{ | ||
"fieldname": "document_type", | ||
"fieldtype": "Link", | ||
"in_list_view": 1, | ||
"label": "Document Type", | ||
"options": "DocType", | ||
"reqd": 1 | ||
} | ||
], | ||
"istable": 1, | ||
"links": [], | ||
"modified": "2021-01-13 15:41:24.310478", | ||
"modified_by": "Administrator", | ||
"module": "PDF on Submit", | ||
"name": "Enabled DocType", | ||
"owner": "Administrator", | ||
"permissions": [], | ||
"quick_entry": 1, | ||
"sort_field": "modified", | ||
"sort_order": "DESC", | ||
"track_changes": 1 | ||
} |
10 changes: 10 additions & 0 deletions
10
pdf_on_submit/pdf_on_submit/doctype/enabled_doctype/enabled_doctype.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# -*- coding: utf-8 -*- | ||
# Copyright (c) 2021, Raffael Meyer and contributors | ||
# For license information, please see license.txt | ||
|
||
from __future__ import unicode_literals | ||
# import frappe | ||
from frappe.model.document import Document | ||
|
||
class EnabledDocType(Document): | ||
pass |
Oops, something went wrong.