erreur action de masse

  • Posts: 2605
  • Thank you received: 65
  • Hikashop Business
3 months 1 week ago #358231

-- HikaShop version -- : 5.0.2

erreur

You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near '`` LIKE 'country_France__Metropolitan_74' OR zone_name_english `` LIKE 'count...' at line 1


quand j essaye de créer une action de masse


merci

Attachments:

Please Log in or Create an account to join the conversation.

  • Posts: 81540
  • Thank you received: 13071
  • MODERATOR
3 months 1 week ago #358233

Bonjour,

Merci pour votre retour.
Changez le code:

					$key = str_replace($filter['type'],'',$this->massaction->getRequest($filter));
					$nquery .= 'zone_name '.$key.' OR zone_name_english '.$key.' OR zone_namekey '.$key;
en:
					$zonefilter = hikashop_copy($filter);
					$columns = array('zone_name', 'zone_name_english', 'zone_namekey');
					$conditions = array();
					foreach($columns as $column) {
						$zonefilter['type'] = $column;
						$conditions[] = $this->massaction->getRequest($zonefilter);
					}
					$nquery .= '('.implode(' OR ', $conditions).')';
dans le fichier plugins/hikashop/massaction_address/massaction_address.php et cela devrait corriger le problème.

Last edit: 3 months 1 week ago by nicolas.
The following user(s) said Thank You: erickb

Please Log in or Create an account to join the conversation.

  • Posts: 2605
  • Thank you received: 65
  • Hikashop Business
3 months 1 week ago #358241

merci

Please Log in or Create an account to join the conversation.

Time to create page: 0.067 seconds
Powered by Kunena Forum