Merge branch 'stable' into unstable
* stable: Bug : saved search does not take the date end PHP8.2 : deprecated dynamique attr. Cosmetic , missing bcscale and code cleaning Set the DB to the version 202 for NOALYSS9.3 correct make-sql Bug : when only one extension, it fails
This commit is contained in:
commit
676aefaeeb
4 changed files with 26 additions and 16 deletions
|
|
@ -1306,9 +1306,10 @@ div#wait_box
|
|||
left:30%;
|
||||
top:30%;
|
||||
border:1px solid #00008B;
|
||||
width: 260px;
|
||||
width:18%;
|
||||
opacity: 0.8;
|
||||
border-radius: 20px;
|
||||
min-width:281px;
|
||||
}
|
||||
#wait_box h2
|
||||
{
|
||||
|
|
@ -3502,6 +3503,7 @@ li.li-active {
|
|||
padding: 0.5rem;
|
||||
color:navy !important;
|
||||
text-decoration: underline;
|
||||
border-radius: 7px;
|
||||
}
|
||||
|
||||
.hoverclass-drag {
|
||||
|
|
@ -3513,14 +3515,14 @@ li.li-active {
|
|||
* User's widget list
|
||||
*
|
||||
*********************************************************************************************************************/
|
||||
|
||||
#widget_box_id {
|
||||
#widget_box_id {
|
||||
width: 100%;
|
||||
margin-left: 0px;
|
||||
margin-right: 0px;
|
||||
}
|
||||
width: 100%;
|
||||
margin-left: 0px;
|
||||
margin-right: 0px;
|
||||
}
|
||||
|
||||
|
||||
#contain_widget li {
|
||||
padding : 0.75rem;
|
||||
margin:2px;
|
||||
|
|
@ -3637,15 +3639,9 @@ div.widget-full_size {
|
|||
}
|
||||
|
||||
div.row.odd.hover:hover,div.row.even.hover:hover { background-color: var(--hover) !important; }
|
||||
h2 {
|
||||
|
||||
h2.legend {
|
||||
background-color: #e4e9ee;
|
||||
color: navy;
|
||||
background-color: #b2d3d929 !important;
|
||||
border: solid 1px navy;
|
||||
}
|
||||
.super {
|
||||
font-variant-caps: all-small-caps;
|
||||
font-family: arial;
|
||||
font-size: 80%;
|
||||
vertical-align: super;
|
||||
border: 1px steelblue solid;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -52,7 +52,15 @@ class Extension extends Menu_Ref_sql
|
|||
'MODOP','RAPAV','SAV',
|
||||
'TOOLPCMN','TOOLS','TRANSFORM',
|
||||
'TVA');
|
||||
|
||||
|
||||
/**************************************************************************
|
||||
* Variables from plugin.xml
|
||||
*************************************************************************/
|
||||
var $version; //<! version of the plugin in the XML
|
||||
var $noalyss_version; //!< minimum version of NOALYSS for this plugin
|
||||
var $order ; //!< $order in the menu (can be override by config menu)
|
||||
var $depend; //!< default depending menu (can be override by config menu)
|
||||
|
||||
public function verify()
|
||||
{
|
||||
// Verify that the elt we want to add is correct
|
||||
|
|
@ -436,6 +444,10 @@ class Extension extends Menu_Ref_sql
|
|||
$r .= " me_javascript" . $this->me_javascript.PHP_EOL;
|
||||
$r .= " me_type" . $this->me_type.PHP_EOL;
|
||||
$r .= " me_descrition_etendue" . $this->me_description_etendue.PHP_EOL;
|
||||
$r .= " noalyss_version " . $this->noalyss_version.PHP_EOL;
|
||||
$r .= " version " . $this->version.PHP_EOL;
|
||||
$r .= " order " . $this->order.PHP_EOL;
|
||||
$r .= " depend " . $this->depend.PHP_EOL;
|
||||
return "Extension $r";
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -53,6 +53,7 @@ for ($i=0;$i<$nb_array;$i++):
|
|||
$a_param['search_opr_jrn']=explode(",",$user_filter->getp("r_jrn"));
|
||||
}
|
||||
$a_param ["date_start"] = $user_filter->getp("date_start");
|
||||
$a_param ["date_end"] = $user_filter->getp("date_end");
|
||||
$a_param ["date_paid_start"] = $user_filter->getp("date_paid_start");
|
||||
$a_param ["date_paid_end"] = $user_filter->getp("date_paid_end");
|
||||
/*[search_opdate_start_hidden] => 01.01.2023
|
||||
|
|
|
|||
|
|
@ -11,6 +11,7 @@
|
|||
* Variables : $div = popup or box (det[0-9]
|
||||
*
|
||||
*/
|
||||
bcscale(2);
|
||||
\Noalyss\Dbg::echo_file(__FILE__);
|
||||
$select_box=new \Select_Box("sb_".$jr_id, _("Autre action"));
|
||||
$select_box->set_position("normal");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue