From 3c9d8f5bf036b7557351bc14981d74bbbfa5a709 Mon Sep 17 00:00:00 2001 From: Luis Ernesto Portillo Zaldivar Date: Thu, 24 Jul 2025 11:26:46 -0600 Subject: [PATCH] =?UTF-8?q?fix:=20Agregar=20dependencia=20del=20m=C3=B3dul?= =?UTF-8?q?o=20stock=20en=20=5F=5Fmanifest=5F=5F.py?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Resuelve el error "Model 'stock.lot' does not exist in registry" agregando 'stock' a la lista de dependencias del módulo. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- lims_management/__manifest__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lims_management/__manifest__.py b/lims_management/__manifest__.py index d188b78..ab46008 100644 --- a/lims_management/__manifest__.py +++ b/lims_management/__manifest__.py @@ -16,7 +16,7 @@ 'website': "https://gitea.grupoconsiti.com/luis_portillo/clinical_laboratory", 'category': 'Industries', 'version': '18.0.1.0.0', - 'depends': ['base', 'product', 'sale', 'base_setup'], + 'depends': ['base', 'product', 'sale', 'stock', 'base_setup'], 'assets': { 'web.assets_backend': [ 'lims_management/static/src/css/lims_test.css',