You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When this change #578 is implemented by an OM upgrade all initial records in the bill_name and shipping_name columns will remain in their original form with a double space between the names. My opinion that an sql upgrade should be created to modify these records too not only the php files.
I did it quickly directly in the database with the help of the SQL script bellow and I didn't limit myself to just two spaces between the names, there can be even more. In this way not only the recordings after the upgrade are found correctly, but all of them!
UPDATE `sales_flat_creditmemo_grid`
SET `billing_name`= REGEXP_REPLACE(billing_name, '[[:space:]]+', ' ');
UPDATE `sales_flat_invoice_grid`
SET `billing_name`= REGEXP_REPLACE(billing_name, '[[:space:]]+', ' ');
UPDATE `sales_flat_order_grid`
SET `shipping_name`= REGEXP_REPLACE(shipping_name, '[[:space:]]+', ' ');
UPDATE `sales_flat_order_grid`
SET `billing_name`= REGEXP_REPLACE(billing_name, '[[:space:]]+', ' ');
UPDATE `sales_flat_shipment_grid`
SET `shipping_name`= REGEXP_REPLACE(shipping_name, '[[:space:]]+', ' ');
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
When this change #578 is implemented by an OM upgrade all initial records in the bill_name and shipping_name columns will remain in their original form with a double space between the names. My opinion that an sql upgrade should be created to modify these records too not only the php files.
I did it quickly directly in the database with the help of the SQL script bellow and I didn't limit myself to just two spaces between the names, there can be even more. In this way not only the recordings after the upgrade are found correctly, but all of them!
Beta Was this translation helpful? Give feedback.
All reactions