update
Some checks are pending
Setup Native Action / native (3.12.7) (push) Waiting to run
Setup Native Action / docker (3.12.7) (push) Waiting to run

This commit is contained in:
KaySar12 2025-03-20 14:37:19 +07:00
parent 8b143a1ca8
commit b416b9b058

View File

@ -112,7 +112,7 @@ def get_related_fields(
odoo: odoorpc.ODOO, args: argparse.Namespace
) -> Dict[str, List[str]]:
"""Retrieve related fields with cache management."""
cache_path = os.path.join(CACHE_DIR, args.db_name, f"{args.base_model}.json")
cache_path = os.path.join(CACHE_DIR, args.db_name, f"{args.base_model}.cache.json")
os.makedirs(os.path.dirname(cache_path), exist_ok=True)
if not args.refresh_cache and os.path.exists(cache_path):