|
|
@@ -96,6 +96,8 @@
|
|
|
<hr size="1">
|
|
|
</div>
|
|
|
|
|
|
+ <button style="display:none" class="btn--ui btNewPayment" onclick="newPayment()">NUOVO PAGAMENTO</button>
|
|
|
+
|
|
|
<section id="resume-table">
|
|
|
<div class="compare--chart_wrapper d-none"></div>
|
|
|
|
|
|
@@ -147,19 +149,19 @@
|
|
|
<tfoot id="checkall-target">
|
|
|
<tr>
|
|
|
<th colspan="2"></th>
|
|
|
- <th></th>
|
|
|
- <th></th>
|
|
|
- <th></th>
|
|
|
- <th></th>
|
|
|
- <th></th>
|
|
|
- <th></th>
|
|
|
- <th></th>
|
|
|
- <th></th>
|
|
|
- <th></th>
|
|
|
- <th></th>
|
|
|
- <th></th>
|
|
|
- <th></th>
|
|
|
- <th></th>
|
|
|
+ <th style="padding-left:5px !important;padding-right:5px !important;"></th>
|
|
|
+ <th style="padding-left:5px !important;padding-right:5px !important;"></th>
|
|
|
+ <th style="padding-left:5px !important;padding-right:5px !important;"></th>
|
|
|
+ <th style="padding-left:5px !important;padding-right:5px !important;"></th>
|
|
|
+ <th style="padding-left:5px !important;padding-right:5px !important;"></th>
|
|
|
+ <th style="padding-left:5px !important;padding-right:5px !important;"></th>
|
|
|
+ <th style="padding-left:5px !important;padding-right:5px !important;"></th>
|
|
|
+ <th style="padding-left:5px !important;padding-right:5px !important;"></th>
|
|
|
+ <th style="padding-left:5px !important;padding-right:5px !important;"></th>
|
|
|
+ <th style="padding-left:5px !important;padding-right:5px !important;"></th>
|
|
|
+ <th style="padding-left:5px !important;padding-right:5px !important;"></th>
|
|
|
+ <th style="padding-left:5px !important;padding-right:5px !important;"></th>
|
|
|
+ <th style="padding-left:5px !important;padding-right:5px !important;"></th>
|
|
|
</tr>
|
|
|
</tfoot>
|
|
|
</table>
|
|
|
@@ -193,6 +195,10 @@
|
|
|
.select2 {
|
|
|
width:100% !important;
|
|
|
}
|
|
|
+ tfoot #checkall-target > tr > th
|
|
|
+ {
|
|
|
+ padding-right:5px !important;
|
|
|
+ }
|
|
|
</style>
|
|
|
<script src="https://code.jquery.com/jquery-2.2.4.min.js" integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=" crossorigin="anonymous"></script>
|
|
|
<script src="https://cdn.jsdelivr.net/npm/select2@4.1.0-rc.0/dist/js/select2.min.js"></script>
|
|
|
@@ -409,7 +415,7 @@
|
|
|
data: 'column_2',
|
|
|
render: function (data, type, row){
|
|
|
const x = data.split("§");
|
|
|
- var ret = '<a class="' + (x[0] == 1 ? 'green' : 'orange') + ' sub_' + row["column_16"] + '" onclick="setSubscription(' + row["column_15"] + ', ' + row["column_17"] + ', ' + row["column_16"] + ')" style="cursor: pointer;"><small>' + x[1] + '</small></a>';
|
|
|
+ var ret = '<a style="width:100%;float:right; text-align:right; display:block;" class="' + (x[0] == 1 ? 'green' : 'orange') + ' sub_' + row["column_16"] + '" onclick="setSubscription(' + row["column_15"] + ', ' + row["column_17"] + ', ' + row["column_16"] + ')" style="cursor: pointer;"><small>' + x[1] + '</small></a>';
|
|
|
return ret;
|
|
|
}
|
|
|
},
|
|
|
@@ -420,12 +426,12 @@
|
|
|
var ret = '';
|
|
|
if (x[0] == 'orange')
|
|
|
{
|
|
|
- ret = '<a class="' + x[0] + ' lnk_' + row["column_16"] + '" id="lnk_' + row["column_15"] + '_' + meta.row + '_' + row["column_17"] + '" onclick="setPayMonth(' + row["column_15"] + ', ' + meta.row + ', ' + row["column_17"] + ', ' + row["column_16"] + ')" style="cursor: pointer;"><small>' + x[1] + '</small></a>';
|
|
|
+ ret = '<a style="width:100%;float:right; text-align:right; display:block;" class="' + x[0] + ' lnk_' + row["column_16"] + '" id="lnk_' + row["column_15"] + '_' + meta.row + '_' + row["column_17"] + '" onclick="setPayMonth(' + row["column_15"] + ', ' + meta.row + ', ' + row["column_17"] + ', ' + row["column_16"] + ')" style="cursor: pointer;"><small>' + x[1] + '</small></a>';
|
|
|
}
|
|
|
else
|
|
|
{
|
|
|
if (x[0] != 'grey')
|
|
|
- ret = '<a class="' + x[0] + '"><small>' + x[1] + '</small></a>';
|
|
|
+ ret = '<a style="width:100%;float:right; text-align:right; display:block;" class="' + x[0] + '"><small>' + x[1] + '</small></a>';
|
|
|
}
|
|
|
return ret;
|
|
|
}
|
|
|
@@ -437,12 +443,12 @@
|
|
|
var ret = '';
|
|
|
if (x[0] == 'orange')
|
|
|
{
|
|
|
- ret = '<a class="' + x[0] + ' lnk_' + row["column_16"] + '" id="lnk_' + row["column_15"] + '_' + meta.row + '_' + row["column_17"] + '" onclick="setPayMonth(' + row["column_15"] + ', ' + meta.row + ', ' + row["column_17"] + ', ' + row["column_16"] + ')" style="cursor: pointer;"><small>' + x[1] + '</small></a>';
|
|
|
+ ret = '<a style="width:100%;float:right; text-align:right; display:block;" class="' + x[0] + ' lnk_' + row["column_16"] + '" id="lnk_' + row["column_15"] + '_' + meta.row + '_' + row["column_17"] + '" onclick="setPayMonth(' + row["column_15"] + ', ' + meta.row + ', ' + row["column_17"] + ', ' + row["column_16"] + ')" style="cursor: pointer;"><small>' + x[1] + '</small></a>';
|
|
|
}
|
|
|
else
|
|
|
{
|
|
|
if (x[0] != 'grey')
|
|
|
- ret = '<a class="' + x[0] + '"><small>' + x[1] + '</small></a>';
|
|
|
+ ret = '<a style="width:100%;float:right; text-align:right; display:block;" class="' + x[0] + '"><small>' + x[1] + '</small></a>';
|
|
|
}
|
|
|
return ret;
|
|
|
}
|
|
|
@@ -454,12 +460,12 @@
|
|
|
var ret = '';
|
|
|
if (x[0] == 'orange')
|
|
|
{
|
|
|
- ret = '<a class="' + x[0] + ' lnk_' + row["column_16"] + '" id="lnk_' + row["column_15"] + '_' + meta.row + '_' + row["column_17"] + '" onclick="setPayMonth(' + row["column_15"] + ', ' + meta.row + ', ' + row["column_17"] + ', ' + row["column_16"] + ')" style="cursor: pointer;"><small>' + x[1] + '</small></a>';
|
|
|
+ ret = '<a style="width:100%;float:right; text-align:right; display:block;" class="' + x[0] + ' lnk_' + row["column_16"] + '" id="lnk_' + row["column_15"] + '_' + meta.row + '_' + row["column_17"] + '" onclick="setPayMonth(' + row["column_15"] + ', ' + meta.row + ', ' + row["column_17"] + ', ' + row["column_16"] + ')" style="cursor: pointer;"><small>' + x[1] + '</small></a>';
|
|
|
}
|
|
|
else
|
|
|
{
|
|
|
if (x[0] != 'grey')
|
|
|
- ret = '<a class="' + x[0] + '"><small>' + x[1] + '</small></a>';
|
|
|
+ ret = '<a style="width:100%;float:right; text-align:right; display:block;" class="' + x[0] + '"><small>' + x[1] + '</small></a>';
|
|
|
}
|
|
|
return ret;
|
|
|
}
|
|
|
@@ -471,12 +477,12 @@
|
|
|
var ret = '';
|
|
|
if (x[0] == 'orange')
|
|
|
{
|
|
|
- ret = '<a class="' + x[0] + ' lnk_' + row["column_16"] + '" id="lnk_' + row["column_15"] + '_' + meta.row + '_' + row["column_17"] + '" onclick="setPayMonth(' + row["column_15"] + ', ' + meta.row + ', ' + row["column_17"] + ', ' + row["column_16"] + ')" style="cursor: pointer;"><small>' + x[1] + '</small></a>';
|
|
|
+ ret = '<a style="width:100%;float:right; text-align:right; display:block;" class="' + x[0] + ' lnk_' + row["column_16"] + '" id="lnk_' + row["column_15"] + '_' + meta.row + '_' + row["column_17"] + '" onclick="setPayMonth(' + row["column_15"] + ', ' + meta.row + ', ' + row["column_17"] + ', ' + row["column_16"] + ')" style="cursor: pointer;"><small>' + x[1] + '</small></a>';
|
|
|
}
|
|
|
else
|
|
|
{
|
|
|
if (x[0] != 'grey')
|
|
|
- ret = '<a class="' + x[0] + '"><small>' + x[1] + '</small></a>';
|
|
|
+ ret = '<a style="width:100%;float:right; text-align:right; display:block;" class="' + x[0] + '"><small>' + x[1] + '</small></a>';
|
|
|
}
|
|
|
return ret;
|
|
|
}
|
|
|
@@ -488,12 +494,12 @@
|
|
|
var ret = '';
|
|
|
if (x[0] == 'orange')
|
|
|
{
|
|
|
- ret = '<a class="' + x[0] + ' lnk_' + row["column_16"] + '" id="lnk_' + row["column_15"] + '_' + meta.row + '_' + row["column_17"] + '" onclick="setPayMonth(' + row["column_15"] + ', ' + meta.row + ', ' + row["column_17"] + ', ' + row["column_16"] + ')" style="cursor: pointer;"><small>' + x[1] + '</small></a>';
|
|
|
+ ret = '<a style="width:100%;float:right; text-align:right; display:block;" class="' + x[0] + ' lnk_' + row["column_16"] + '" id="lnk_' + row["column_15"] + '_' + meta.row + '_' + row["column_17"] + '" onclick="setPayMonth(' + row["column_15"] + ', ' + meta.row + ', ' + row["column_17"] + ', ' + row["column_16"] + ')" style="cursor: pointer;"><small>' + x[1] + '</small></a>';
|
|
|
}
|
|
|
else
|
|
|
{
|
|
|
if (x[0] != 'grey')
|
|
|
- ret = '<a class="' + x[0] + '"><small>' + x[1] + '</small></a>';
|
|
|
+ ret = '<a style="width:100%;float:right; text-align:right; display:block;" class="' + x[0] + '"><small>' + x[1] + '</small></a>';
|
|
|
}
|
|
|
return ret;
|
|
|
}
|
|
|
@@ -505,12 +511,12 @@
|
|
|
var ret = '';
|
|
|
if (x[0] == 'orange')
|
|
|
{
|
|
|
- ret = '<a class="' + x[0] + ' lnk_' + row["column_16"] + '" id="lnk_' + row["column_15"] + '_' + meta.row + '_' + row["column_17"] + '" onclick="setPayMonth(' + row["column_15"] + ', ' + meta.row + ', ' + row["column_17"] + ', ' + row["column_16"] + ')" style="cursor: pointer;"><small>' + x[1] + '</small></a>';
|
|
|
+ ret = '<a style="width:100%;float:right; text-align:right; display:block;" class="' + x[0] + ' lnk_' + row["column_16"] + '" id="lnk_' + row["column_15"] + '_' + meta.row + '_' + row["column_17"] + '" onclick="setPayMonth(' + row["column_15"] + ', ' + meta.row + ', ' + row["column_17"] + ', ' + row["column_16"] + ')" style="cursor: pointer;"><small>' + x[1] + '</small></a>';
|
|
|
}
|
|
|
else
|
|
|
{
|
|
|
if (x[0] != 'grey')
|
|
|
- ret = '<a class="' + x[0] + '"><small>' + x[1] + '</small></a>';
|
|
|
+ ret = '<a style="width:100%;float:right; text-align:right; display:block;" class="' + x[0] + '"><small>' + x[1] + '</small></a>';
|
|
|
}
|
|
|
return ret;
|
|
|
}
|
|
|
@@ -522,12 +528,12 @@
|
|
|
var ret = '';
|
|
|
if (x[0] == 'orange')
|
|
|
{
|
|
|
- ret = '<a class="' + x[0] + ' lnk_' + row["column_16"] + '" id="lnk_' + row["column_15"] + '_' + meta.row + '_' + row["column_17"] + '" onclick="setPayMonth(' + row["column_15"] + ', ' + meta.row + ', ' + row["column_17"] + ', ' + row["column_16"] + ')" style="cursor: pointer;"><small>' + x[1] + '</small></a>';
|
|
|
+ ret = '<a style="width:100%;float:right; text-align:right; display:block;" class="' + x[0] + ' lnk_' + row["column_16"] + '" id="lnk_' + row["column_15"] + '_' + meta.row + '_' + row["column_17"] + '" onclick="setPayMonth(' + row["column_15"] + ', ' + meta.row + ', ' + row["column_17"] + ', ' + row["column_16"] + ')" style="cursor: pointer;"><small>' + x[1] + '</small></a>';
|
|
|
}
|
|
|
else
|
|
|
{
|
|
|
if (x[0] != 'grey')
|
|
|
- ret = '<a class="' + x[0] + '"><small>' + x[1] + '</small></a>';
|
|
|
+ ret = '<a style="width:100%;float:right; text-align:right; display:block;" class="' + x[0] + '"><small>' + x[1] + '</small></a>';
|
|
|
}
|
|
|
return ret;
|
|
|
}
|
|
|
@@ -539,12 +545,12 @@
|
|
|
var ret = '';
|
|
|
if (x[0] == 'orange')
|
|
|
{
|
|
|
- ret = '<a class="' + x[0] + ' lnk_' + row["column_16"] + '" id="lnk_' + row["column_15"] + '_' + meta.row + '_' + row["column_17"] + '" onclick="setPayMonth(' + row["column_15"] + ', ' + meta.row + ', ' + row["column_17"] + ', ' + row["column_16"] + ')" style="cursor: pointer;"><small>' + x[1] + '</small></a>';
|
|
|
+ ret = '<a style="width:100%;float:right; text-align:right; display:block;" class="' + x[0] + ' lnk_' + row["column_16"] + '" id="lnk_' + row["column_15"] + '_' + meta.row + '_' + row["column_17"] + '" onclick="setPayMonth(' + row["column_15"] + ', ' + meta.row + ', ' + row["column_17"] + ', ' + row["column_16"] + ')" style="cursor: pointer;"><small>' + x[1] + '</small></a>';
|
|
|
}
|
|
|
else
|
|
|
{
|
|
|
if (x[0] != 'grey')
|
|
|
- ret = '<a class="' + x[0] + '"><small>' + x[1] + '</small></a>';
|
|
|
+ ret = '<a style="width:100%;float:right; text-align:right; display:block;" class="' + x[0] + '"><small>' + x[1] + '</small></a>';
|
|
|
}
|
|
|
return ret;
|
|
|
}
|
|
|
@@ -556,12 +562,12 @@
|
|
|
var ret = '';
|
|
|
if (x[0] == 'orange')
|
|
|
{
|
|
|
- ret = '<a class="' + x[0] + ' lnk_' + row["column_16"] + '" id="lnk_' + row["column_15"] + '_' + meta.row + '_' + row["column_17"] + '" onclick="setPayMonth(' + row["column_15"] + ', ' + meta.row + ', ' + row["column_17"] + ', ' + row["column_16"] + ')" style="cursor: pointer;"><small>' + x[1] + '</small></a>';
|
|
|
+ ret = '<a style="width:100%;float:right; text-align:right; display:block;" class="' + x[0] + ' lnk_' + row["column_16"] + '" id="lnk_' + row["column_15"] + '_' + meta.row + '_' + row["column_17"] + '" onclick="setPayMonth(' + row["column_15"] + ', ' + meta.row + ', ' + row["column_17"] + ', ' + row["column_16"] + ')" style="cursor: pointer;"><small>' + x[1] + '</small></a>';
|
|
|
}
|
|
|
else
|
|
|
{
|
|
|
if (x[0] != 'grey')
|
|
|
- ret = '<a class="' + x[0] + '"><small>' + x[1] + '</small></a>';
|
|
|
+ ret = '<a style="width:100%;float:right; text-align:right; display:block;" class="' + x[0] + '"><small>' + x[1] + '</small></a>';
|
|
|
}
|
|
|
return ret;
|
|
|
}
|
|
|
@@ -573,12 +579,12 @@
|
|
|
var ret = '';
|
|
|
if (x[0] == 'orange')
|
|
|
{
|
|
|
- ret = '<a class="' + x[0] + ' lnk_' + row["column_16"] + '" id="lnk_' + row["column_15"] + '_' + meta.row + '_' + row["column_17"] + '" onclick="setPayMonth(' + row["column_15"] + ', ' + meta.row + ', ' + row["column_17"] + ', ' + row["column_16"] + ')" style="cursor: pointer;"><small>' + x[1] + '</small></a>';
|
|
|
+ ret = '<a style="width:100%;float:right; text-align:right; display:block;" class="' + x[0] + ' lnk_' + row["column_16"] + '" id="lnk_' + row["column_15"] + '_' + meta.row + '_' + row["column_17"] + '" onclick="setPayMonth(' + row["column_15"] + ', ' + meta.row + ', ' + row["column_17"] + ', ' + row["column_16"] + ')" style="cursor: pointer;"><small>' + x[1] + '</small></a>';
|
|
|
}
|
|
|
else
|
|
|
{
|
|
|
if (x[0] != 'grey')
|
|
|
- ret = '<a class="' + x[0] + '"><small>' + x[1] + '</small></a>';
|
|
|
+ ret = '<a style="width:100%;float:right; text-align:right; display:block;" class="' + x[0] + '"><small>' + x[1] + '</small></a>';
|
|
|
}
|
|
|
return ret;
|
|
|
}
|
|
|
@@ -590,12 +596,12 @@
|
|
|
var ret = '';
|
|
|
if (x[0] == 'orange')
|
|
|
{
|
|
|
- ret = '<a class="' + x[0] + ' lnk_' + row["column_16"] + '" id="lnk_' + row["column_15"] + '_' + meta.row + '_' + row["column_17"] + '" onclick="setPayMonth(' + row["column_15"] + ', ' + meta.row + ', ' + row["column_17"] + ', ' + row["column_16"] + ')" style="cursor: pointer;"><small>' + x[1] + '</small></a>';
|
|
|
+ ret = '<a style="width:100%;float:right; text-align:right; display:block;" class="' + x[0] + ' lnk_' + row["column_16"] + '" id="lnk_' + row["column_15"] + '_' + meta.row + '_' + row["column_17"] + '" onclick="setPayMonth(' + row["column_15"] + ', ' + meta.row + ', ' + row["column_17"] + ', ' + row["column_16"] + ')" style="cursor: pointer;"><small>' + x[1] + '</small></a>';
|
|
|
}
|
|
|
else
|
|
|
{
|
|
|
if (x[0] != 'grey')
|
|
|
- ret = '<a class="' + x[0] + '"><small>' + x[1] + '</small></a>';
|
|
|
+ ret = '<a style="width:100%;float:right; text-align:right; display:block;" class="' + x[0] + '"><small>' + x[1] + '</small></a>';
|
|
|
}
|
|
|
return ret;
|
|
|
}
|
|
|
@@ -607,12 +613,12 @@
|
|
|
var ret = '';
|
|
|
if (x[0] == 'orange')
|
|
|
{
|
|
|
- ret = '<a class="' + x[0] + ' lnk_' + row["column_16"] + '" id="lnk_' + row["column_15"] + '_' + meta.row + '_' + row["column_17"] + '" onclick="setPayMonth(' + row["column_15"] + ', ' + meta.row + ', ' + row["column_17"] + ', ' + row["column_16"] + ')" style="cursor: pointer;"><small>' + x[1] + '</small></a>';
|
|
|
+ ret = '<a style="width:100%;float:right; text-align:right; display:block;" class="' + x[0] + ' lnk_' + row["column_16"] + '" id="lnk_' + row["column_15"] + '_' + meta.row + '_' + row["column_17"] + '" onclick="setPayMonth(' + row["column_15"] + ', ' + meta.row + ', ' + row["column_17"] + ', ' + row["column_16"] + ')" style="cursor: pointer;"><small>' + x[1] + '</small></a>';
|
|
|
}
|
|
|
else
|
|
|
{
|
|
|
if (x[0] != 'grey')
|
|
|
- ret = '<a class="' + x[0] + '"><small>' + x[1] + '</small></a>';
|
|
|
+ ret = '<a style="width:100%;float:right; text-align:right; display:block;" class="' + x[0] + '"><small>' + x[1] + '</small></a>';
|
|
|
}
|
|
|
return ret;
|
|
|
}
|