fe13bfed44
- Added "Returned Qty" in Sales and Purchase Order - Map Expense Account in Return Delivery Note - Defined some No Copy fields - Added "Credit Note" and "Debit Note" Print Headings - Fixed patch
15 lines
442 B
Python
15 lines
442 B
Python
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
|
|
# License: GNU General Public License v3. See license.txt
|
|
|
|
from __future__ import unicode_literals
|
|
import frappe
|
|
from frappe import _
|
|
|
|
def execute():
|
|
for print_heading in (_("Credit Note"), _("Debit Note")):
|
|
if not frappe.db.exists("Print Heading", print_heading):
|
|
frappe.get_doc({
|
|
"doctype": "Print Heading",
|
|
"print_heading": print_heading
|
|
}).insert()
|