rpa-erpnext 1.0.5__tar.gz → 1.0.6__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {rpa_erpnext-1.0.5 → rpa_erpnext-1.0.6}/PKG-INFO +1 -1
- {rpa_erpnext-1.0.5 → rpa_erpnext-1.0.6}/RPA/ERPNext.py +5 -1
- {rpa_erpnext-1.0.5 → rpa_erpnext-1.0.6}/pyproject.toml +1 -1
- {rpa_erpnext-1.0.5 → rpa_erpnext-1.0.6}/rpa_erpnext.egg-info/PKG-INFO +1 -1
- {rpa_erpnext-1.0.5 → rpa_erpnext-1.0.6}/LICENSE +0 -0
- {rpa_erpnext-1.0.5 → rpa_erpnext-1.0.6}/RPA/__init__.py +0 -0
- {rpa_erpnext-1.0.5 → rpa_erpnext-1.0.6}/readme.md +0 -0
- {rpa_erpnext-1.0.5 → rpa_erpnext-1.0.6}/rpa_erpnext.egg-info/SOURCES.txt +0 -0
- {rpa_erpnext-1.0.5 → rpa_erpnext-1.0.6}/rpa_erpnext.egg-info/dependency_links.txt +0 -0
- {rpa_erpnext-1.0.5 → rpa_erpnext-1.0.6}/rpa_erpnext.egg-info/requires.txt +0 -0
- {rpa_erpnext-1.0.5 → rpa_erpnext-1.0.6}/rpa_erpnext.egg-info/top_level.txt +0 -0
- {rpa_erpnext-1.0.5 → rpa_erpnext-1.0.6}/setup.cfg +0 -0
- {rpa_erpnext-1.0.5 → rpa_erpnext-1.0.6}/test/test_functions.py +0 -0
|
@@ -655,8 +655,12 @@ class ERPNextLibrary:
|
|
|
655
655
|
# ===========================================================
|
|
656
656
|
|
|
657
657
|
@keyword("Send RFQ From Material Request")
|
|
658
|
-
def send_rfq_from_mr(self, mr_name
|
|
658
|
+
def send_rfq_from_mr(self, mr_name, suppliers):
|
|
659
659
|
"""Tạo RFQ dựa trên Material Request."""
|
|
660
|
+
# Auto-detect if mr_name is a dict (from previous keyword return)
|
|
661
|
+
if isinstance(mr_name, dict):
|
|
662
|
+
mr_name = mr_name.get("name")
|
|
663
|
+
|
|
660
664
|
if isinstance(suppliers, str):
|
|
661
665
|
try:
|
|
662
666
|
suppliers = json.loads(suppliers)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|