phpcompta-dev
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Phpcompta-dev] r5360 - phpcompta/trunk/include


From: phpcompta-dev
Subject: [Phpcompta-dev] r5360 - phpcompta/trunk/include
Date: Wed, 28 Aug 2013 19:13:04 +0200 (CEST)

Author: danydb
Date: 2013-08-28 19:13:04 +0200 (Wed, 28 Aug 2013)
New Revision: 5360

Modified:
   phpcompta/trunk/include/class_acc_ledger.php
   phpcompta/trunk/include/class_acc_ledger_purchase.php
   phpcompta/trunk/include/class_acc_ledger_sold.php
   phpcompta/trunk/include/compta_ach.inc.php
   phpcompta/trunk/include/compta_ven.inc.php
Log:
Improve VEN & ACH

Modified: phpcompta/trunk/include/class_acc_ledger.php
===================================================================
--- phpcompta/trunk/include/class_acc_ledger.php        2013-08-28 16:22:06 UTC 
(rev 5359)
+++ phpcompta/trunk/include/class_acc_ledger.php        2013-08-28 17:13:04 UTC 
(rev 5360)
@@ -2338,6 +2338,7 @@
                $doc->f_id = $e_client;
                $doc->md_id = $gen_doc;
                $doc->ag_id = 0;
+                $p_array['e_pj']=$this->pj;
                $filename="";
                $doc->Generate($p_array,$p_array['e_pj']);
                // Move the document to the jrn

Modified: phpcompta/trunk/include/class_acc_ledger_purchase.php
===================================================================
--- phpcompta/trunk/include/class_acc_ledger_purchase.php       2013-08-28 
16:22:06 UTC (rev 5359)
+++ phpcompta/trunk/include/class_acc_ledger_purchase.php       2013-08-28 
17:13:04 UTC (rev 5360)
@@ -727,8 +727,7 @@
             if ( isset($_POST['gen_invoice']) )
             {
                 $ref_doc= $this->create_document($internal,$p_array);
-                $this->doc= _('Document généré')."  : "."<br>";
-                $this->doc.='<A class="line" 
HREF="show_pj.php?'.dossier::get().'&jr_grpt_id='.$seq.'&jrn='.$this->id.'">'.$ref_doc.'</A>';
+                $this->doc='<A class="line" 
HREF="show_pj.php?'.dossier::get().'&jr_grpt_id='.$seq.'&jrn='.$this->id.'">'.$ref_doc.'</A>';
             }
 
             //----------------------------------------
@@ -922,8 +921,7 @@
 
         $r="";
         $r.=dossier::hidden();
-        $f_legend=_("En-tête facture fournisseur");
-        $f_legend_detail=_("Détail articles acheté");
+        $f_legend_detail=_("Détail articles achetés");
 
         //  Date
         //--
@@ -988,8 +986,7 @@
                $wLedger=$this->select_ledger('ACH',2);
         if ($wLedger == null) exit (_('Pas de journal disponible'));
         $wLedger->javascript="onChange='update_predef(\"ach\",\"f\");$add_js'";
-        $label=" Journal ".HtmlInput::infobulle(2) ;
-
+        $wLedger->table=1;
         $f_jrn=$wLedger->input();
 
         // Comment
@@ -1000,7 +997,7 @@
         $Commentaire->size=60;
         $Commentaire->tabindex=3;
         $label=HtmlInput::infobulle(1) ;
-        $f_desc=$label.$Commentaire->input("e_comm",h($e_comm));
+        $f_desc=$Commentaire->input("e_comm",h($e_comm)).$label;
 
         // PJ
         //--
@@ -1275,47 +1272,70 @@
         }
         $date_limit=$lPeriode->get_date_limit();
         $r="";
-        $r.="<fieldset>";
-        $r.="<legend>"._('En-tête facture fournisseur')."  </legend>";
-               $r.='<div id="jrn_name_div">';
-               $r.='<h2 class="title"  
id="jrn_name">'.$this->get_name().'</h2>';
-               $r.='</div>';
         $r.='<TABLE  width="100%">';
