Conflict module name across app

I created a custom app called ecommerce. However, when I tried to install it, there was a conflict with the erpnext app. For some reason, during the installation, Frappe picked up the erpnext app instead of ecommerce.

Here’s the structure of my custom app:

- ecommerce
 - crm
  - doctype
   - customer_group_item

I installed it with the following command:

bench --site site1.test install-app ecommerce

and here is the errors:

Updating DocTypes for ecommerce     : [=========================               ] 64%ecommerce pim price_condition_channel
ecommerce pim price_condition_channel
Updating DocTypes for ecommerce     : [===========================             ] 67%ecommerce pim product_information
ecommerce pim product_information
Updating DocTypes for ecommerce     : [============================            ] 71%ecommerce pim product_category_items
ecommerce pim product_category_items
Updating DocTypes for ecommerce     : [==============================          ] 75%erpnext crm customer_group_item
An error occurred while installing ecommerce: Module import failed for Customer Group Item, the DocType you're trying to open might be deleted.<br> Error: No module named 'erpnext.crm.doctype.customer_group_item'
Traceback (most recent call last):
  File "apps/frappe/frappe/modules/utils.py", line 240, in load_doctype_module
    doctype_python_modules[key] = frappe.get_module(module_name)
  File "apps/frappe/frappe/__init__.py", line 1327, in get_module
    return importlib.import_module(modulename)
  File "/opt/homebrew/Cellar/python@3.10/3.10.10/Frameworks/Python.framework/Versions/3.10/lib/python3.10/importlib/__init__.py", line 126, in import_module
    return _bootstrap._gcd_import(name[level:], package, level)
  File "<frozen importlib._bootstrap>", line 1050, in _gcd_import
  File "<frozen importlib._bootstrap>", line 1027, in _find_and_load
  File "<frozen importlib._bootstrap>", line 992, in _find_and_load_unlocked
  File "<frozen importlib._bootstrap>", line 241, in _call_with_frames_removed
  File "<frozen importlib._bootstrap>", line 1050, in _gcd_import
  File "<frozen importlib._bootstrap>", line 1027, in _find_and_load
  File "<frozen importlib._bootstrap>", line 1004, in _find_and_load_unlocked
ModuleNotFoundError: No module named 'erpnext.crm.doctype.customer_group_item'

How solve this? do i’ve to rename my custom app doctype?