taron133
2020-10-26 aa8d874c8a3287d41d26566ae32b6ed8d4557ff9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<a href="{$GRID_LINK}"><img src="images/return.png" alt="Output" /></a><br />
<table summary="Table" style="border:1px #666 solid;" width="100%">
<tr>
    <td class="fixed" style="color:green;" align="center" colspan="{$IMPORT_DATA_COL_NUM}">
        Added:
    </td>
</tr>
 
<tr>
  {section name=sec loop=$IMPORT_DATA_NAME}
    <td class="fixed" align="center">
        {$IMPORT_DATA_NAME[sec]}
    </td>
  {/section}
</tr>
 
{section name=sec loop=$IMPORT_DATA}
<tr align="center">
 {section name=sec2 loop=$IMPORT_DATA[sec]}
  <td style="text-size:small;FONT-WEIGHT: normal;background-color:#{if $smarty.section.sec.rownum%2==1}AADDFF{else}BFF7FF{/if};">
    {$IMPORT_DATA[sec][sec2]}
  </td>
 {/section}
</tr>
{/section}
 
</table><br /><br />
 
<table summary="Table" style="border:1px #666 solid;" width="100%">
<tr>
    <td class="fixed" style="color:red;" align="center" colspan="{$IMPORT_DATA_COL_NUM}">
        Error unique:
    </td>
</tr>
 
<tr>
  {section name=sec loop=$IMPORT_DATA_NAME}
    <td class="fixed" align="center">{$IMPORT_DATA_NAME[sec]}</td>
  {/section}
</tr>
 
{section name=sec loop=$IMPORT_DATA_ERR_UNIQ}
<tr align="center">
 {section name=sec2 loop=$IMPORT_DATA_ERR_UNIQ[sec]}
  <td style="text-size:small;FONT-WEIGHT: normal;background-color:#{if $smarty.section.sec.rownum%2==1}FFBAAA{else}FFB5B9{/if};">
    {$IMPORT_DATA_ERR_UNIQ[sec][sec2]}
  </td>
 {/section}
</tr>
{/section}
 
</table><br /><br />
 
<table summary="Table" style="border:1px #666 solid;" width="100%">
<tr>
    <td class="fixed" style="color:red;" align="center" colspan="{$IMPORT_DATA_COL_NUM}">
        Other errors:
    </td>
</tr>
 
<tr>
  {section name=sec loop=$IMPORT_DATA_NAME}
    <td class="fixed" align="center">{$IMPORT_DATA_NAME[sec]}</td>
  {/section}
</tr>
 
{section name=sec loop=$IMPORT_DATA_ERR}
<tr align="center" title="{$IMPORT_DATA_ERR[sec][$IMPORT_DATA_COL_NUM]}">
 {section name=sec2 loop=$IMPORT_DATA_ERR[sec]}
 {if $smarty.section.sec2.rownum != $smarty.section.sec2.total}
  <td style="text-size:small;FONT-WEIGHT: normal;background-color:#{if $smarty.section.sec.rownum%2==1}FFBAAA{else}FFB5B9{/if};">
    {$IMPORT_DATA_ERR[sec][sec2]}
  </td>
  {/if}
 {/section}
</tr>
{/section}
 
</table>