clickup #7nynw9

This commit is contained in:
Pairat Sangprasert
2021-04-19 19:37:53 +07:00
parent 5bc18ea003
commit d0dbaae151
3 changed files with 57 additions and 8 deletions

View File

@@ -1,5 +1,6 @@
var eva_limit_frame_group_editMode = "CREATE";
var eva_limit_frame_group_API = "/api/eva_limit_frame_group/";
var limit_frame_group_digits = 3;
//================= Search Customizaiton =========================================
@@ -157,6 +158,21 @@ function eva_limit_frame_group_GoDelete(a) {
var eva_limit_frame_groupTableV;
var eva_limit_frame_group_setupTable = function (result) {
$.each(result, function (index_result, obj_result) {
/*console.log("index_result", index_result);
console.log("obj_result", obj_result);*/
var currency_total_salary = coreFormatPrice(obj_result.total_salary, limit_frame_group_digits);
var currency_total_salary_limit = coreFormatPrice(obj_result.total_salary_limit, limit_frame_group_digits);
var currency_total_salary_limit_rounded = coreFormatPrice(obj_result.total_salary_limit_rounded, limit_frame_group_digits);
obj_result.total_salary = currency_total_salary;
obj_result.total_salary_limit = currency_total_salary_limit;
obj_result.total_salary_limit_rounded = currency_total_salary_limit_rounded;
});
tmp = '"';
eva_limit_frame_groupTableV = $('#eva_limit_frame_groupTable').DataTable({
"processing": true,