Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MIG] connector_prestashop: Migration to 15.0 #179

Open
wants to merge 101 commits into
base: 15.0
Choose a base branch
from

Commits on Aug 19, 2024

  1. [MIG] connector_prestashop: Begin of migration to v10

    sergio-teruel authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    9ed4e0b View commit details
    Browse the repository at this point in the history
  2. [FIX+IMP] connector_prestashop: Several things:

    * [FIX] manufacturer export on template
    
      Export of manufacturer on template was broken due to a probable typo.
      `id_manufacturer` value was taken using `to_odoo` instead of `to_backend`.
    
    * [IMP] filter of importable orders by state
    
      If `backend_record.importable_order_state_ids` is valued we check if current order is in the list.
      If not, the job fails gracefully.
    
    * [FIX] combination image: do not default to `False` when missing
    simahawk authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    50b294f View commit details
    Browse the repository at this point in the history
  3. [FIX+IMP] connector_prestashop: Several things

    * [FIX] Fix export when no location has flag prestashop_synchronized
    
      When there is no location with the flag prestashop_synchronized in the
      location tree,
    
      Current behavior:
    
      The `location` key in the context is empty then the qty_available is
      computed for *every* locations/warehouses.
    
      Expected behavior:
    
      If there is at least one location flagged, use it, otherwise, use all
      the locations of the tree, starting from the selected location or
      selected warehouse location.
    
      When no location can be found (for instance because user selected a
      location with a usage different than 'internal'), then it should just
      fail and not return the stock of all warehouses.
    
      Being able to synchronize without activating 'prestashop_synchronized'
      is important: when used, this feature will trigger an export every time
      a quant is changed or created, on a large catalog, we might prefer only
      using the cron to have less frequent updates and less jobs.
    
      A second fix is that when a stock_location_id is set on the backend, it
      should be used, it was only used for the import of stock.
    
    * [FIX] Exclude children from qty computation
    
      We already pass the children in 'location', if we don't disable
      'compute_child', the qty computation will try to get the children of
      each child and generates query of 1mio chars.
    
    * [IMP] Group computation of qty_available
    
      Stats with 6700 products:
    
      Before: 570s
      After: 28s
    
    * [FIX] Apply filter on locations for variants quantities
    
      It was only applied on export of template quantities.
    
    * [IMP] Improve performance on prestashop qty recompute
    
      The add/union operation between recordsets is slow, aggregate the ids in
      a set and call the browse only once on the complete set is dramatically
      faster. See guewen/connector-magento#9
    guewen authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    af9a4ad View commit details
    Browse the repository at this point in the history
  4. [FIX] connector_prestashop: Fix atomicity design (OCA#81)

    That may pass the prestashop id insted of the binding id to the exporter
    That can cause the following problems:
    
    * A job Error: Key (id_attribute_group)=(4) is not present in table "prestashop_product_combination_option"
    
    * Wrong combination or combination values export or updated
    * Combination or combination value never exported
    * Faulty value in fields 'id_attribute_group' leading to data
      incoherence
    
    (cherry picked from commit 767ba36)
    nbessi authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    3627624 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    a57ed0d View commit details
    Browse the repository at this point in the history
  6. [FIX+MIG] connector_prestashop: Continue migration

    * migrate components
    * port backend buttons remove GenericAdapter
    * remove unit_for fix key version
    * start fixing order import
    * Component usage
    * [FIX] product views
    * [FIX] remove prestashop decorator and various fixes
    bguillot authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    a7d4894 View commit details
    Browse the repository at this point in the history
  7. [FIX+MIG] connector_prestashop: Continue migration

    * Wrong imports
    * Add debug Options
    * Make mammping more generic
    * Use new Component for importers
    * Reference the Components for lates OCA/connector
    * Fix python import
    * [REF]Change the way shop_group are referenced
    * [IMP] Add debug options + requirements
      (OCA#85)
    * [REF]Rename views as the model name
    * [REF]Migrate new components structure
    flotho authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    2681278 View commit details
    Browse the repository at this point in the history
  8. [FIX] connector_prestashop: More fixes

    * merge
    * component usage
    * product views
    * remove prestshop decorator and various fixes
    bguillot authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    f80c731 View commit details
    Browse the repository at this point in the history
  9. [FIX+IMP] connector_prestashop: More things

    * Prevent unicode to be used as filter.
      particulary tru for the first import
    * Add menus for finding intermediate object easily
    * Better way to handle direct matching with components
    * Add Fields for more options
      Redefine the Checkpoint method
    * Add dependencies for stock fields
    * Clean the add_checkpoint part
    * Better Views and easier menus
    * Error lines where not appended but pushed into a list
    * Prevent duplication of useless delivery carrier
    * Add options in stock field
    flotho authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    98752bb View commit details
    Browse the repository at this point in the history
  10. [WIP] start to port tests

    bguillot authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    711c1b5 View commit details
    Browse the repository at this point in the history
  11. [FIX+IMP] connector_prestashop: Several refinements:

    * FIX duplicate key
    * FIX bad adpter for testing connexion
    * fix bad field for binding
    * Implement the product matching functionnality
    * Add active button
    * Better defensive method on matching delivery carriers
    * more logs
    * Better sql constraint
    * Prevent jobs to be executed on inactive backends
    * Preserve unique mapping on delivery methods
    flotho authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    5c625c7 View commit details
    Browse the repository at this point in the history
  12. [IMP+FIX] connector_prestashop: Refinements:

    * [IMP] migrate export of inventory, sale state and tracking number
    * [IMP] fixes and add no_export field
    * [FIX] listener
    * [FIX] temprorary remove unfinished fonctionality
    * [IMP] continue migration
    * [FIX] various fixes
    * [FIX] stock export
    bguillot authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    9343ca0 View commit details
    Browse the repository at this point in the history
  13. [FIX] connector_prestashop: Several fixes

    * Do not import product template stock into product variants
    * Update combination quantity when variant stock changes
    * Set variant images also for default combination
    * Import supplier prices
    * Do not duplicate payment modes for each language
    * connector_prestashop: Do not set default product taxes if they are unset in Prestashop
    @PlanetaTIC authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    c71dd22 View commit details
    Browse the repository at this point in the history
  14. Improve partner import performance

    florian-dacosta authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    80ede06 View commit details
    Browse the repository at this point in the history
  15. [FIX] connect_prestashop: Merge conflicts

    Due to the total mess on commit history, I finally ended resolving merge conflicts
    with automated tools and this is the final diff for letting things as they were.
    pedrobaeza authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    ad12440 View commit details
    Browse the repository at this point in the history
  16. [FIX] connector_prestashop: Greenify branch

    * 🍏 flake8
    * 🍏 pylint
    * 🍏 tests
    * ©️ Add me as contributor
    @PlanetaTIC authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    9a0db07 View commit details
    Browse the repository at this point in the history
  17. [FIX] Travis + requirements.txt + connector_prestashop

    * New versions of vcrpy has breaking changes, so we freeze it
    * Adapt .travis.yml for proper runbot deployment
    * Remove required on account.tax.group.company_id
    pedrobaeza authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    b379a47 View commit details
    Browse the repository at this point in the history
  18. [UPD] Update connector_prestashop.pot

    oca-travis authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    19a6a17 View commit details
    Browse the repository at this point in the history
  19. [FIX] connector_prestashop: Fix resync

    @PlanetaTIC authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    e98abfd View commit details
    Browse the repository at this point in the history
  20. [UPD] Update connector_prestashop.pot

    oca-travis authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    b36da88 View commit details
    Browse the repository at this point in the history
  21. Added translation using Weblate (French)

    gurneyalex authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    ae355b7 View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    8402a8c View commit details
    Browse the repository at this point in the history
  23. [UPD] Update connector_prestashop.pot

    oca-travis authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    6952257 View commit details
    Browse the repository at this point in the history
  24. Update translation files

    Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
    
    Translation: connector-prestashop-10.0/connector-prestashop-10.0-connector_prestashop
    Translate-URL: https://translation.odoo-community.org/projects/connector-prestashop-10-0/connector-prestashop-10-0-connector_prestashop/
    oca-transbot authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    1ace6da View commit details
    Browse the repository at this point in the history
  25. [FIX] connector_prestashop: Not correctly synchronized changes

    Due to commit mangling, solving conflicts taking incoming change produces some desync
    that is fixed here in this extra commit, although the attribution for these changes
    is not correct, but it's the only way to get the exact content.
    pedrobaeza authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    9ace63f View commit details
    Browse the repository at this point in the history
  26. Migrate connector_prestashop to version 12

    florian-dacosta authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    29b140f View commit details
    Browse the repository at this point in the history
  27. Imprve way to import and filter base data

    florian-dacosta authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    bdc80a5 View commit details
    Browse the repository at this point in the history
  28. Add decorator to automatically retry job failed because of network fa…

    …ilures
    florian-dacosta authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    ed69926 View commit details
    Browse the repository at this point in the history
  29. Save prestashop address alias in a separated field to not polute the …

    …partner name
    florian-dacosta authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    72f405b View commit details
    Browse the repository at this point in the history
  30. Configuration menu
    Copy the full SHA
    ef9b648 View commit details
    Browse the repository at this point in the history
  31. Fix tests and pep8

    florian-dacosta authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    021edb7 View commit details
    Browse the repository at this point in the history
  32. Do not by pass price_extra native odoo field to compute the price of …

    …a variant
    florian-dacosta authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    77a213c View commit details
    Browse the repository at this point in the history
  33. Fix refund import and validation

    Co-Authored-By: Iván Todorovich <[email protected]>
    2 people authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    b741bac View commit details
    Browse the repository at this point in the history
  34. refactore refund - pylint - oca dependencies and requirement

    florian-dacosta authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    e82fc02 View commit details
    Browse the repository at this point in the history
  35. Fix misc

    florian-dacosta authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    7b1967a View commit details
    Browse the repository at this point in the history
  36. Do not import all supplierinfo together with supplier. It is already …

    …imported with the products.
    florian-dacosta authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    edde800 View commit details
    Browse the repository at this point in the history
  37. [FIX] Remove not generic code

    florian-dacosta authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    aae5d8a View commit details
    Browse the repository at this point in the history
  38. [Fix] Manage company customer

    florian-dacosta authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    97bcc70 View commit details
    Browse the repository at this point in the history
  39. Remove company_id mapping on delivery carrier since it is a related w…

    …ith the product.
    florian-dacosta authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    883e4bf View commit details
    Browse the repository at this point in the history
  40. Configuration menu
    Copy the full SHA
    26361a6 View commit details
    Browse the repository at this point in the history
  41. [FIX] Avoid changing product default_code when mathing by reference o…

    …ption is set
    florian-dacosta authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    9f3d9b2 View commit details
    Browse the repository at this point in the history
  42. Configuration menu
    Copy the full SHA
    10e3623 View commit details
    Browse the repository at this point in the history
  43. Fix travis

    florian-dacosta authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    6454f20 View commit details
    Browse the repository at this point in the history
  44. [FIX]connector_prestashop: Improve check_vat function taking the part…

    …ner country code if don't comes in the vat field
    jesusVMayor authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    bed1716 View commit details
    Browse the repository at this point in the history
  45. Configuration menu
    Copy the full SHA
    6385272 View commit details
    Browse the repository at this point in the history
  46. [FIX]connector_prestashop: Remove quantity field, renamed immediately…

    …_usable_qty
    jesusVMayor authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    1370c15 View commit details
    Browse the repository at this point in the history
  47. Fix refund creation when carrier changed on sale order

    florian-dacosta authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    c7910fa View commit details
    Browse the repository at this point in the history
  48. Avoid trying to inactive already inactive variants

    florian-dacosta authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    8ac3174 View commit details
    Browse the repository at this point in the history
  49. [IMP] connector_prestashop: black, isort, prettier

    florian-dacosta authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    ea62390 View commit details
    Browse the repository at this point in the history
  50. [MIG] connector_prestashop: Migration to 14.0

    florian-dacosta authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    48bb6b9 View commit details
    Browse the repository at this point in the history
  51. Add decorator to automatically retry job failed because of network fa…

    …ilures
    florian-dacosta authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    db41d94 View commit details
    Browse the repository at this point in the history
  52. Avoid changing product_tmpl_id at each sync

    Indeed, AFAIK it should not change and it could cause unwanted recompute for example sale.order.invoice_status because of product_id.condition.
    florian-dacosta authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    d0f2dbe View commit details
    Browse the repository at this point in the history
  53. Adapt product import to v14

    florian-dacosta authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    50ff175 View commit details
    Browse the repository at this point in the history
  54. flush before commit to avoid data loss

    florian-dacosta authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    88e2dba View commit details
    Browse the repository at this point in the history
  55. Misc migration

    florian-dacosta authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    9696ae3 View commit details
    Browse the repository at this point in the history
  56. Fix

    florian-dacosta authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    e8d1416 View commit details
    Browse the repository at this point in the history
  57. sale onchange

    florian-dacosta authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    d573bee View commit details
    Browse the repository at this point in the history
  58. delivery sale line

    florian-dacosta authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    6e712c4 View commit details
    Browse the repository at this point in the history
  59. Add some job function data

    florian-dacosta authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    cf96338 View commit details
    Browse the repository at this point in the history
  60. Configuration menu
    Copy the full SHA
    b2b502e View commit details
    Browse the repository at this point in the history
  61. Fix channel in xml

    florian-dacosta authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    7bde563 View commit details
    Browse the repository at this point in the history
  62. Always pass parent record when importing combination

    florian-dacosta authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    30f5fc0 View commit details
    Browse the repository at this point in the history
  63. Remove checkpoint as it has been removed from connector. It could and…

    … probably should be replaced by activities
    
    check OCA/connector#351
    florian-dacosta authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    25eb1f7 View commit details
    Browse the repository at this point in the history
  64. Update channel names

    florian-dacosta authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    55bdd62 View commit details
    Browse the repository at this point in the history
  65. Avoid setting unactive lang to partner

    florian-dacosta authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    ba5b573 View commit details
    Browse the repository at this point in the history
  66. Add default sequence when importing product supplierinfo

    florian-dacosta authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    35b4872 View commit details
    Browse the repository at this point in the history
  67. Fix message import

    florian-dacosta authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    f6094a7 View commit details
    Browse the repository at this point in the history
  68. Fix string formatting

    florian-dacosta authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    040f2c7 View commit details
    Browse the repository at this point in the history
  69. Some fixes around refund import

    florian-dacosta authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    9c08e5a View commit details
    Browse the repository at this point in the history
  70. Add missing queue job function

    florian-dacosta authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    dfeaaf2 View commit details
    Browse the repository at this point in the history
  71. Consider unactive template attribute lines when importing product wit…

    …h combinations
    florian-dacosta authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    ee0eeb1 View commit details
    Browse the repository at this point in the history
  72. Make possible to have multiple binding with same backend_id/odoo_id f…

    …or prestashop.tax.group
    
    Each modification on prestashop will create a new account tax group with the same name as the previous one.
    It should create a binding on the same account tax group in odoo and so we do not whant the prestashop.odoo.binding sql constraint
    florian-dacosta authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    fbd7ea1 View commit details
    Browse the repository at this point in the history
  73. Fix import of template if it still has supplierinfo relatd to combina…

    …tions that don't exist anymore
    florian-dacosta authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    9afbb69 View commit details
    Browse the repository at this point in the history
  74. Manage sale order import from multi shop

    florian-dacosta authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    96277a3 View commit details
    Browse the repository at this point in the history
  75. Fix refund import

    florian-dacosta authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    e53b904 View commit details
    Browse the repository at this point in the history
  76. Add method for cron to import refunds

    florian-dacosta authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    d42143b View commit details
    Browse the repository at this point in the history
  77. There is no more account_id on invoices/refunds in v14, remove the ma…

    …pping
    florian-dacosta authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    a49566a View commit details
    Browse the repository at this point in the history
  78. Send out_of_stock to prestashop only if set in Odoo to avoid setting …

    …refuse order value by default
    florian-dacosta authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    ba5852f View commit details
    Browse the repository at this point in the history
  79. Do not change a refund if it has already been imported (and maybe pos…

    …ted yet)
    florian-dacosta authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    9ac2345 View commit details
    Browse the repository at this point in the history
  80. [FIX] Delete obsolete attribute lines on template

    florian-dacosta authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    5399366 View commit details
    Browse the repository at this point in the history
  81. [FIX] Take shipping cost into accoutn when checking total amount of a…

    … refund
    florian-dacosta authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    6b3da7f View commit details
    Browse the repository at this point in the history
  82. [IMP] connector_prestashop: black, isort, prettier

    hailangvn authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    38943cb View commit details
    Browse the repository at this point in the history
  83. [FIX] connector_prestashop: pass tests

    hailangvn authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    0cf888f View commit details
    Browse the repository at this point in the history
  84. [IMP] catalog_manager: New PrestaShop fields for low stock

    * This is a combination of 2 commits.
    
    [IMP] catalog_manager: New PrestaShop fields for low stock
        Conflicts: connector_prestashop_catalog_manager/models/product_template/exporter.py
    [FIX] catalog_manager: Fix export of variants stock from product
    @PlanetaTIC authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    442ef33 View commit details
    Browse the repository at this point in the history
  85. [FIX]connector_prestashop, connector_prestashop_catalog_manager: Mapped

    Prestashop field "visibility"
    MPoch-PlanetaTIC authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    1b12d80 View commit details
    Browse the repository at this point in the history
  86. [IMP] connector_prestashop: New keys for version 1.6.1.12

    * This is a combination of 2 commits.
    
    [IMP] connector_prestashop: New keys for version 1.6.1.12
    [IMP] connector_prestashop: New keys for version 1.6.1.6
    @PlanetaTIC authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    141e6bb View commit details
    Browse the repository at this point in the history
  87. [MIG] connector_prestashop_catalog_manager: Migration to 12.0

    * This is a combination of 4 commits.
    
    [WIP] connector_prestashop_catalog_manager: Migration to 12.0
    [MIG] connector_prestashop_catalog_manager: Migration to 12.0
    [FIX] connector_prestashop_catalog_manager: fixed travis errors.
    [FIX]connector_prestashop_catalog_manager: Added dependency to product_multi_image.
    MPoch-PlanetaTIC authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    2458fd9 View commit details
    Browse the repository at this point in the history
  88. [FIX]connectore_prestashop, connector_prestashop_catalog_manager:

    prestashop.product.template view shows field name and field value.
    MPoch-PlanetaTIC authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    d14fa0e View commit details
    Browse the repository at this point in the history
  89. [FIX] connector_prestashop: Fixed code error on Import Refunds from P…

    …restahop.
    
    * This is a combination of 3 commits.
    
    [FIX] connector_prestashop: Fixed code error on Import Refunds from Prestahop.
    [FIX]connector_prestashop: Scheduler import payment methods must call import_payment_modes
    [FIX] connector_prestashop: Set float precision on mapper.
    MPoch-PlanetaTIC authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    9ec9517 View commit details
    Browse the repository at this point in the history
  90. [FIX] connector_prestashop: prestashop.product.combination.mapper

    crashed when importing sale.order with unmapped product combinations.
    MPoch-PlanetaTIC authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    ab97e49 View commit details
    Browse the repository at this point in the history
  91. [FIX] connector_prestashop, connector_prestashop_castalog_manager: Fix

    product image update exportation.
    MPoch-PlanetaTIC authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    d7c5881 View commit details
    Browse the repository at this point in the history
  92. [FIX] connector_prestashop: Do not update product_tmpl_id if is not

    change
    @PlanetaTIC authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    efc7f66 View commit details
    Browse the repository at this point in the history
  93. [FIX]connector_prestashop: Fix stock exportation on product with an

    unique combination.
    MPoch-PlanetaTIC authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    6c65562 View commit details
    Browse the repository at this point in the history
  94. [FIX,IMP] odoo 14.0 changes, remove two duplicated records

    * This is a combination of 7 commits.
    
    [IMP] connector_prestashop: black, isort, prettie, python3 super syntax
    [FIX,IMP] odoo 14.0 changes, remove two duplicated records
    [IMP] connector_prestashop: change multi image dependency, have name in form
    [FIX] connector_prestashop: missing attributes, local field name
    [FIX] connector_prestashop: run all test
    [IMP] connector_prestashop: black, isort, prettier
    [IMP] connector_prestashop: backend default language, fix import
    	message, assert tax of tax group, show queue job start, match address
    	type
    hailangvn authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    ecc86d7 View commit details
    Browse the repository at this point in the history
  95. [FIX] connector_prestashop: error strings

    nilshamerlinck authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    0fec33e View commit details
    Browse the repository at this point in the history
  96. [IMP] connector_prestashop: black, isort, prettier

    hailangvn authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    463bd5f View commit details
    Browse the repository at this point in the history
  97. [FIX] connector_prestashop: mute too long vcr log

    hailangvn authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    f6c8e89 View commit details
    Browse the repository at this point in the history
  98. [IMP] connector_prestashop: black, isort

    flachica authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    25fc332 View commit details
    Browse the repository at this point in the history
  99. [MIG] connector_prestashop 15.0

    flachica authored and davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    5979647 View commit details
    Browse the repository at this point in the history
  100. [FIX] connetor_prestashop: valid_ean and detailed_type when create pr…

    …oducts
    davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    7e5628b View commit details
    Browse the repository at this point in the history
  101. Change of decimals for sales order import

    davidpalanca committed Aug 19, 2024
    Configuration menu
    Copy the full SHA
    3370715 View commit details
    Browse the repository at this point in the history