+        if ( $p_summary ) {
+            $jr_id=$this->db->get_value('select jr_id from jrn where 
jr_internal=$1',array($this->internal));
+            $r.="<tr>";
+            $r.='<td>';
+            $r.=_('Détail opération ');
+            $r.='</td>';
+            $r.='<td>';
+            $r.=sprintf ('<a class="line" style="display:inline" 
href="javascript:modifyOperation(%d,%d)">%s</a>',
+                    $jr_id,dossier::id(),$this->internal);
+            $r.='</td>';
+            $r.="</tr>";
+        }
         $r.='<tr>';
-        $r.='<td> '._('Date').' '.$e_date.'</td>';
-        $r.='<td>'._('Echeance').' '.$e_ech.'</td>';
-        $r.='<td> '._('Période Comptable').' 
'.$date_limit['p_start'].'-'.$date_limit['p_end'].'</td>';
+        $r.='<td> ' . _('Date') . '</td><td> ' . hb($e_date) . '</td>';
+        $r.='</tr>';
         $r.='<tr>';
-        $r.='<td> '._('Journal').' '.h($this->get_name()).'</td>';
+        $r.='<td>' . _('Echeance') . '</td><td> ' . hb($e_ech) . '</td>';
         $r.='</tr>';
         $r.='<tr>';
-        $r.='<td colspan="2"> '._('Libellé').' '.h($e_comm).'</td><td> Pj 
:'.h($e_pj).'</td>';
+        $r.='<td> ' . _('Période Comptable') . '</td><td> ' .hb( 
$date_limit['p_start'] . '-' . $date_limit['p_end']) . '</td>';
         $r.='</tr>';
         $r.='<tr>';
-        $r.='<td colspan="3"> '._('Fournisseur').' 
'.h($e_client.':'.$client_name).'</td>';
+        $r.='<td> ' . _('Journal') . '</td><td> ' . hb($this->get_name()) . 
'</td>';
         $r.='</tr>';
+        $r.='<tr>';
+        $r.='<td> ' . _('Libellé') . '</td><td> ' . hb($e_comm) . '</td>';
+        $r.='</tr>';
+        $r.='<tr>';
+        if ( ! $p_summary) {
+            $r.='<td>' . _('Numéro Pièce') .'</td><td>'. hb($e_pj) . '</td>';
+        } else {
+            
+             if ( strcmp($this->pj,$e_pj) != 0 )
+            {
+                $r.='<td>' . _('Numéro Pièce') .'</td><td>'. hb($this->pj) . 
+                        '<span class="notice"> '._('Attention numéro pièce 
existante, elle a du être adaptée').'</span></td>';
+            } else {
+                $r.='<td>' . _('Numéro Pièce') .'</td><td>'. hb($this->pj) . 
'</td>';
+            }
+        }
+        $r.='</tr>';
+        $r.='<tr>';
+        $r.='<td> ' . _('Fournisseur') . '</td><td> ' . hb($e_client . ':' . 
$client_name) . '</td>';
+        $r.='</tr>';
         $r.='</table>';
-        $r.='</fieldset>';
-        $r.='<fieldset><legend>'._('Détail articles achetés').'</legend>';
-        $r.='<table width="100%" border="0">';
+        $r.='<h2>' . _('Détail articles achetés') . '</h2>';
+        $r.='<table class="result" border="0">';
         $r.='<TR>';
-        $r.="<th>Code</th>";
-        $r.="<th>"._('Dénomination')."</th>";
-        $r.="<th style=\"text-align:right\">"._('prix')."</th>";
-        /* vat use */
-        if ( $g_parameter->MY_TVA_USE=='Y')
-        {
+        $r.="<th>" . _('Code') . "</th>";
+        $r.="<th>" . _('Dénomination') . "</th>";
+        $r.="<th style=\"text-align:right\">" . _('prix') . "</th>";
+        $r.="<th style=\"text-align:right\">" . _('quantité') . "</th>";
+
+
+        if ($g_parameter->MY_TVA_USE == 'Y') {
+            $r.="<th style=\"text-align:right\">" . _('tva') . "</th>";
+            $r.='<th style="text-align:right"> ' . _('Montant TVA') . '</th>';
+            $r.='<th style="text-align:right">' . _('Montant HTVA') . '</th>';
+            $r.='<th style="text-align:right">' . _('Montant TVAC') . '</th>';
+        } else {
+            $r.='<th style="text-align:right">' . _('Montant') . '</th>';
             $r.="<th style=\"text-align:right\">"._('quantité')."</th>";
-            $r.="<th style=\"text-align:right\">tva</th>";
-            $r.='<th style="text-align:right"> '._('Montant TVA').'</th>';
-            $r.='<th style="text-align:right">'._('Montant HTVA').'</th>';
-            $r.='<th style="text-align:right">'._('Montant TVAC').'</th>';
         }
-        else
-        {
-            $r.="<th style=\"text-align:right\">"._('quantité')."</th>";
-            $r.='<th style="text-align:right"> '._('Total')."</th>";
-        }
 
         /* if we use the AC */
         if ($g_parameter->MY_ANALYTIC!='nu')
@@ -1387,7 +1407,7 @@
             $r.='<td>';
             $r.=${"e_march".$i};
             $r.='</td>';
-            $r.='<TD style="width:60%;border-bottom:1px dotted grey;">';
+            $r.='<TD style="border-bottom:1px dotted grey;">';
             $r.=$fiche_name;
             $r.='</td>';
             $r.='<td class="num">';
@@ -1448,52 +1468,27 @@
         $r.='</table>';
         if ( $g_parameter->MY_ANALYTIC!='nu' && !$p_summary) // use of AA
             $r.='<input type="button" class="button" value="'._('Vérifiez 
imputation analytique').'" onClick="verify_ca(\'\');">';
-        $r.='</fieldset>';
-
-               if ( ! $p_summary )
-                               $r.='<div 
style="width:40%;position:float;float:right;text-align:right;padding-left:5%;padding-right:5%;color:blue;font-size:1.2em;font-weight:bold">';
-                       else
-                               $r.='<div 
style="width:60%;position:float;float:left;text-align:right;padding-left:5%;padding-right:5%;color:blue;font-size:1.2em;font-weight:bold">';
-        $r.='<fieldset> <legend>Totaux</legend>';
-        $tot=round(bcadd($tot_amount,$tot_tva),2);
-        $r.='<div 
style="position:float;float:left;text-align:right;padding-left:5%;padding-right:5%;color:blue;font-size:1.2em;font-weight:bold">';
-
-        $r.='<br>'._('Total HTVA');
-        if ($g_parameter->MY_TVA_USE=='Y')
-        {
-            foreach ($tva as $i=>$value)
-            {
-                $oTva->set_parameter('id',$i);
+        $r.='<h2>Totaux</h2>';
+        $tot = round(bcadd($tot_amount, $tot_tva), 2);
+        /* use VAT */
+        if ($g_parameter->MY_TVA_USE == 'Y') {
+            $r.='<table>';
+            $r.='<tr><td>Total HTVA</td>';
+            $r.=td(hb(nbm($tot_amount) ),'class="num"');
+            foreach ($tva as $i => $value) {
+                $oTva->set_parameter('id', $i);
                 $oTva->load();
 
-                $r.='<br>  '._('TVA à ').$oTva->get_parameter('label');
+                $r.='<tr><td>  TVA ' . $oTva->get_parameter('label').'</td>';
+                $r.=td(hb(nbm($tva[$i])),'class="num"');
             }
-
-            $r.='<br>'._('Total TVA');
-            $r.='<br>'._(' TVAC');
-
+            $r.='<tr>'.td(_('Total TVA')).td(hb(nbm($tot_tva)),'class="num"');
+            $r.='<tr>'.td(_('Total TVAC')).td(hb(nbm($tot)),'class="num"');
+            $r.='</table>';
+        } else {
+            $r.='<br>Total '.nbm(hb($tot));
         }
-        $r.="</div>";
-
-
-        $r.='<div 
style="position:float;float:left;text-align:right;color:blue;font-size:1.2em;font-weight:bold">';
-        $r.='<br><span id="htva">'.nbm($tot_amount).'</span>';
-
-        if ( $g_parameter->MY_TVA_USE=='Y')
-        {
-            foreach ($tva as $i=>$value)
-            {
-             $r.='<br>'.nbm($tva[$i]);
-            }
-            $r.='<br><span id="tva">'.nbm($tot_tva).'</span>';
-            $r.='<br><span id="tvac">'.nbm($tot).'</span>';
-        }
-        $r.="</div>";
-
-
-
-        $r.='</fieldset>';
-       $r.='</div>';
+       
         /*  Add hidden */
         $r.=HtmlInput::hidden('e_client',$e_client);
         $r.=HtmlInput::hidden('nb_item',$nb_item);
@@ -1530,34 +1525,36 @@
         }
        if ( ! $p_summary )
             $r.=$this->extra_info();
-       if ($g_parameter->MY_STOCK == 'Y')
-               {
-                       $sel = HtmlInput::select_stock($this->db, 'repo', 'W');
-                       $sel->readOnly = $p_summary;
-                       if ($p_summary == true)
-                               $sel->selected = $repo;
-                       $r.="<div style=\"clear:both\"></div>";
-                       $r.='<div style="float:left"><h2 
class="info">Dépôt</h2>';
-                       $r.="<p> Dans le dépôt : ";
-                       $r.=$sel->input();
-                       $r.='</p>';
-                       $r.='</div>';
-               }
+       // Show the available repository
+        if ($g_parameter->MY_STOCK == 'Y') {
+            $sel = HtmlInput::select_stock($this->db, 'repo', 'W');
+            $sel->readOnly = $p_summary;
+            if ($p_summary == true)
+                $sel->selected = $repo;
+            $r.='<h2>Dépôt</h2>';
+            $r.="<p> Dans le dépôt : ";
+            $r.=$sel->input();
+            $r.='</p>';
+        }
        if ( $e_mp!=0 && strlen (trim (${'e_mp_qcode_'.$e_mp})) != 0 )
         {
             $r.=HtmlInput::hidden('e_mp_qcode_'.$e_mp,${'e_mp_qcode_'.$e_mp});
             $r.=HtmlInput::hidden('acompte',$acompte);
                        
$r.=HtmlInput::hidden('e_comm_paiement',$e_comm_paiement);
             /* needed for generating a invoice */
-            $r.=HtmlInput::hidden('qcode_benef', ${'e_mp_qcode_' . $e_mp});
+           $r.=HtmlInput::hidden('qcode_benef', ${'e_mp_qcode_' . $e_mp});
                        $fname = new Fiche($this->db);
                        $fname->get_by_qcode(${'e_mp_qcode_' . $e_mp});
-                       $r.="<div style=\"clear:both\"></div>";
+                       /*$r.="<div style=\"clear:both\"></div>";
                        $r.='<div style="float:left"><h2 class="info">' . "Payé 
par " . ${'e_mp_qcode_' . $e_mp} .
                                        " ".$fname->getName() ."</h2> ".
                                        '<p>'._('Déduction acompte 
').h($acompte).'</p>'.
-                                       _('Libellé :' 
).h($e_comm_paiement).'</div>';
+                                       _('Libellé :' 
).h($e_comm_paiement).'</div>';*/
+            $r.='<h2>' . "Payé par " . ${'e_mp_qcode_' . $e_mp} .
+                    " " . $fname->getName() . '</H2> ' . '<p>' . _('Déduction 
acompte ') . h($acompte) . '</p>' .
+                    _('Libellé :') . h($e_comm_paiement) ;
             $r.='<br>';
+            $r.='<br>';
         }
         // check for upload piece
 
@@ -1573,8 +1570,7 @@
     public function extra_info()
     {
         $r="";
-        $r.='<div 
style="position:float;float:left;width:50%;text-align:right;line-height:3em;">';
-        $r.='<fieldset> <legend> '._('Document à générer').'</legend>';
+        $r.='<h2> Facturation</h2>';
         // check for upload piece
         $file=new IFile();
         $file->table=0;
@@ -1584,7 +1580,6 @@
         if ( $this->db->count_sql("select md_id,md_name from document_modele 
where md_affect='ACH'") > 0 )
         {
 
-            $r.='<hr>';
             $r.=_('ou générer un document').' <input type="checkbox" 
name="gen_invoice" >';
             // We propose to generate  the fee note
             $doc_gen=new ISelect();
@@ -1598,8 +1593,6 @@
         $obj=new IText();
         $r.=_('Numero de bon de commande : ').$obj->input('bon_comm').'<br>';
         $r.=_('Autre information : ').$obj->input('other_info').'<br>';
-        $r.="</fieldset>";
-        $r.='</div>';
         return $r;
     }
 

Modified: phpcompta/trunk/include/class_acc_ledger_sold.php
===================================================================
--- phpcompta/trunk/include/class_acc_ledger_sold.php   2013-08-28 16:22:06 UTC 
(rev 5359)
+++ phpcompta/trunk/include/class_acc_ledger_sold.php   2013-08-28 17:13:04 UTC 
(rev 5360)
@@ -613,7 +613,6 @@
         }
         $date_limit = $lPeriode->get_date_limit();
         $r = "";
-        $r.='<div>';
         $r.='<TABLE  width="100%">';
         if ( $p_summary ) {
             $jr_id=$this->db->get_value('select jr_id from jrn where 
jr_internal=$1',array($this->internal));
@@ -872,7 +871,6 @@
             }
             $r.=HtmlInput::hidden("e_quant" . $i, ${"e_quant" . $i});
         }
-           $r.="</div>";
         return $r;
     }
 

Modified: phpcompta/trunk/include/compta_ach.inc.php
===================================================================
--- phpcompta/trunk/include/compta_ach.inc.php  2013-08-28 16:22:06 UTC (rev 
5359)
+++ phpcompta/trunk/include/compta_ach.inc.php  2013-08-28 17:13:04 UTC (rev 
5360)
@@ -60,24 +60,22 @@
        if (!isset($correct))
        {
                echo '<div class="content">';
-               echo h2info('Confirmation');
+                echo h1('Confirmation','');
+                echo_warning("Attention, cette opération n'est pas encore 
sauvée : vous devez encore confirmer");
 
+
                echo '<form enctype="multipart/form-data" method="post" 
class="print">';
                echo dossier::hidden();
 
                echo $Ledger->confirm($_POST);
                echo HtmlInput::hidden('ac', $_REQUEST['ac']);
-               $chk = new ICheckBox();
-               $chk->selected = false;
                echo '<div style="float:left;clear:both">';
 
-               echo $chk->input('opd_save');
-               echo "Sauvez cette op&eacute;ration comme modèle d'opération ?";
-               echo '<br/>';
+                echo "<h2>Modèle d'opération</h2>";
+                echo "Donnez un nom pour sauver cette opération comme modèle 
<br>";
                $opd_name = new IText('opd_name');
                echo "Nom du modèle " . $opd_name->input();
-
-               echo '<hr>';
+                echo '</div>';
                echo HtmlInput::submit("record", _("Enregistrement"), 
'onClick="return verify_ca(\'\');"');
                echo HtmlInput::submit('correct', _("Corriger"));
                echo '</form>';
@@ -113,7 +111,7 @@
 
 
                /* Save the predefined operation */
-               if (isset($_POST['opd_save']) )
+                if ( isset($_POST['opd_name']) && trim($_POST['opd_name']) != 
"" )
                {
                        $opd = new Pre_op_ach($cn);
                        $opd->get_post();
@@ -123,26 +121,25 @@
                /* Show button  */
                $jr_id = $cn->get_value('select jr_id from jrn where 
jr_internal=$1', array($internal));
 
-               echo '<h2 class="info"> Enregistrement </h2>';
-               echo "<h2 >" . _('Opération sauvée') . " $internal ";
-               if ($Ledger->pj != '')
-                       echo ' Piece : ' . h($Ledger->pj);
-               echo "</h2>";
-               if (strcmp($Ledger->pj, $_POST['e_pj']) != 0)
-               {
-                       echo '<h3 class="notice"> ' . _('Attention numéro pièce 
existante, elle a du être adaptée') . '</h3>';
-               }
+               echo '<h1> Enregistrement </h1>';
+               // echo "<h2 >" . _('Opération sauvée') . " $internal ";
+               // if ($Ledger->pj != '')
+               //      echo ' Piece : ' . h($Ledger->pj);
+               // echo "</h2>";
+               // if (strcmp($Ledger->pj, $_POST['e_pj']) != 0)
+               // {
+               //      echo '<h3 class="notice"> ' . _('Attention numéro pièce 
existante, elle a du être adaptée') . '</h3>';
+               // }
                /* Save the additional information into jrn_info */
                $obj = new Acc_Ledger_Info($cn);
                $obj->save_extra($Ledger->jr_id, $_POST);
-               printf('<a class="line" style="display:inline" 
href="javascript:modifyOperation(%d,%d)">%s</a><hr>', $jr_id, dossier::id(), 
$internal);
+               //printf('<a class="line" style="display:inline" 
href="javascript:modifyOperation(%d,%d)">%s</a><hr>', $jr_id, dossier::id(), 
$internal);
                // Feedback
                echo $Ledger->confirm($_POST, true);
                if (isset($Ledger->doc))
                {
-                     echo '<span class="invoice">';
+                     echo '<h2>Document</h2>';
                      echo $Ledger->doc;
-                     echo '</span>';
                }
 
                echo '</div>';
@@ -239,4 +236,5 @@
 
 
 exit();
-// end record invoice
\ No newline at end of file
+// end record invoice
+?>
\ No newline at end of file

Modified: phpcompta/trunk/include/compta_ven.inc.php
===================================================================
--- phpcompta/trunk/include/compta_ven.inc.php  2013-08-28 16:22:06 UTC (rev 
5359)
+++ phpcompta/trunk/include/compta_ven.inc.php  2013-08-28 17:13:04 UTC (rev 
5360)
@@ -74,7 +74,6 @@
             echo_warning("Attention, cette opération n'est pas encore sauvée : 
vous devez encore confirmer");
 
 
-                       echo '<div class="content">';
             echo '<form class="print" enctype="multipart/form-data" 
method="post">';
             echo dossier::hidden();
             echo $Ledger->confirm($_POST );
@@ -92,7 +91,6 @@
             echo '</form>';
 
             echo '</div>';
-            echo '</div>';
             exit();
         }
     }



---
PhpCompta est un logiciel de comptabilité libre en ligne (full web)
Projet opensource http://www.phpcompta.eu



reply via email to

[Prev in Thread] Current Thread [Next in Thread]