netresearch / dhl-shipping-m2

DHL multi-division shipping extension for Magento 2
Open Software License 3.0
13 stars 4 forks source link

uninstallation of dhl/shipping-m2 #65

Closed tobiasolge closed 4 months ago

tobiasolge commented 10 months ago

Hi,

ho to uninstall dhl/shipping-m2?

We disabled the following modules because of an incompatibility with another module. magento module:disable Netresearch_ShippingCore Dhl_UnifiedTracking Netresearch_ConfigFields Dhl_ShippingCore Dhl_Paket Netresearch_AdminNotificationFeed Dhl_PaketReturns Netresearch_InteractiveBatchProcessing DeutschePost_Internetmarke Netresearch_ShippingUi PostDirekt_Autocomplete PostDirekt_Core

But there are still cronjobs running (postdirekt_addressfactory_autoprocess_job) which marks offline payment orders as paied, qhich they aren't and creates a shipment.

I tried to uninstall the modules from composer.json as described in the Readme files. magento module:uninstall --remove-data PostDirekt_Autocomplete magento module:uninstall --remove-data PostDirekt_Addressfactory magento module:uninstall --remove-data DeutschePost_Internetmarke magento module:uninstall --remove-data Dhl_Paket magento module:uninstall --remove-data Dhl_PaketReturns

this does not work because of dependencies.

Command "remove" failed: dhl/module-carrier-paket-returns is not required in your composer.json and has not been removed

Removal failed, dhl/module-carrier-paket-returns is still present, it may be required by another package. See composer why dhl/module-carrier-paket-returns.

Please assist.

ngolatka commented 10 months ago

Hello @tobiasolge, did you try this command already?

composer remove dhl/shipping-m2

tobiasolge commented 10 months ago

how come, that there still is a cronjob running?

tobiasolge commented 10 months ago

and why are orders, that are not paid marked as paid by the cron?

powli commented 10 months ago

@tobiasolge:

Which cron job is running? Also how do you determine the orders being marked as paid?

tobiasolge commented 10 months ago

@powli job_code: postdirekt_addressfactory_autoprocess_job This happened on pay in advance orders. In these cases, we create an invoice manually. For some orders an invoice was created automatically. The timestamp on the invoice is the same as the finished_at from that cron.

tobiasolge commented 9 months ago

There seem to be some more problems. We have the following errors: Error: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'magento2.nrshipping_order_item' doesn't exist, query was: SELECT main_table.*, extension_attribute_nrshipping_country_of_manufacture.country_of_manufacture AS extension_attribute_nrshipping_country_of_manufacture_country_of_manufacture, extension_attribute_nrshipping_export_description.export_description AS extension_attribute_nrshipping_export_description_export_description, extension_attribute_nrshipping_hs_code.hs_code AS extension_attribute_nrshipping_hs_code_hs_code FROM sales_order_item AS main_table LEFT JOIN nrshipping_order_item AS extension_attribute_nrshipping_country_of_manufacture ON main_table.item_id = extension_attribute_nrshipping_country_of_manufacture.item_id LEFT JOIN nrshipping_order_item AS extension_attribute_nrshipping_export_description ON main_table.item_id = extension_attribute_nrshipping_export_description.item_id LEFT JOIN nrshipping_order_item AS extension_attribute_nrshipping_hs_code ON main_table.item_id = extension_attribute_nrshipping_hs_code.item_id WHERE ((order_id = ''))

mam08ixo commented 9 months ago

Hi @tobiasolge, I am not sure what you are asking for. How to remove a package from a project was already explained before:

composer remove dhl/shipping-m2

Obviously, there is still code in your project that

So the first step for you is to remove the module files completely from the project.

Second step is data cleanup. Given you receive that SQL error, I assume you cleaned up the database already. If not, restore a dump or compare the schema files with your database to detect any leftovers. Schema files:

tobiasolge commented 9 months ago

Hi, yes, but there is still a cronjob running.... job code: postdirekt_addressfactory_autoprocess_job

mam08ixo commented 9 months ago

Then I suggest you find out why it is still running. Something cache? Cron schedule still stored in configuration files/table?

tobiasolge commented 9 months ago

we do have nothing, that scheduled that cron.

mam08ixo commented 9 months ago

That's good news! When it is not scheduled, then it does not run.