2024.2 5. CLI Tools
CLI tools are Magento commands that are created for debugging & testing. The CLI wrappers are calling the same logic as netsuite:cron does for each section.
Debugging
All commands listed here extend default Magento commands and they are part of bin/magento. As such, you can enable debug into CLI with usage of "-vvv" parameter which enables debug mode (same as --debug in some of the commands, --debug options are deprecated and will be removed in future versions). The -vvv option allows debug verbose mode which will input the maximum number of information available.
netsuite:maintenance:cleanmonitor
Manually cleans the monitor logs. The command has two optional arguments.
--statusList=retry,in_queue. The comma separated list of monitor log statuses. Default is all statuses except 'in_queue'.
--days=22. The qty of days for date calculation. Formula: date = now - days. Default is 0.
The current command delete logs which have status from status list, older then date and missing in queue(missing in connector message table).
netsuite:maintenance:sendlogerrors
Manually sends log errors to the email specified in the Configuration (TBD @Gregor Pollaklink)
netsuite:maintenance:sendqueuewarning
Manually sends warnings for over threshold queues. This is used for testing.
netsuite:utils:importproducts
Imports products from NetSuite to Magento. Multiple parameters are available:
--type=TYPE Type. Either "all" or "add-only". add-only only adds new products, while all will also update existing ones
--wipe-existing Specifying this option will delete each updated product and re-add
--resume-at[=RESUME-AT] The page number to resume at
--product-type[=PRODUCT-TYPE] The type of products to import - simple, configurable, bundle, assembly, all. Defaults to all
This command is primarily used for the initial import of products. Once this is done & cron is enabled, the netsuite:cron takes care of the import of products.
netsuite:utils:importsingleproduct
Manually imports a single product. Multiple parameters are available:
--id=ID The NetSuite internal id for the product to be imported (or comma-separated list)
--delete-existing If this option is present, the product will be deleted and re-created
--debug[=DEBUG] Verbose logging
--sku[=SKU] Product SKU
This command is primarily used for development or debugging purposes as it allows import of single product and debugging what is needed/not working.
netsuite:utils:netsuiterelinkproductsbysku
Adds or changes existing products netsuite internal ids based on sku. It has "dry-run" parameter that will only describe the operations that should happen.
-s, --netsuite-sku-field=NETSUITE-SKU-FIELD An Inventory Item standard field where the SKU is kept in NetSuite. Defaults to itemId
-r, --sku-resume-at=SKU-RESUME-AT The SKU to start with, useful for failing processes
This command is used when we are linking data that exists in both systems. This is used for initial product link.
netsuite:utils:processsingleitem
Process a single item from the import or export queue. It has two parameters needed:
-m, --mode=MODE Mode, either import or export
-s, --message-id=MESSAGE-ID The queue message id
This command is used for development or debugging purposes as it allows processing a single queue item which can be either an import or export item.
netsuite:utils:processrecord
Process a record (or CSV list of records) based on the type. Basically, it calls for import/export instead of a queue. The command is very similar to netsuite:utils:processsingleitem but it operates real entities ids and not message id.
It has two required parameters:
-t, --type=TYPE Name of supported type for export or import.
On 08/2022 we have the next possible types
param | note |
---|---|
customer_export |
|
customer_import | b2b package only |
companyupdate_import | b2b package only |
company_export | b2b package only |
order_export |
|
invoice_export |
|
invoice_export |
|
payment_import | b2b package only |
shipment_import |
|
quote_export | b2b package only |
quoteupdate_import | b2b package only |
cashrefund_import | b2b package only |
rma_import | b2b package only |
rma_export | b2b package only |
creditmemo_import | b2b package only |
-s, --id=RECORD-ID The record ID. Either Magento record ID or NetSuite record Internal ID (based on type). It can work with CSV list of records ids.
This command is used for development or debugging purposes as it allows the import/export of single/multiple records from/to NetSuite.
Example:
bin/magento netsuite:utils:processrecord --type=customer_export --id=1412,1241
this example will export Magento Customers with entity id's 1412,1241
Each type can be used only if module with that entity type is installed on the project. In order to check what types are supported on the project - simply execute command with some dummy type and u will got promt.
netsuite:utils:updatestocks
Manually updates stock information. The logic is the same as netsuite:cron --mode=stock command.