Account created on 7 September 2013, about 11 years ago
#

Merge Requests

Recent comments

πŸ‡ΊπŸ‡¦Ukraine andriic

oh, I see we already have a fix in dev version within this task https://www.drupal.org/project/commerce_klarna_checkout/issues/3466923 πŸ› Fix the failing tests Fixed
@jsacksick please create new release)
absent "return $instance;" creates fatals.
thanks

πŸ‡ΊπŸ‡¦Ukraine andriic

hi @joachim
I've updated MR to make it work with 3.1 version.
could you pls change target branch in MR to 3.1.x ?
tnx

πŸ‡ΊπŸ‡¦Ukraine andriic

We had the same issue.
Our database version was updated from mariadb:10.0 to mariadb:10.3.
row_format of tables was changed:

ALTER TABLE commerce_store_field_data ROW_FORMAT=DYNAMIC;
ALTER TABLE profile__address ROW_FORMAT=DYNAMIC;
ALTER TABLE profile_revision__address ROW_FORMAT=DYNAMIC;

And columns were dropped before running update.

ALTER TABLE commerce_store_field_data DROP COLUMN address__address_line3;
ALTER TABLE profile__address DROP COLUMN address_address_line3;
ALTER TABLE profile_revision__address DROP COLUMN address_address_line3;
πŸ‡ΊπŸ‡¦Ukraine andriic

andriic β†’ changed the visibility of the branch 3449669-add-states to hidden.

πŸ‡ΊπŸ‡¦Ukraine andriic

change the value in input element and run. raw example

const input = element.querySelector('input');
input.value += 1;
input.dispatchEvent(new window.Event('change', { bubbles: true }));
setTimeout(() => {
  input.dispatchEvent(new window.Event('blur', { bubbles: true }));
}, 200);
πŸ‡ΊπŸ‡¦Ukraine andriic

Rerolled the patch from #36 for Durpal 10.2.2.

πŸ‡ΊπŸ‡¦Ukraine andriic

Thanks @paulmartin84!
patch is working, paragraphs correctly updated after accepting translation.

πŸ‡ΊπŸ‡¦Ukraine andriic

MR was created.
and patch here for info

πŸ‡ΊπŸ‡¦Ukraine andriic

branch was created.
and here's the patch from it.

πŸ‡ΊπŸ‡¦Ukraine andriic

Hi @smulvih2.

Incorrect rows in results.
Steps to reproduce bug with incorrect offset:
1) Create new view with CSV data export.
2) set path, filename. Export Method: Batch, size 100, limit 101.
3) export with drush command
drush vde_drush:views-data-export view_name display_id /filepath/test.csv --yes

Result: in exported file you will have header more than 200 rows.

As I previosuly mentioned, I've changed data in queue item from views object to view_id and display_id.
This will allow use to execute query each time with correct offset and items per page.

Issue with queue items:
Queue can consists of more then one export when it's running in the same time.
For example you have a cron which use drush to export and at the same time you doing it manually from drush command.
That's why I've removed line
- $total_queue_items = $queue->numberOfItems() * $items_per_batch - $items_per_batch;
which makes no sense if there are more than one batch at the same time.

πŸ‡ΊπŸ‡¦Ukraine andriic

Thanks @klausi, Looks good!

πŸ‡ΊπŸ‡¦Ukraine andriic

Updated patch. I found an issue where in exported XML file last close tag was missed.

Production build 0.71.5 2024