How to include html generated by one function in another ?

How to include html generated by one function in another ?

Hello,
I desesperatly try to include the html generated by the function  AjouterRepasMesures(DateCourte, MomPrise, htmlAffMesures) within the html generated by the function  AfficheMesures() in the places between  //**************************
could someone put me on the path? 
Thanks in advance

Here is the code:
  1. 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
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
     
    function AfficheMesures()
    {
        $("#CollapsMesuresSet").empty();
        var sqlSelectMesures = "SELECT * FROM T_Mesures ORDER BY DateSort DESC";
        var jourPrec = "";
        var htmlAffMesures = "";
        db.transaction(function (tx)
        {
            tx.executeSql(sqlSelectMesures, undefined, function (tx, result)
            {
                if (result.rows.length)
                {
                    for (var i = 0; i < result.rows.length; i++)
                    {
                        var row = result.rows.item(i);
                        var Id = row.Id;
                        var DateFR = row.DateFR;
                        var DateCourte = row.DateCourte;
                        var DateSort = row.DateSort;
                        var MomPrise = row.Moment;
                        var NomInsul = row.NomInsul;
                        var ValTrait = row.ValTrait;
                        var ValShema = row.ValShema;
                        var MesureGly = row.MesureGly;
                        var MesureInject = row.MesureInjection;
                        var res = "";
                        var sign = ValShema > 0 ? 1 : ValShema === 0 ? 0 : -1;
                        var res = ((sign === 0) || (sign >= 0) || (!sign)) ? "+" : "";
                        colorValGly = "";
                        switch (true)
                        {
                            case (MesureGly <= 120):
                                {
                                    var colorValGly = "BGGreen";
                                }
                                break;
                            case ((MesureGly > 120) && (MesureGly <= 180)):
                                {
                                    var colorValGly = "BGOrange";
                                }
                                break;
                            default:
                                {
                                    var colorValGly = "BGRed";
                                }
                                break;
                        }
                        switch (true) {
                            case (i === 0):
                                htmlAffMesures +=
                                        "<div data-role='collapsible' id='CollapsMesures' data-theme='a'" +
                                        "   data-collapsed-icon='carat-d' " +
                                        "   data-expanded-icon ='carat-u'" +
                                        "   data-mini='true'" +
                                        "   data-collapsed=true data-iconpos='right' class='ui-corner-all'>" +
                                        "   <h3>" + DateFR + "</h3>" +
                                        "   <div data-role='collapsible' id='CollapsMoment' data-theme='a'" +
                                        "        data-collapsed-icon='carat-d' " +
                                        "        data-expanded-icon ='carat-u'" +
                                        "        data-collapsed=true data-iconpos='right' class='ui-corner-all'>" +
                                        "           <h3>" + MomPrise + "</h3>" +
                                        "       <table id='T_AffMesure'>" +
                                        "           <tr>" +
                                        "               <td class='TitTabMesuresDarkgreen'> Glycémie </td>" +
                                        "               <td colspan='2' class='" + colorValGly + "'>" + MesureGly + "</td>" +
                                        "           </tr>" +
                                        "           <tr>" +
                                        "               <td class='TitTabMesuresBlue'> Nom : </td>" +
                                        "               <td colspan='3'>" + NomInsul + "</td>" +
                                        "           </tr>" +
                                        "           <tr>" +
                                        "               <td class='TitTabMesuresBlue'> Traitement </td>" +
                                        "               <td class='TitTabMesuresBlue'> Shéma </td>" +
                                        "               <td class='TitTabMesuresBlue'> Injection </td>" +
                                        "           </tr>" +
                                        "           <tr>" +
                                        "               <td>" + ValTrait + "</td>" +
                                        "               <td>" + res + " " + ValShema + "</td>" +
                                        "               <td>" + MesureInject + "</td>" +
                                        "           <tr>" +
                                        "       </table>" +
                                        "       <table id='Tab_Repas'>";
                                //**************************
                                var txt = AjouterRepasMesures(DateCourte, MomPrise, htmlAffMesures);
                                console.log("retour txt = " + txt);
                                htmlAffMesures = txt;
                                //************************** 
                                htmlAffMesures +=
                                        "       </table>" +
                                        "       <table id='Tab_Sport'></table>" +
                                        "   </div>";
                                jourPrec = DateCourte;
                                break;
                            case ((i >= 1) && (jourPrec !== DateCourte)):
                                htmlAffMesures +=
                                        "</div>" +
                                        "<div data-role='collapsible' id='CollapsMesures' data-theme='a'" +
                                        "   data-collapsed-icon='carat-d' " +
                                        "   data-expanded-icon ='carat-u'" +
                                        "   data-collapsed='true'" +
                                        "   data-mini='true'" +
                                        "   data-iconpos='right' class='ui-corner-all'>" +
                                        "   <h3>" + DateFR + "</h3>" +
                                        "   <div data-role='collapsible' id='CollapsMoment' data-theme='a'" +
                                        "        data-collapsed-icon='carat-d' " +
                                        "        data-expanded-icon ='carat-u'" +
                                        "        data-collapsed=true data-iconpos='right' class='ui-corner-all'>" +
                                        "           <h3>" + MomPrise + "</h3>" +
                                        "       <table id='T_AffMesure'>" +
                                        "           <tr>" +
                                        "               <td class='TitTabMesuresDarkgreen'> Glycémie </td>" +
                                        "               <td colspan='2' class='" + colorValGly + "'>" + MesureGly + "</td>" +
                                        "           </tr>" +
                                        "           <tr>" +
                                        "               <td class='TitTabMesuresBlue'>" + " Nom : </td>" +
                                        "               <td colspan='3'>" + NomInsul + "</td>" +
                                        "           </tr>" +
                                        "           <tr>" +
                                        "               <td class='TitTabMesuresBlue'> Traitement </td>" +
                                        "               <td class='TitTabMesuresBlue'> Shéma </td>" +
                                        "               <td class='TitTabMesuresBlue'> Injection </td>" +
                                        "           </tr>" +
                                        "           <tr>" +
                                        "               <td>" + ValTrait + "</td>" +
                                        "               <td>" + res + " " + ValShema + "</td>" +
                                        "               <td>" + MesureInject + "</td>" +
                                        "           <tr>" +
                                        "       </table>" +
                                        "       <table id='Tab_Repas'>";
                                //**************************
                                var txt = AjouterRepasMesures(DateCourte, MomPrise, htmlAffMesures);
                                console.log("retour txt = " + txt);
                                htmlAffMesures = txt;
                                //************************** 
                                htmlAffMesures +=
                                        "       </table>" +
                                        "       <table id='Tab_Sport'></table>" +
                                        "   </div>";
                                jourPrec = DateCourte;
                                break;
                            default:
                                htmlAffMesures +=
                                        "   <div data-role='collapsible' id='CollapsMoment' data-theme='a'" +
                                        "        data-collapsed-icon='carat-d' " +
                                        "        data-expanded-icon ='carat-u'" +
                                        "        data-mini='true'" +
                                        "        data-collapsed=true data-iconpos='right' class='ui-corner-all'>" +
                                        "           <h3>" + MomPrise + "</h3>" +
                                        "       <table id='T_AffMesure'>" +
                                        "           <tr>" +
                                        "               <td class='TitTabMesuresDarkgreen'> Glycémie </td>" +
                                        "               <td colspan='2' class='" + colorValGly + "'>" + MesureGly + "</td>" +
                                        "           </tr>" +
                                        "           <tr>" +
                                        "               <td class='TitTabMesuresBlue'> Nom : </td>" +
                                        "               <td colspan='3'>" + NomInsul + "</td>" +
                                        "           </tr>" +
                                        "           <tr>" +
                                        "               <td class='TitTabMesuresBlue'> Traitement </td>" +
                                        "               <td class='TitTabMesuresBlue'> Shéma </td>" +
                                        "               <td class='TitTabMesuresBlue'> Injection</td>" +
                                        "           </tr>" +
                                        "           <tr>" +
                                        "               <td>" + ValTrait + "</td>" +
                                        "               <td>" + res + " " + ValShema + "</td>" +
                                        "               <td>" + MesureInject + "</td>" +
                                        "           <tr>" +
                                        "       </table>" +
                                        "       <table id='Tab_Repas'>";
                                //**************************
                                var txt = AjouterRepasMesures(DateCourte, MomPrise, htmlAffMesures);
                                console.log("retour txt = " + txt);
                                htmlAffMesures = txt;
                                //************************** 
                                htmlAffMesures +=
                                        "       </table>" +
                                        "       <table id='Tab_Sport'></table>" +
                                        "   </div>";
                                jourPrec = DateCourte;
                                break;
                        }
                    }
     
                } else
                {
                    console.log("Pas d'enregistrement Mesures");
                }
                htmlAffMesures += "   </div>";
                $(htmlAffMesures).appendTo("#CollapsMesuresSet");
                $("#CollapsMesuresSet").enhanceWithin(); 
            }, erreur_bd);
        });
    }
    ;// ****************************************************************************
     
    function AjouterRepasMesures(DateCourte, MomPrise, htmlAffMesures)
    {
        var sqlSelectRepas = "SELECT * FROM T_CompoRepas WHERE DateCourte = '" + DateCourte + "' AND Moment = '" + MomPrise + "'";
     
        var retText = htmlAffMesures + txt;
        db.transaction(function (tx, txt)
        {
            txt2 = txt1;
            tx.executeSql(sqlSelectRepas, undefined, function (tx, result, txt)
            {
                var txt1 = txt;
                if (result.rows.length)
                {
                    for (var i = 0; i < result.rows.length; i++)
                    {
                        var row = result.rows.item(i);
                        var Nom = row.NomAlim;
                        var Date = row.DateCourte;
                        var Portion = row.Portion;
                        var Unite = row.Unite;
                        var IG = row.IG;
                        var Cal = row.Cal;
                        var Glu = row.Glu;
                        var Lip = row.Lip;
                        var TotIG = TotIG + IG;
                        var TotCal = TotCal + Cal;
                        var TotGlu = TotGlu + Glu;
                        var TotLip = TotLip + Lip;
                        txt =
                                "<tr>" +
                                "   <td>" +
                                "       <h3>Aliment:</h3>" +
                                "   </td>" +
                                "   <td colspan='3'>" +
                                Nom +
                                "   </td>" +
                                "</tr>";
                        // et le restant des valeurs de la table a ajouter
                        console.log("TXT =" + txt);
                        return txt;
                    }
                }
     
            }, erreur_bd); 
        });
       return retText;
    };