[19.0][OU-ADD] website_sale_collect: Migration scripts - #5740
Merged
Merged
Conversation
Member
Author
|
/ocabot migration website_sale_collect |
dnplkndll
added a commit
to ledoent/OpenUpgrade
that referenced
this pull request
Jul 30, 2026
…fill _mark_pickup_auxiliary_addresses built an UPDATE whose WHERE used comma-separated conditions instead of AND (plus `parent_id != False` and a trailing comma) — invalid SQL that raises syntax error the moment a pickup carrier (delivery_type='in_store') exists. CI is green only because the demo seed has no in_store carrier, so the loop never runs. Use AND, IS NOT DISTINCT FROM for the nullable state_id/country_id (matches pickup locations without a state/country), parent_id IS NOT NULL, and pass .id (not the recordset) for the relational params. Bug from OCA#5740 (pedrobaeza).
dnplkndll
added a commit
to ledoent/OpenUpgrade
that referenced
this pull request
Jul 30, 2026
…fill _mark_pickup_auxiliary_addresses built an UPDATE whose WHERE used comma-separated conditions instead of AND (plus `parent_id != False` and a trailing comma) — invalid SQL that raises syntax error the moment a pickup carrier (delivery_type='in_store') exists. CI is green only because the demo seed has no in_store carrier, so the loop never runs. Use AND, IS NOT DISTINCT FROM for the nullable state_id/country_id (matches pickup locations without a state/country), parent_id IS NOT NULL, and pass .id (not the recordset) for the relational params. Bug from OCA#5740 (pedrobaeza).
dnplkndll
added a commit
to ledoent/OpenUpgrade
that referenced
this pull request
Jul 31, 2026
…fill _mark_pickup_auxiliary_addresses built an UPDATE whose WHERE used comma-separated conditions instead of AND (plus `parent_id != False` and a trailing comma) — invalid SQL that raises syntax error the moment a pickup carrier (delivery_type='in_store') exists. CI is green only because the demo seed has no in_store carrier, so the loop never runs. Use AND, IS NOT DISTINCT FROM for the nullable state_id/country_id (matches pickup locations without a state/country), parent_id IS NOT NULL, and pass .id (not the recordset) for the relational params. Bug from OCA#5740 (pedrobaeza).
dnplkndll
added a commit
to ledoent/OpenUpgrade
that referenced
this pull request
Aug 1, 2026
…fill _mark_pickup_auxiliary_addresses built an UPDATE whose WHERE used comma-separated conditions instead of AND (plus `parent_id != False` and a trailing comma) — invalid SQL that raises syntax error the moment a pickup carrier (delivery_type='in_store') exists. CI is green only because the demo seed has no in_store carrier, so the loop never runs. Use AND, IS NOT DISTINCT FROM for the nullable state_id/country_id (matches pickup locations without a state/country), parent_id IS NOT NULL, and pass .id (not the recordset) for the relational params. Bug from OCA#5740 (pedrobaeza).
dnplkndll
added a commit
to ledoent/OpenUpgrade
that referenced
this pull request
Aug 4, 2026
…fill _mark_pickup_auxiliary_addresses built an UPDATE whose WHERE used comma-separated conditions instead of AND (plus `parent_id != False` and a trailing comma) — invalid SQL that raises syntax error the moment a pickup carrier (delivery_type='in_store') exists. CI is green only because the demo seed has no in_store carrier, so the loop never runs. Use AND, IS NOT DISTINCT FROM for the nullable state_id/country_id (matches pickup locations without a state/country), parent_id IS NOT NULL, and pass .id (not the recordset) for the relational params. Bug from OCA#5740 (pedrobaeza).
dnplkndll
added a commit
to ledoent/OpenUpgrade
that referenced
this pull request
Aug 5, 2026
…fill _mark_pickup_auxiliary_addresses built an UPDATE whose WHERE used comma-separated conditions instead of AND (plus `parent_id != False` and a trailing comma) — invalid SQL that raises syntax error the moment a pickup carrier (delivery_type='in_store') exists. CI is green only because the demo seed has no in_store carrier, so the loop never runs. Use AND, IS NOT DISTINCT FROM for the nullable state_id/country_id (matches pickup locations without a state/country), parent_id IS NOT NULL, and pass .id (not the recordset) for the relational params. Bug from OCA#5740 (pedrobaeza).
dnplkndll
added a commit
to ledoent/OpenUpgrade
that referenced
this pull request
Aug 6, 2026
…fill _mark_pickup_auxiliary_addresses built an UPDATE whose WHERE used comma-separated conditions instead of AND (plus `parent_id != False` and a trailing comma) — invalid SQL that raises syntax error the moment a pickup carrier (delivery_type='in_store') exists. CI is green only because the demo seed has no in_store carrier, so the loop never runs. Use AND, IS NOT DISTINCT FROM for the nullable state_id/country_id (matches pickup locations without a state/country), parent_id IS NOT NULL, and pass .id (not the recordset) for the relational params. Bug from OCA#5740 (pedrobaeza).
dnplkndll
added a commit
to ledoent/OpenUpgrade
that referenced
this pull request
Aug 7, 2026
…fill _mark_pickup_auxiliary_addresses built an UPDATE whose WHERE used comma-separated conditions instead of AND (plus `parent_id != False` and a trailing comma) — invalid SQL that raises syntax error the moment a pickup carrier (delivery_type='in_store') exists. CI is green only because the demo seed has no in_store carrier, so the loop never runs. Use AND, IS NOT DISTINCT FROM for the nullable state_id/country_id (matches pickup locations without a state/country), parent_id IS NOT NULL, and pass .id (not the recordset) for the relational params. Bug from OCA#5740 (pedrobaeza).
dnplkndll
added a commit
to ledoent/OpenUpgrade
that referenced
this pull request
Aug 10, 2026
…fill _mark_pickup_auxiliary_addresses built an UPDATE whose WHERE used comma-separated conditions instead of AND (plus `parent_id != False` and a trailing comma) — invalid SQL that raises syntax error the moment a pickup carrier (delivery_type='in_store') exists. CI is green only because the demo seed has no in_store carrier, so the loop never runs. Use AND, IS NOT DISTINCT FROM for the nullable state_id/country_id (matches pickup locations without a state/country), parent_id IS NOT NULL, and pass .id (not the recordset) for the relational params. Bug from OCA#5740 (pedrobaeza).
dnplkndll
added a commit
to ledoent/OpenUpgrade
that referenced
this pull request
Aug 11, 2026
…fill _mark_pickup_auxiliary_addresses built an UPDATE whose WHERE used comma-separated conditions instead of AND (plus `parent_id != False` and a trailing comma) — invalid SQL that raises syntax error the moment a pickup carrier (delivery_type='in_store') exists. CI is green only because the demo seed has no in_store carrier, so the loop never runs. Use AND, IS NOT DISTINCT FROM for the nullable state_id/country_id (matches pickup locations without a state/country), parent_id IS NOT NULL, and pass .id (not the recordset) for the relational params. Bug from OCA#5740 (pedrobaeza).
dnplkndll
added a commit
to ledoent/OpenUpgrade
that referenced
this pull request
Aug 13, 2026
…fill _mark_pickup_auxiliary_addresses built an UPDATE whose WHERE used comma-separated conditions instead of AND (plus `parent_id != False` and a trailing comma) — invalid SQL that raises syntax error the moment a pickup carrier (delivery_type='in_store') exists. CI is green only because the demo seed has no in_store carrier, so the loop never runs. Use AND, IS NOT DISTINCT FROM for the nullable state_id/country_id (matches pickup locations without a state/country), parent_id IS NOT NULL, and pass .id (not the recordset) for the relational params. Bug from OCA#5740 (pedrobaeza).
dnplkndll
added a commit
to ledoent/OpenUpgrade
that referenced
this pull request
Aug 16, 2026
…fill _mark_pickup_auxiliary_addresses built an UPDATE whose WHERE used comma-separated conditions instead of AND (plus `parent_id != False` and a trailing comma) — invalid SQL that raises syntax error the moment a pickup carrier (delivery_type='in_store') exists. CI is green only because the demo seed has no in_store carrier, so the loop never runs. Use AND, IS NOT DISTINCT FROM for the nullable state_id/country_id (matches pickup locations without a state/country), parent_id IS NOT NULL, and pass .id (not the recordset) for the relational params. Bug from OCA#5740 (pedrobaeza).
dnplkndll
added a commit
to ledoent/OpenUpgrade
that referenced
this pull request
Aug 18, 2026
…fill _mark_pickup_auxiliary_addresses built an UPDATE whose WHERE used comma-separated conditions instead of AND (plus `parent_id != False` and a trailing comma) — invalid SQL that raises syntax error the moment a pickup carrier (delivery_type='in_store') exists. CI is green only because the demo seed has no in_store carrier, so the loop never runs. Use AND, IS NOT DISTINCT FROM for the nullable state_id/country_id (matches pickup locations without a state/country), parent_id IS NOT NULL, and pass .id (not the recordset) for the relational params. Bug from OCA#5740 (pedrobaeza).
dnplkndll
added a commit
to ledoent/OpenUpgrade
that referenced
this pull request
Aug 19, 2026
…fill _mark_pickup_auxiliary_addresses built an UPDATE whose WHERE used comma-separated conditions instead of AND (plus `parent_id != False` and a trailing comma) — invalid SQL that raises syntax error the moment a pickup carrier (delivery_type='in_store') exists. CI is green only because the demo seed has no in_store carrier, so the loop never runs. Use AND, IS NOT DISTINCT FROM for the nullable state_id/country_id (matches pickup locations without a state/country), parent_id IS NOT NULL, and pass .id (not the recordset) for the relational params. Bug from OCA#5740 (pedrobaeza).
dnplkndll
added a commit
to ledoent/OpenUpgrade
that referenced
this pull request
Aug 20, 2026
…fill _mark_pickup_auxiliary_addresses built an UPDATE whose WHERE used comma-separated conditions instead of AND (plus `parent_id != False` and a trailing comma) — invalid SQL that raises syntax error the moment a pickup carrier (delivery_type='in_store') exists. CI is green only because the demo seed has no in_store carrier, so the loop never runs. Use AND, IS NOT DISTINCT FROM for the nullable state_id/country_id (matches pickup locations without a state/country), parent_id IS NOT NULL, and pass .id (not the recordset) for the relational params. Bug from OCA#5740 (pedrobaeza).
dnplkndll
added a commit
to ledoent/OpenUpgrade
that referenced
this pull request
Aug 21, 2026
…fill _mark_pickup_auxiliary_addresses built an UPDATE whose WHERE used comma-separated conditions instead of AND (plus `parent_id != False` and a trailing comma) — invalid SQL that raises syntax error the moment a pickup carrier (delivery_type='in_store') exists. CI is green only because the demo seed has no in_store carrier, so the loop never runs. Use AND, IS NOT DISTINCT FROM for the nullable state_id/country_id (matches pickup locations without a state/country), parent_id IS NOT NULL, and pass .id (not the recordset) for the relational params. Bug from OCA#5740 (pedrobaeza).
dnplkndll
added a commit
to ledoent/OpenUpgrade
that referenced
this pull request
Aug 22, 2026
…fill _mark_pickup_auxiliary_addresses built an UPDATE whose WHERE used comma-separated conditions instead of AND (plus `parent_id != False` and a trailing comma) — invalid SQL that raises syntax error the moment a pickup carrier (delivery_type='in_store') exists. CI is green only because the demo seed has no in_store carrier, so the loop never runs. Use AND, IS NOT DISTINCT FROM for the nullable state_id/country_id (matches pickup locations without a state/country), parent_id IS NOT NULL, and pass .id (not the recordset) for the relational params. Bug from OCA#5740 (pedrobaeza).
dnplkndll
added a commit
to ledoent/OpenUpgrade
that referenced
this pull request
Aug 25, 2026
…fill _mark_pickup_auxiliary_addresses built an UPDATE whose WHERE used comma-separated conditions instead of AND (plus `parent_id != False` and a trailing comma) — invalid SQL that raises syntax error the moment a pickup carrier (delivery_type='in_store') exists. CI is green only because the demo seed has no in_store carrier, so the loop never runs. Use AND, IS NOT DISTINCT FROM for the nullable state_id/country_id (matches pickup locations without a state/country), parent_id IS NOT NULL, and pass .id (not the recordset) for the relational params. Bug from OCA#5740 (pedrobaeza).
dnplkndll
added a commit
to ledoent/OpenUpgrade
that referenced
this pull request
Aug 26, 2026
…fill _mark_pickup_auxiliary_addresses built an UPDATE whose WHERE used comma-separated conditions instead of AND (plus `parent_id != False` and a trailing comma) — invalid SQL that raises syntax error the moment a pickup carrier (delivery_type='in_store') exists. CI is green only because the demo seed has no in_store carrier, so the loop never runs. Use AND, IS NOT DISTINCT FROM for the nullable state_id/country_id (matches pickup locations without a state/country), parent_id IS NOT NULL, and pass .id (not the recordset) for the relational params. Bug from OCA#5740 (pedrobaeza).
dnplkndll
added a commit
to ledoent/OpenUpgrade
that referenced
this pull request
Aug 27, 2026
…fill _mark_pickup_auxiliary_addresses built an UPDATE whose WHERE used comma-separated conditions instead of AND (plus `parent_id != False` and a trailing comma) — invalid SQL that raises syntax error the moment a pickup carrier (delivery_type='in_store') exists. CI is green only because the demo seed has no in_store carrier, so the loop never runs. Use AND, IS NOT DISTINCT FROM for the nullable state_id/country_id (matches pickup locations without a state/country), parent_id IS NOT NULL, and pass .id (not the recordset) for the relational params. Bug from OCA#5740 (pedrobaeza).
dnplkndll
added a commit
to ledoent/OpenUpgrade
that referenced
this pull request
Aug 28, 2026
…fill _mark_pickup_auxiliary_addresses built an UPDATE whose WHERE used comma-separated conditions instead of AND (plus `parent_id != False` and a trailing comma) — invalid SQL that raises syntax error the moment a pickup carrier (delivery_type='in_store') exists. CI is green only because the demo seed has no in_store carrier, so the loop never runs. Use AND, IS NOT DISTINCT FROM for the nullable state_id/country_id (matches pickup locations without a state/country), parent_id IS NOT NULL, and pass .id (not the recordset) for the relational params. Bug from OCA#5740 (pedrobaeza).
dnplkndll
added a commit
to ledoent/OpenUpgrade
that referenced
this pull request
Aug 30, 2026
…fill _mark_pickup_auxiliary_addresses built an UPDATE whose WHERE used comma-separated conditions instead of AND (plus `parent_id != False` and a trailing comma) — invalid SQL that raises syntax error the moment a pickup carrier (delivery_type='in_store') exists. CI is green only because the demo seed has no in_store carrier, so the loop never runs. Use AND, IS NOT DISTINCT FROM for the nullable state_id/country_id (matches pickup locations without a state/country), parent_id IS NOT NULL, and pass .id (not the recordset) for the relational params. Bug from OCA#5740 (pedrobaeza).
dnplkndll
added a commit
to ledoent/OpenUpgrade
that referenced
this pull request
Aug 31, 2026
…fill _mark_pickup_auxiliary_addresses built an UPDATE whose WHERE used comma-separated conditions instead of AND (plus `parent_id != False` and a trailing comma) — invalid SQL that raises syntax error the moment a pickup carrier (delivery_type='in_store') exists. CI is green only because the demo seed has no in_store carrier, so the loop never runs. Use AND, IS NOT DISTINCT FROM for the nullable state_id/country_id (matches pickup locations without a state/country), parent_id IS NOT NULL, and pass .id (not the recordset) for the relational params. Bug from OCA#5740 (pedrobaeza).
dnplkndll
added a commit
to ledoent/OpenUpgrade
that referenced
this pull request
Sep 2, 2026
…fill _mark_pickup_auxiliary_addresses built an UPDATE whose WHERE used comma-separated conditions instead of AND (plus `parent_id != False` and a trailing comma) — invalid SQL that raises syntax error the moment a pickup carrier (delivery_type='in_store') exists. CI is green only because the demo seed has no in_store carrier, so the loop never runs. Use AND, IS NOT DISTINCT FROM for the nullable state_id/country_id (matches pickup locations without a state/country), parent_id IS NOT NULL, and pass .id (not the recordset) for the relational params. Bug from OCA#5740 (pedrobaeza).
dnplkndll
added a commit
to ledoent/OpenUpgrade
that referenced
this pull request
Sep 3, 2026
…fill _mark_pickup_auxiliary_addresses built an UPDATE whose WHERE used comma-separated conditions instead of AND (plus `parent_id != False` and a trailing comma) — invalid SQL that raises syntax error the moment a pickup carrier (delivery_type='in_store') exists. CI is green only because the demo seed has no in_store carrier, so the loop never runs. Use AND, IS NOT DISTINCT FROM for the nullable state_id/country_id (matches pickup locations without a state/country), parent_id IS NOT NULL, and pass .id (not the recordset) for the relational params. Bug from OCA#5740 (pedrobaeza).
dnplkndll
added a commit
to ledoent/OpenUpgrade
that referenced
this pull request
Sep 4, 2026
…fill _mark_pickup_auxiliary_addresses built an UPDATE whose WHERE used comma-separated conditions instead of AND (plus `parent_id != False` and a trailing comma) — invalid SQL that raises syntax error the moment a pickup carrier (delivery_type='in_store') exists. CI is green only because the demo seed has no in_store carrier, so the loop never runs. Use AND, IS NOT DISTINCT FROM for the nullable state_id/country_id (matches pickup locations without a state/country), parent_id IS NOT NULL, and pass .id (not the recordset) for the relational params. Bug from OCA#5740 (pedrobaeza).
dnplkndll
added a commit
to ledoent/OpenUpgrade
that referenced
this pull request
Sep 8, 2026
…fill _mark_pickup_auxiliary_addresses built an UPDATE whose WHERE used comma-separated conditions instead of AND (plus `parent_id != False` and a trailing comma) — invalid SQL that raises syntax error the moment a pickup carrier (delivery_type='in_store') exists. CI is green only because the demo seed has no in_store carrier, so the loop never runs. Use AND, IS NOT DISTINCT FROM for the nullable state_id/country_id (matches pickup locations without a state/country), parent_id IS NOT NULL, and pass .id (not the recordset) for the relational params. Bug from OCA#5740 (pedrobaeza).
dnplkndll
added a commit
to ledoent/OpenUpgrade
that referenced
this pull request
Sep 10, 2026
…fill _mark_pickup_auxiliary_addresses built an UPDATE whose WHERE used comma-separated conditions instead of AND (plus `parent_id != False` and a trailing comma) — invalid SQL that raises syntax error the moment a pickup carrier (delivery_type='in_store') exists. CI is green only because the demo seed has no in_store carrier, so the loop never runs. Use AND, IS NOT DISTINCT FROM for the nullable state_id/country_id (matches pickup locations without a state/country), parent_id IS NOT NULL, and pass .id (not the recordset) for the relational params. Bug from OCA#5740 (pedrobaeza).
dnplkndll
added a commit
to ledoent/OpenUpgrade
that referenced
this pull request
Sep 11, 2026
…fill _mark_pickup_auxiliary_addresses built an UPDATE whose WHERE used comma-separated conditions instead of AND (plus `parent_id != False` and a trailing comma) — invalid SQL that raises syntax error the moment a pickup carrier (delivery_type='in_store') exists. CI is green only because the demo seed has no in_store carrier, so the loop never runs. Use AND, IS NOT DISTINCT FROM for the nullable state_id/country_id (matches pickup locations without a state/country), parent_id IS NOT NULL, and pass .id (not the recordset) for the relational params. Bug from OCA#5740 (pedrobaeza).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Inferred this one while reviewing
delivery.@Tecnativa TT63193