From d743f4acad7a7c93ac8e4b773c77fda5073440d8 Mon Sep 17 00:00:00 2001 From: Ulrich Date: Fri, 7 Aug 2026 22:18:53 +0200 Subject: [PATCH] extraction works working on all the modules of the configured Version span --- .gitignore | 2 ++ extract.py | 11 +++++++++++ 2 files changed, 13 insertions(+) diff --git a/.gitignore b/.gitignore index 86bf85b..accdaa3 100644 --- a/.gitignore +++ b/.gitignore @@ -7,6 +7,8 @@ __pycache__/ # C extensions *.so +# patch backups +*.orig # temporary patchfiles *.diff diff --git a/extract.py b/extract.py index 6152761..8b430f2 100644 --- a/extract.py +++ b/extract.py @@ -8,7 +8,18 @@ from pathlib import Path DEFAULT_REPO = "/home/uha4/tmp/tryton" DEFAULT_MODULES = [ + "company", + "country", + "currency", "party", + "product", + "production_split", + "stock_lot", + "stock_lot_sled", + "production", + "stock_product_location", + "stock_split", + "product_measurements", ] DEFAULT_OUTPUT = "data"