Cosmetic : size of some dialog box

This commit is contained in:
sparkyx 2025-12-04 15:38:19 +01:00
parent cc8f1adeba
commit abde26d488
4 changed files with 4 additions and 1 deletions

View file

@ -30,7 +30,7 @@ global $g_user;
// security
if ( $g_user->check_module("C0CARD") == 0 ) {
record_log(new \Exception("C0CARD1: not authorized"));
record_log(new \Exception("C0CARD: not authorized"));
return;
}

View file

@ -43,6 +43,7 @@ class Acc_Other_Tax_MTable extends Manage_Table_SQL
$object->set_col_type("ac_accounting","custom");
$object->set_col_type("ajrn_def_id","custom");
$object->set_property_visible("ajrn_def_id",false);
$object->setCssClass("inner_box2");
return $object;
}
function input_custom($p_key,$p_value) {

View file

@ -65,6 +65,7 @@ class Card_Attribut_MTable extends Manage_Table_SQL
$this->dossier_id=Dossier::id();
$this->set_order(['ad_id','ad_text',"ad_type","ad_default_order","ad_size","ad_extra","ad_search_followup"]);
$this->set_col_sort(1);
$this->setCssClass("inner_box2");
}
/**

View file

@ -62,6 +62,7 @@ class Currency_MTable extends Manage_Table_SQL
$this->a_order=array("cr_code_iso", "currency_id", "currency_history_id", "cr_name", "ch_value", "str_from");
$this->set_icon_mod("first");
$this->set_sort_column("cr_code_iso");
$this->setCssClass("inner_box2");
}
/**