Cosmetic : readonly background and section payment means
This commit is contained in:
parent
5181b70558
commit
8b94bad646
4 changed files with 12 additions and 8 deletions
|
|
@ -75,6 +75,7 @@ BODY {
|
||||||
--end-level1:#eb7c7e;
|
--end-level1:#eb7c7e;
|
||||||
--border-color:#b7b7b7;
|
--border-color:#b7b7b7;
|
||||||
--bg-white:white;
|
--bg-white:white;
|
||||||
|
--bg-readonly:#f9f9f9;
|
||||||
}
|
}
|
||||||
input{
|
input{
|
||||||
font-family: 'OpenSansRegular';
|
font-family: 'OpenSansRegular';
|
||||||
|
|
@ -809,8 +810,7 @@ a.document:hover {
|
||||||
}
|
}
|
||||||
.input_text_ro {
|
.input_text_ro {
|
||||||
border:1px solid #0000FF;
|
border:1px solid #0000FF;
|
||||||
background-color: var(--bg-white);
|
background-color:var(--bg-readonly);
|
||||||
color:var(--border-color);
|
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
margin:1px;
|
margin:1px;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,10 @@ namespace Noalyss\XMLDocument;
|
||||||
* @file
|
* @file
|
||||||
* @brief answer to an inplace object
|
* @brief answer to an inplace object
|
||||||
*/
|
*/
|
||||||
|
/**
|
||||||
|
\pure
|
||||||
|
\brief Abstract class
|
||||||
|
*/
|
||||||
abstract class XML_Reader
|
abstract class XML_Reader
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -256,7 +256,7 @@ try
|
||||||
$Ledger->id=$p_jrn_predef;
|
$Ledger->id=$p_jrn_predef;
|
||||||
$p_post['p_jrn']=$Ledger->id;
|
$p_post['p_jrn']=$Ledger->id;
|
||||||
echo $Ledger->input($p_post);
|
echo $Ledger->input($p_post);
|
||||||
echo '<div class="content">';
|
echo '<div class="">';
|
||||||
echo $Ledger->input_paid($payment,$acompte,$date_payment,$comm_payment);
|
echo $Ledger->input_paid($payment,$acompte,$date_payment,$comm_payment);
|
||||||
echo '</div>';
|
echo '</div>';
|
||||||
echo '<script>';
|
echo '<script>';
|
||||||
|
|
@ -273,7 +273,7 @@ try
|
||||||
echo HtmlInput::hidden("sa", "p");
|
echo HtmlInput::hidden("sa", "p");
|
||||||
echo HtmlInput::hidden("action_gestion",$action_id);
|
echo HtmlInput::hidden("action_gestion",$action_id);
|
||||||
echo $Ledger->input($array);
|
echo $Ledger->input($array);
|
||||||
echo '<div class="content">';
|
echo '<div class="">';
|
||||||
echo $Ledger->input_paid($payment,$acompte,$date_payment,$comm_payment);
|
echo $Ledger->input_paid($payment,$acompte,$date_payment,$comm_payment);
|
||||||
echo '</div>';
|
echo '</div>';
|
||||||
echo '<script>';
|
echo '<script>';
|
||||||
|
|
@ -285,7 +285,7 @@ try
|
||||||
echo $Ledger->input($array);
|
echo $Ledger->input($array);
|
||||||
echo HtmlInput::hidden("p_action", "ach");
|
echo HtmlInput::hidden("p_action", "ach");
|
||||||
echo HtmlInput::hidden("sa", "p");
|
echo HtmlInput::hidden("sa", "p");
|
||||||
echo '<div class="content">';
|
echo '<div class="">';
|
||||||
echo $Ledger->input_paid($payment,$acompte,$date_payment,$comm_payment);
|
echo $Ledger->input_paid($payment,$acompte,$date_payment,$comm_payment);
|
||||||
echo '</div>';
|
echo '</div>';
|
||||||
echo '<script>';
|
echo '<script>';
|
||||||
|
|
|
||||||
|
|
@ -395,7 +395,7 @@ try
|
||||||
$Ledger->id=$http->request('p_jrn_predef');
|
$Ledger->id=$http->request('p_jrn_predef');
|
||||||
|
|
||||||
echo $Ledger->input($p_post);
|
echo $Ledger->input($p_post);
|
||||||
echo '<div class="content">';
|
echo '<div class="">';
|
||||||
echo $Ledger->input_paid($payment);
|
echo $Ledger->input_paid($payment);
|
||||||
echo '</div>';
|
echo '</div>';
|
||||||
echo '<script>';
|
echo '<script>';
|
||||||
|
|
@ -412,7 +412,7 @@ try
|
||||||
echo HtmlInput::hidden("sa", "p");
|
echo HtmlInput::hidden("sa", "p");
|
||||||
echo HtmlInput::hidden("action_gestion",$action_id);
|
echo HtmlInput::hidden("action_gestion",$action_id);
|
||||||
echo $Ledger->input($array);
|
echo $Ledger->input($array);
|
||||||
echo '<div class="content">';
|
echo '<div class="">';
|
||||||
echo $Ledger->input_paid($payment,$acompte,$date_payment,$comm_payment);
|
echo $Ledger->input_paid($payment,$acompte,$date_payment,$comm_payment);
|
||||||
echo '</div>';
|
echo '</div>';
|
||||||
echo '<script>';
|
echo '<script>';
|
||||||
|
|
@ -427,7 +427,7 @@ try
|
||||||
$action_id=$http->get('ag_id',"string","");
|
$action_id=$http->get('ag_id',"string","");
|
||||||
echo HtmlInput::hidden("action_gestion",$action_id);
|
echo HtmlInput::hidden("action_gestion",$action_id);
|
||||||
echo $Ledger->input($array);
|
echo $Ledger->input($array);
|
||||||
echo '<div class="content">';
|
echo '<div class="">';
|
||||||
echo $Ledger->input_paid($payment,$acompte,$date_payment,$comm_payment);
|
echo $Ledger->input_paid($payment,$acompte,$date_payment,$comm_payment);
|
||||||
echo '</div>';
|
echo '</div>';
|
||||||
echo '<script>';
|
echo '<script>';
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue