mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-25 16:04:46 +00:00
Merge pull request #23554 from rohitwaghchaure/print-uom-after-quantity-patch
fix: added patch to make custom field 'Print UOM after Quantity'
This commit is contained in:
@@ -729,3 +729,4 @@ erpnext.patches.v13_0.setting_custom_roles_for_some_regional_reports
|
|||||||
erpnext.patches.v13_0.rename_issue_doctype_fields
|
erpnext.patches.v13_0.rename_issue_doctype_fields
|
||||||
erpnext.patches.v13_0.change_default_pos_print_format
|
erpnext.patches.v13_0.change_default_pos_print_format
|
||||||
erpnext.patches.v13_0.set_youtube_video_id
|
erpnext.patches.v13_0.set_youtube_video_id
|
||||||
|
erpnext.patches.v13_0.print_uom_after_quantity_patch
|
||||||
10
erpnext/patches/v13_0/print_uom_after_quantity_patch.py
Normal file
10
erpnext/patches/v13_0/print_uom_after_quantity_patch.py
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
# Copyright (c) 2019, Frappe and Contributors
|
||||||
|
# License: GNU General Public License v3. See license.txt
|
||||||
|
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
|
import frappe
|
||||||
|
from erpnext.setup.install import create_print_uom_after_qty_custom_field
|
||||||
|
|
||||||
|
def execute():
|
||||||
|
create_print_uom_after_qty_custom_field()
|
||||||
Reference in New Issue
Block a user