소스 검색

Feltoltott excel fajl termek import click validacios uzenet worksheet name error index display fix

master
Dukai Károly 3 년 전
부모
커밋
168b09ea48
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. +2
    -1
      modules/custom/arlista/src/Factory/SpreadSheetFactory.php

+ 2
- 1
modules/custom/arlista/src/Factory/SpreadSheetFactory.php 파일 보기

@@ -136,7 +136,8 @@ class SpreadSheetFactory extends AbstractSpreadSheetFactory {
$cleanSheetSettingName = strtolower(preg_replace("/[^A-Za-z0-9 ]/", '', $sheetSetting->getName()));

if (strcmp($cleanWorkSheetTitle, $cleanSheetSettingName) != 0) {
$result['extracted'][$sheetSetting->getIndex()]['validation'] = ['A munkalap neve nem megfelő. Ellenőrizze a konfigurációkat! Munkalap száma: ' . ($sheetSetting->getIndex() + 1)];
$workSheetIndex = $sheetSetting->getIndex() + 1;
$result['extracted'][$sheetSetting->getIndex()]['validation'] = ['A munkalap neve nem megfelő. Ellenőrizze a konfigurációkat! Munkalap száma: ' . $workSheetIndex];

return $result;
}

Loading…
취소
저장