Skip to content

Commit

Permalink
Merge pull request iNextrix#699 from iNextrix/ASTPPENT-1358_customer_…
Browse files Browse the repository at this point in the history
…import_error_csv_file

[FIX] customer import non-functional - error is csv file
  • Loading branch information
devangn authored Jul 6, 2023
2 parents b81f45d + 9c57544 commit 7a98642
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,9 @@ class="custom-file-label btn-primary btn-file text-left"
<tbody>
<?php
foreach ($mapto_fields['general_info'] as $csv_key => $csv_value) {
$custom_value = $csv_value . gettext("--Select--");
// ASTPPCOM-1358_gautam_start
$custom_value = $csv_value . gettext("-select");
// ASTPPCOM-1358_gautam_end
$params_arr = array(
"id" => $custom_value,
"name" => $custom_value,
Expand Down Expand Up @@ -264,7 +266,9 @@ class="custom-file-label btn-primary btn-file text-left"
<tbody>
<?php
foreach ($mapto_fields['settings'] as $csv_key => $csv_value) {
$custom_value = $csv_value . gettext("--Select--");
// ASTPPCOM-1358_gautam_start
$custom_value = $csv_value . gettext("-select");
// ASTPPCOM-1358_gautam_end
$params_arr = array(
"id" => $custom_value,
"name" => $custom_value,
Expand Down

0 comments on commit 7a98642

Please sign in to comment.