mirror of
https://github.com/YunoHost-Apps/noalyss_ynh.git
synced 2024-09-03 19:46:20 +02:00
146 lines
No EOL
4.2 KiB
PHP
146 lines
No EOL
4.2 KiB
PHP
<?php
|
|
//This file is part of NOALYSS and is under GPL
|
|
//see licence.txt
|
|
$str_anc="";
|
|
?><?php require_once NOALYSS_INCLUDE.'/template/ledger_detail_top.php'; ?>
|
|
<div class="content" style="padding:0;">
|
|
<?php
|
|
require_once NOALYSS_INCLUDE.'/class_own.php';
|
|
$owner=new Own($cn);
|
|
require_once NOALYSS_INCLUDE.'/class_anc_plan.php';
|
|
require_once NOALYSS_INCLUDE.'/class_anc_operation.php';
|
|
|
|
?>
|
|
<?php if ( $access=='W') : ?>
|
|
<form class="print" onsubmit="return op_save(this);">
|
|
<?php endif; ?>
|
|
|
|
<?php echo HtmlInput::hidden('whatdiv',$div).HtmlInput::hidden('jr_id',$jr_id).dossier::hidden();?>
|
|
<table style="width:100%"><tr><td>
|
|
<table>
|
|
<tr>
|
|
<?php
|
|
$date=new IDate('p_date');
|
|
$date->value=format_date($obj->det->jr_date);
|
|
echo td(_('Date')).td($date->input());
|
|
|
|
?>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
<?php
|
|
$bk=new Fiche($cn,$obj->det->array[0]['qf_bank']);
|
|
$view_card_detail=HtmlInput::card_detail($bk->get_quick_code(),h($bk->getName()), ' class="line" ');
|
|
echo td(_('Compte en banque')).td($view_card_detail).td();;
|
|
|
|
?>
|
|
</tr>
|
|
<tr>
|
|
<?php
|
|
|
|
$bk=new Fiche($cn,$obj->det->array[0]['qf_other']);
|
|
$view_card_detail=HtmlInput::card_detail($bk->get_quick_code(),h($bk->getName()), ' class="line" ');
|
|
|
|
echo td(_('Tiers')).td($view_card_detail);
|
|
?>
|
|
</tr>
|
|
|
|
<tr>
|
|
<?php
|
|
$itext=new IText('lib');
|
|
$itext->value=strip_tags($obj->det->jr_comment);
|
|
$itext->size=40;
|
|
echo td(_('Libellé')).td($itext->input(),' colspan="2" style="width:auto"');
|
|
|
|
|
|
?>
|
|
</tr>
|
|
<tr>
|
|
<?php echo td(_('montant')).td(nbm($obj->det->array[0]['qf_amount']),' class="inum"');?>
|
|
</tr>
|
|
<tr>
|
|
<?php
|
|
$itext=new IText('npj');
|
|
$itext->value=strip_tags($obj->det->jr_pj_number);
|
|
echo td(_('Pièce')).td($itext->input());
|
|
?>
|
|
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
<td style="width:50%;height:100%;vertical-align:top;text-align: center">
|
|
<table style="width:99%;height:8rem;vertical-align:top;">
|
|
<tr style="height: 5%">
|
|
<td style="text-align:center;vertical-align: top">
|
|
Note
|
|
</td></tr>
|
|
<tr>
|
|
<td style="text-align:center;vertical-align: top">
|
|
<?php
|
|
$inote = new ITextarea('jrn_note');
|
|
$inote->style=' class="itextarea" style="width:90%;height:100%;"';
|
|
$inote->value = strip_tags($obj->det->note);
|
|
echo $inote->input();
|
|
?>
|
|
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
|
|
</tr>
|
|
</table>
|
|
|
|
</td>
|
|
<div class="myfieldset">
|
|
<?php
|
|
$detail=new Acc_Misc($cn,$obj->jr_id);
|
|
$detail->get();
|
|
?>
|
|
<?php
|
|
if ($owner->MY_ANALYTIC != 'nu' /*&& $div == 'popup'*/){
|
|
$anc=new Anc_Plan($cn);
|
|
$a_anc=$anc->get_list(' order by pa_id ');
|
|
$x=count($a_anc);
|
|
/* set the width of the col */
|
|
$str_anc .= '<th colspan="'.$x.'" style="width:auto;text-align:center">'._('Compt. Analytique').'</th>';
|
|
|
|
/* add hidden variables pa[] to hold the value of pa_id */
|
|
$str_anc .= Anc_Plan::hidden($a_anc);
|
|
}
|
|
bcscale(2);
|
|
for ($e=0;$e<count($detail->det->array);$e++) {
|
|
$row=''; $q=$detail->det->array;
|
|
$fiche=new Fiche($cn);
|
|
$fiche->get_by_qcode($q[$e]['j_qcode']);
|
|
/* Analytic accountancy */
|
|
if ( $owner->MY_ANALYTIC != "nu" /*&& $div == 'popup'*/)
|
|
{
|
|
$poste=$fiche->strAttribut(ATTR_DEF_ACCOUNT);
|
|
if ( preg_match('/^(6|7)/',$q[$e]['j_poste']))
|
|
{
|
|
$qcode=$fiche->strAttribut(ATTR_DEF_QUICKCODE);
|
|
$anc_op=new Anc_Operation($cn);
|
|
$anc_op->j_id=$q[$e]['j_id'];
|
|
$anc_op->in_div=$div;
|
|
$str_anc.='<tr>';
|
|
$str_anc.=td($poste);
|
|
$str_anc.=td($qcode);
|
|
$str_anc.=td(nbm($q[$e]['j_montant']));
|
|
$str_anc.='<td>';
|
|
$str_anc.= HtmlInput::hidden('op[]',$anc_op->j_id);
|
|
$montant=($q[$e]['j_debit'] == "t")?$q[$e]['j_montant']:bcmul($q[$e]['j_montant'], -1);
|
|
$str_anc.=$anc_op->display_table(1,$montant,$div);
|
|
$str_anc.='</td>';
|
|
$str_anc.='</tr>';
|
|
|
|
}
|
|
}
|
|
}
|
|
?>
|
|
</div>
|
|
<?php
|
|
require_once NOALYSS_INCLUDE.'/template/ledger_detail_bottom.php';
|
|
?>
|
|
</div>
|