From 38429e346940d04eb49abd7b7347d14dde635113 Mon Sep 17 00:00:00 2001 From: ForkPilot Test Date: Thu, 16 Apr 2026 13:18:44 +0000 Subject: [PATCH] Test PR from ForkPilot - Add test_common_module.py This is a test PR created by automated testing to verify GitHub integration. Files changed: 1 --- erpnext/test_common_module.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 erpnext/test_common_module.py diff --git a/erpnext/test_common_module.py b/erpnext/test_common_module.py new file mode 100644 index 000000000000..b234e8aad607 --- /dev/null +++ b/erpnext/test_common_module.py @@ -0,0 +1,12 @@ +# Common Module - Present in Main Repository +# This is a shared module that should be present in all forks + +def validate_email(email): + """Basic email validation""" + if '@' not in email or '.' not in email: + return False, "Invalid email format" + return True, "Valid email" + +def calculate_tax(amount, tax_rate=18): + """Standard tax calculation""" + return (amount * tax_rate) / 100