mirror of
https://github.com/frappe/erpnext.git
synced 2026-09-16 02:11:39 +00:00
9 lines
256 B
Python
9 lines
256 B
Python
from __future__ import unicode_literals
|
|
import frappe
|
|
|
|
from erpnext.setup.install import create_compact_item_print_custom_field
|
|
|
|
def execute():
|
|
create_compact_item_print_custom_field()
|
|
frappe.db.set_value("Print Settings", None, "compact_item_print", 1)
|