Skip to content

Instantly share code, notes, and snippets.

@fastdivision
Created June 25, 2020 21:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fastdivision/f2456e9299fb59f8b1bccbef092974b0 to your computer and use it in GitHub Desktop.
Save fastdivision/f2456e9299fb59f8b1bccbef092974b0 to your computer and use it in GitHub Desktop.
PluginDx Config for M2 TaxJar Extension
{
"config": [
{
"name": "TaxJar Email",
"path": "tax/taxjar/email"
},
{
"name": "TaxJar API Key",
"path": "tax/taxjar/apikey"
},
{
"name": "Checkout Calculations",
"path": "tax/taxjar/enabled"
},
{
"name": "Transaction Sync",
"path": "tax/taxjar/transactions"
},
{
"name": "Backup Rates",
"path": "tax/taxjar/backup"
},
{
"name": "Backup Product Tax Classes",
"path": "tax/taxjar/product_tax_classes"
},
{
"name": "Backup Customer Tax Classes",
"path": "tax/taxjar/customer_tax_classes"
},
{
"name": "Debug Mode",
"path": "tax/taxjar/debug"
},
{
"name": "Tax Class for Shipping",
"path": "tax/classes/shipping_tax_class"
},
{
"name": "Tax Class for Gift Options",
"path": "tax/classes/wrapping_tax_class"
},
{
"name": "Default Tax Class for Product",
"path": "tax/classes/default_product_tax_class"
},
{
"name": "Default Tax Class for Customer",
"path": "tax/classes/default_customer_tax_class"
},
{
"name": "Tax Calculation Method Based On",
"path": "tax/calculation/algorithm"
},
{
"name": "Tax Calculation Based On",
"path": "tax/calculation/based_on"
},
{
"name": "Catalog Prices",
"path": "tax/calculation/price_includes_tax"
},
{
"name": "Shipping Prices",
"path": "tax/calculation/shipping_includes_tax"
},
{
"name": "Apply Customer Tax",
"path": "tax/calculation/apply_after_discount"
},
{
"name": "Apply Discount On Prices",
"path": "tax/calculation/discount_tax"
},
{
"name": "Apply Tax On",
"path": "tax/calculation/apply_tax_on"
},
{
"name": "Enable Cross Border Trade",
"path": "tax/calculation/cross_border_trade_enabled"
},
{
"name": "Default Country",
"path": "tax/defaults/country"
},
{
"name": "Default State",
"path": "tax/defaults/region"
},
{
"name": "Default Post Code",
"path": "tax/defaults/postcode"
},
{
"name": "Display Product Prices In Catalog",
"path": "tax/display/type"
},
{
"name": "Display Shipping Prices",
"path": "tax/display/shipping"
},
{
"name": "Display Prices",
"path": "tax/cart_display/price"
},
{
"name": "Display Subtotal",
"path": "tax/cart_display/subtotal"
},
{
"name": "Display Shipping Amount",
"path": "tax/cart_display/shipping"
},
{
"name": "Include Tax In Order Total",
"path": "tax/cart_display/grandtotal"
},
{
"name": "Display Full Tax Summary",
"path": "tax/cart_display/full_summary"
},
{
"name": "Display Zero Tax Subtotal",
"path": "tax/cart_display/zero_tax"
},
{
"name": "Display Gift Wrapping Prices",
"path": "tax/cart_display/gift_wrapping"
},
{
"name": "Display Printed Card Prices",
"path": "tax/cart_display/printed_card"
},
{
"name": "Display Prices",
"path": "tax/sales_display/price"
},
{
"name": "Display Subtotal",
"path": "tax/sales_display/subtotal"
},
{
"name": "Display Shipping Amount",
"path": "tax/sales_display/shipping"
},
{
"name": "Include Tax In Order Total",
"path": "tax/sales_display/grandtotal"
},
{
"name": "Display Full Tax Summary",
"path": "tax/sales_display/full_summary"
},
{
"name": "Display Zero Tax Subtotal",
"path": "tax/sales_display/zero_tax"
},
{
"name": "Display Gift Wrapping Prices",
"path": "tax/sales_display/gift_wrapping"
},
{
"name": "Display Printed Card Prices",
"path": "tax/sales_display/printed_card"
},
{
"name": "Enable FPT",
"path": "tax/weee/enable"
},
{
"name": "Display Prices In Product Lists",
"path": "tax/weee/display_list"
},
{
"name": "Display Prices On Product View Page",
"path": "tax/weee/display"
},
{
"name": "Display Prices In Sales Modules",
"path": "tax/weee/display_sales"
},
{
"name": "Display Prices In Emails",
"path": "tax/weee/display_email"
},
{
"name": "Apply Tax To FPT",
"path": "tax/weee/apply_vat"
},
{
"name": "Include FPT In Subtotal",
"path": "tax/weee/include_in_subtotal"
},
{
"name": "Country",
"path": "shipping/origin/country_id"
},
{
"name": "Region/State",
"path": "shipping/origin/region_id"
},
{
"name": "ZIP/Postal Code",
"path": "shipping/origin/postcode"
},
{
"name": "City",
"path": "shipping/origin/city"
},
{
"name": "Street Address",
"path": "shipping/origin/street_line1"
},
{
"name": "Street Address Line 2",
"path": "shipping/origin/street_line2"
}
],
"collections": [ {
"name": "Nexus Addresses",
"model": "Taxjar\\SalesTax\\Model\\Tax\\Nexus",
"attributes": [
"api_id",
"street",
"city",
"country_id",
"region",
"region_id",
"region_code",
"postcode",
"created_at",
"updated_at"
]
},
{
"name": "Tax Classes",
"model": "Magento\\Tax\\Model\\ClassModel",
"attributes": [
"class_id",
"class_name",
"class_type",
"tj_salestax_code"
]
},
{
"name": "Tax Rates",
"model": "Magento\\Tax\\Model\\Calculation\\Rate",
"attributes": [
"tax_country_id",
"tax_region_id",
"tax_postcode",
"code",
"rate",
"zip_is_range",
"zip_from",
"zip_to"
]
},
{
"name": "Customer Groups",
"model": "Magento\\Customer\\Model\\Group",
"attributes": [
"customer_group_id",
"customer_group_code",
"tax_class_id"
]
}],
"helpers": [
{
"name": "Magento Edition",
"path": "magento/edition"
},
{
"name": "Magento Locale",
"path": "magento/locale"
},
{
"name": "Magento Version",
"path": "magento/version"
},
{
"name": "Modules Installed",
"path": "magento/modules"
},
{
"name": "Module Version",
"path": "magento/module_version"
},
{
"name": "Magento Applied Patches",
"path": "magento/applied_patches"
}
],
"server": [ {
"name": "PHP Version",
"path": "Core/PHP Version"
},
{
"name": "memory_limit",
"path": "Core/memory_limit"
}],
"logs": [
{
"path": "taxjar.log",
"lines": 250
},
{
"path": "system.log",
"lines": 250
},
{
"path": "exception.log",
"lines": 250
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment