type='ACH'; parent::__construct($p_cn,$p_init); } /*!\brief verify that the data are correct before inserting or confirming *\param an array (usually $_POST) *\return String *\throw Exception if an error occurs */ public function verify($p_array) { global $g_parameter; extract ($p_array); /* check if we can write into this ledger */ $user=new User($this->db); if ( $user->check_jrn($p_jrn) != 'W' ) throw new Exception (_('Accès interdit'),20); /* check for a double reload */ if ( isset($mt) && $this->db->count_sql('select jr_mt from jrn where jr_mt=$1',array($mt)) != 0 ) throw new Exception (_('Double Encodage'),5); /* check if there is a customer */ if ( strlen(trim($e_client)) == 0 ) throw new Exception(_('Vous n\'avez pas donné de fournisseur'),11); /* check if the date is valid */ if ( isDate($e_date) == null ) { throw new Exception(_('Date invalide'), 2); } $oPeriode=new Periode($this->db); if ( $this->check_periode() == false) { $tperiode=$oPeriode->find_periode($e_date); } else { $tperiode=$period; $oPeriode->p_id=$tperiode; /* check that the datum is in the choosen periode */ list ($min,$max)=$oPeriode->get_date_limit($tperiode); if ( cmpDate($e_date,$min) < 0 || cmpDate($e_date,$max) > 0) throw new Exception(_('Date et periode ne correspondent pas'),6); } /* check if the periode is closed */ if ( $this->is_closed($tperiode)==1 ) { throw new Exception(_('Periode fermee'),6); } /* check if we are using the strict mode */ if( $this->check_strict() == true) { /* if we use the strict mode, we get the date of the last operation */ $last_date=$this->get_last_date(); if ( $last_date != null && cmpDate($e_date,$last_date) < 0 ) throw new Exception(_('Vous utilisez le mode strict la dernière operation est à la date du ') .$last_date._(' vous ne pouvez pas encoder à une '. ' date antérieure dans ce journal'),13); } /* check the account */ $fiche=new Fiche($this->db); $fiche->get_by_qcode($e_client); if ( $fiche->empty_attribute(ATTR_DEF_ACCOUNT) == true) throw new Exception(_('La fiche ').$e_client._('n\'a pas de poste comptable'),8); /* get the account and explode if necessary */ $sposte=$fiche->strAttribut(ATTR_DEF_ACCOUNT); // if 2 accounts, take only the credit one for supplier if ( strpos($sposte,',') != 0 ) { $array=explode(',',$sposte); $poste_val=$array[1]; } else { $poste_val=$sposte; } /* The account exists */ $poste=new Acc_Account_Ledger($this->db,$poste_val); if ( $poste->load() == false ) { throw new Exception(_('Pour la fiche ').$e_client._(' le poste comptable [').$poste->id.'] '._('n\'existe pas'),9); } /* Check if the card belong to the ledger */ $fiche=new Fiche ($this->db); $fiche->get_by_qcode($e_client,'cred'); if ( $fiche->belong_ledger($p_jrn) !=1 ) throw new Exception(_('La fiche ').$e_client._('n\'est pas accessible à ce journal'),10); $nb=0; //------------------------------------------------------ // The "Paid By" check //------------------------------------------------------ if ($e_mp != 0 ) $this->check_payment($e_mp,${"e_mp_qcode_".$e_mp}); //---------------------------------------- // foreach item //---------------------------------------- for ($i=0;$i< $nb_item;$i++) { if ( strlen(trim(${'e_march'.$i}))== 0) continue; /* check if amount are numeric and */ if ( isNumber(${'e_march'.$i.'_price'}) == 0 ) throw new Exception(_('La fiche ').${'e_march'.$i}._('a un montant invalide').' ['.${'e_march'.$i}.']',6); if ( isNumber(${'e_quant'.$i}) == 0 ) throw new Exception(_('La fiche ').${'e_march'.$i}._('a une quantité invalide').' ['.${'e_quant'.$i}.']',7); // Check if the given tva id is valid if ( $g_parameter->MY_TVA_USE=='Y') { if (${'e_march'.$i.'_tva_id'} == 0 ) throw new Exception(_('La fiche ').${'e_march'.$i}._('a un code tva invalide').' ['.${'e_march'.$i.'_tva_id'}.']',13); $tva_rate=new Acc_Tva($this->db); $tva_rate->set_parameter('id',${'e_march'.$i.'_tva_id'}); if ( $tva_rate->load() != 0 ) throw new Exception(_('La fiche ').${'e_march'.$i}._('a un code tva invalide').' ['.${'e_march'.$i.'_tva_id'}.']',13); /* * check if the accounting for VAT are valid */ $a_poste=explode(',',$tva_rate->tva_poste); if ( $this->db->get_value('select count(*) from tmp_pcmn where pcm_val=$1',array($a_poste[0])) == 0 || $this->db->get_value('select count(*) from tmp_pcmn where pcm_val=$1',array($a_poste[1])) == 0 ) throw new Exception(_(" La TVA ".$tva_rate->tva_label." utilise des postes comptables inexistants")); } /* check if all card has a ATTR_DEF_ACCOUNT*/ $fiche=new Fiche($this->db); $fiche->get_by_qcode(${'e_march'.$i}); if ( $fiche->empty_attribute(ATTR_DEF_ACCOUNT) == true) throw new Exception(_('La fiche ').${'e_march'.$i}._('n\'a pas de poste comptable'),8); /* get the account and explode if necessary */ $sposte=$fiche->strAttribut(ATTR_DEF_ACCOUNT); // if 2 accounts, take only the debit if ( strpos($sposte,',') != 0 ) { $array=explode(',',$sposte); $poste_val=$array[0]; } else { $poste_val=$sposte; } /* The account exists */ $poste=new Acc_Account_Ledger($this->db,$poste_val); if ( $poste->load() == false ) { throw new Exception(_('Pour la fiche ').${'e_march'.$i}._(' le poste comptable').' ['.$poste->id._('n\'existe pas'),9); } /* Check if the card belong to the ledger */ $fiche=new Fiche ($this->db); $fiche->get_by_qcode(${'e_march'.$i}); if ( $fiche->belong_ledger($p_jrn,'deb') !=1 ) throw new Exception(_('La fiche ').${'e_march'.$i}._('n\'est pas accessible à ce journal'),10); /** * we have to check also if the different accountings exist "ATTR_DEF_DEP_PRIV" "ATTR_DEF_DEPENSE_NON_DEDUCTIBLE" "ATTR_DEF_TVA_NON_DEDUCTIBLE" "ATTR_DEF_TVA_NON_DEDUCTIBLE_RECUP" */ foreach (array( array(ATTR_DEF_DEPENSE_NON_DEDUCTIBLE,'DNA',ATTR_DEF_ACCOUNT_ND), array(ATTR_DEF_DEP_PRIV,'DEP_PRIV',ATTR_DEF_ACCOUNT_ND_PERSO), array(ATTR_DEF_TVA_NON_DEDUCTIBLE_RECUP,'TVA_DED_IMPOT',ATTR_DEF_ACCOUNT_ND_TVA), array(ATTR_DEF_TVA_NON_DEDUCTIBLE,'TVA_DNA',ATTR_DEF_ACCOUNT_ND_TVA_ND)) as $key) { if ( ! $fiche->empty_attribute($key[0]) && $fiche->empty_attribute($key[2])) { $a=new Acc_Parm_Code($this->db,$key[1]); if ( $this->db->count_sql('select pcm_val from tmp_pcmn where pcm_val=$1',array($a->p_value))==0) throw new Exception ($key[1]._("ce code n'a pas de poste comptable, créez ce poste : [".$a->p_value."]")); } if ( ! $fiche->empty_attribute($key[0]) && ! $fiche->empty_attribute($key[2])) { $nd_str=$fiche->strAttribut($key[2]); if ( $nd_str != '') { $poste_nd=new Acc_Account_Ledger($this->db,$nd_str); if ( $poste_nd->load() == false) { $nd_msg=sprintf(_("Pour la fiche %s, le compte contrepartie %s n'existe pas"), $fiche->getName(),$poste_nd->id); $nd_msg=h($nd_msg); throw new Exception ($nd_msg); } } } } $nb++; } if ( $nb == 0 ) throw new Exception(_('Il n\'y a aucune marchandise'),12); } /*!\brief insert into the database, it calls first the verify function * change the value of this->jr_id and this->jr_internal. * It generates the document and save the middle of payment, if 'gen_invoice is set * and e_mp *\param $p_array is usually $_POST or a predefined operation \code Array ( [e_client] =>BELGACOM [nb_item] =>9 [p_jrn] =>3 [period] =>117 [e_comm] =>Frais de téléphone [e_date] =>01.09.2009 [e_ech] => [jrn_type] =>ACH [e_pj] =>ACH53 [e_pj_suggest] =>ACH53 [mt] =>1265318941.39 [e_mp] =>0 [e_march0] =>TEL [e_march0_price] =>63.6700 [e_march0_tva_id] =>1 [e_march0_tva_amount] =>13.3700 [e_quant0] =>1.000 ... [bon_comm] => [other_info] => [record] =>Enregistrement ) \endcode *\return string *\note throw an Exception */ public function insert($p_array=null) { global $g_parameter; extract ($p_array); $this->verify($p_array) ; $group=$this->db->get_next_seq("s_oa_group"); /* for analytic */ $seq=$this->db->get_next_seq('s_grpt'); $this->id=$p_jrn; $internal=$this->compute_internal_code($seq); $this->internal=$internal; $cust=new Fiche($this->db); $cust->get_by_qcode($e_client); $sposte=$cust->strAttribut(ATTR_DEF_ACCOUNT); // if 2 accounts, take only the credit Supplier if ( strpos($sposte,',') != 0 ) { $array=explode(',',$sposte); $poste=$array[1]; } else { $poste=$sposte; } $oPeriode=new Periode($this->db); $check_periode=$this->check_periode(); if ( $check_periode == true ) $tperiode=$period; else $tperiode=$oPeriode->find_periode($e_date); bcscale(4); try { $tot_amount=0; $tot_tva=0; $tot_debit=0; $this->db->start(); $tot_nd=0; $tot_perso=0; $tot_tva_nd=0; $tot_tva_ndded=0; /* Save all the items without vat and no deductible vat and expense*/ for ($i=0;$i< $nb_item;$i++) { $n_both=0; if ( strlen(trim(${'e_march'.$i})) == 0 ) continue; if ( ${'e_march'.$i.'_price'} == 0 ) continue; if ( ${'e_quant'.$i} == 0 ) continue; /* First we save all the items without vat */ $fiche=new Fiche($this->db); $fiche->get_by_qcode(${"e_march".$i}); /* tva */ if ($g_parameter->MY_TVA_USE=='Y') { $idx_tva=${'e_march'.$i.'_tva_id'}; $oTva=new Acc_Tva($this->db); $oTva->set_parameter('id',$idx_tva); $oTva->load(); } /* We have to compute all the amount thanks Acc_Compute */ $amount=bcmul(${'e_march'.$i.'_price'},${'e_quant'.$i}); $acc_amount=new Acc_Compute(); $acc_amount->check=false; $acc_amount->set_parameter('amount',$amount); if ( $g_parameter->MY_TVA_USE=='Y') { $acc_amount->set_parameter('amount_vat_rate',$oTva->get_parameter('rate')); if ( strlen(trim(${'e_march'.$i.'_tva_amount'})) ==0) { $acc_amount->compute_vat(); } else { $acc_amount->amount_vat= ${'e_march'.$i.'_tva_amount'}; } if ($oTva->get_parameter("both_side")==0) $tot_tva=bcadd($tot_tva,$acc_amount->amount_vat); } $acc_operation=new Acc_Operation($this->db); $acc_operation->date=$e_date; $acc_operation->grpt=$seq; $acc_operation->jrn=$p_jrn; $acc_operation->type='d'; $acc_operation->periode=$tperiode; $acc_operation->qcode=""; if ( ! $fiche->empty_attribute(ATTR_DEF_DEPENSE_NON_DEDUCTIBLE)) { $acc_amount->amount_nd_rate=$fiche->strAttribut(ATTR_DEF_DEPENSE_NON_DEDUCTIBLE); $acc_amount->compute_nd(); $tot_nd+=$acc_amount->amount_nd; } if ( ! $fiche->empty_attribute(ATTR_DEF_DEP_PRIV)) { $acc_amount->amount_perso_rate=$fiche->strAttribut(ATTR_DEF_DEP_PRIV); $acc_amount->compute_perso(); $tot_perso+=$acc_amount->amount_perso; } if ( ! $fiche->empty_attribute(ATTR_DEF_TVA_NON_DEDUCTIBLE)) { $acc_amount->nd_vat_rate=$fiche->strAttribut(ATTR_DEF_TVA_NON_DEDUCTIBLE); $acc_amount->compute_nd_vat(); $tot_tva_nd+=$acc_amount->nd_vat; /* save op. */ } if ( ! $fiche->empty_attribute(ATTR_DEF_TVA_NON_DEDUCTIBLE_RECUP)) { $acc_amount->nd_ded_vat_rate=$fiche->strAttribut(ATTR_DEF_TVA_NON_DEDUCTIBLE_RECUP); $acc_amount->compute_ndded_vat(); /* save op. */ $tot_tva_ndded+=$acc_amount->nd_ded_vat; } $acc_amount->correct(); $tot_amount+=$amount; /* get the account and explode if necessary */ $sposte=$fiche->strAttribut(ATTR_DEF_ACCOUNT); // if 2 accounts, take only the debit one for customer if ( strpos($sposte,',') != 0 ) { $array=explode(',',$sposte); $poste_val=$array[0]; } else { $poste_val=$sposte; } $acc_operation->poste=$poste_val; $acc_operation->amount=$acc_amount->amount; $acc_operation->qcode=${"e_march".$i}; if( $acc_amount->amount > 0 ) $tot_debit=bcadd($tot_debit,$acc_amount->amount); $j_id=$acc_operation->insert_jrnx(); /* Compute sum vat */ if ( $g_parameter->MY_TVA_USE=='Y') { $tva_item=$acc_amount->amount_vat; if (isset($tva[$idx_tva] ) ) $tva[$idx_tva]+=$tva_item; else $tva[$idx_tva]=$tva_item; } /* Save the stock */ /* if the quantity is < 0 then the stock increase (return of * material) */ $nNeg=(${"e_quant" . $i}< 0) ? -1 : 1; // always save quantity but in withStock we can find // what card need a stock management InsertStockGoods($this->db,$j_id,${'e_march'.$i},$nNeg*${'e_quant'.$i},'d') ; if ( $g_parameter->MY_ANALYTIC != "nu" ) { // for each item, insert into operation_analytique */ $op=new Anc_Operation($this->db); $op->oa_group=$group; $op->j_id=$j_id; $op->oa_date=$e_date; $op->oa_debit=($amount > 0 )?'t':'f'; $op->oa_description=sql_string($e_comm); $op->save_form_plan($_POST,$i,$j_id); } // insert into quant_purchase //----- if ( $g_parameter->MY_TVA_USE=='Y') { if ( $oTva->get_parameter("both_side")==1) $n_both=$acc_amount->amount_vat; $r=$this->db->exec_sql("select insert_quant_purchase ". "(null". ",".$j_id. /* 2 */ ",'".${"e_march".$i}."'". /* 3 */ ",".${"e_quant".$i}.",". /* 4 */ round($amount,2). /* 5 */ ",".$acc_amount->amount_vat. /* 6 */ ",".$oTva->get_parameter('id'). /* 7 */ ",".$acc_amount->amount_nd. /* 8 */ ",".$acc_amount->nd_vat. /* 9 */ ",".$acc_amount->nd_ded_vat. /* 10 */ ",".$acc_amount->amount_perso. /* 11 */ ",'".$e_client."',".$n_both.")"); /* 12 */ } else { $r=$this->db->exec_sql("select insert_quant_purchase ". "(null". ",".$j_id. ",'".${"e_march".$i}."'". ",".${"e_quant".$i}.",". round($amount,2). ",0". ",null". ",".$acc_amount->amount_nd. ",0". ",".$acc_amount->nd_ded_vat. ",".$acc_amount->amount_perso. ",'".$e_client."',".$n_both.")"); } } // end loop : save all items /* save total customer */ $cust_amount=round(bcadd($tot_amount,$tot_tva),2); $acc_operation=new Acc_Operation($this->db); $acc_operation->date=$e_date; $acc_operation->poste=$poste; $acc_operation->amount=$cust_amount; $acc_operation->grpt=$seq; $acc_operation->jrn=$p_jrn; $acc_operation->type='c'; $acc_operation->periode=$tperiode; $acc_operation->qcode=${"e_client"}; if ( $cust_amount < 0 ) $tot_debit=bcadd($tot_debit,abs($cust_amount)); $let_client=$acc_operation->insert_jrnx(); /* * Save all the no deductible * ATTR_DEF_ACCOUNT_ND_TVA,ATTR_DEF_ACCOUNT_ND_TVA_ND,ATTR_DEF_ACCOUNT_ND_PERSO,ATTR_DEF_ACCOUNT_ND */ if ( $tot_nd != 0) { $dna_default=new Acc_Parm_Code($this->db,'DNA'); /* save op. */ if ( ! $fiche->empty_attribute(ATTR_DEF_ACCOUNT_ND)) { $dna=$fiche->strAttribut(ATTR_DEF_ACCOUNT_ND); } else { $dna=$dna_default->p_value; } $dna=($dna=='')?$dna_default->p_value:$dna; $acc_operation->type='d'; $acc_operation->amount=$tot_nd; $acc_operation->poste=$dna; $acc_operation->qcode=''; if ( $tot_nd > 0 ) $tot_debit=bcadd($tot_debit,$tot_nd); $j_id=$acc_operation->insert_jrnx(); } /* *ATTR_DEF_ACCOUNT_ND_PERSO */ if ( $tot_perso != 0) { $dna_default=new Acc_Parm_Code($this->db,'DEP_PRIV'); /* save op. */ $acc_operation->type='d'; if ( ! $fiche->empty_attribute(ATTR_DEF_ACCOUNT_ND_PERSO)) { $dna=$fiche->strAttribut(ATTR_DEF_ACCOUNT_ND_PERSO); } else { $dna=$dna_default->p_value; } $dna=($dna=='')?$dna_default->p_value:$dna; $acc_operation->amount=$tot_perso; $acc_operation->poste=$dna; $acc_operation->qcode=''; if ( $tot_perso > 0 ) $tot_debit=bcadd($tot_debit,$tot_perso); $j_id=$acc_operation->insert_jrnx(); } if ( $tot_tva_nd != 0) { $dna_default=new Acc_Parm_Code($this->db,'TVA_DNA'); /* save op. */ $acc_operation->type='d'; $acc_operation->qcode=''; if ( ! $fiche->empty_attribute(ATTR_DEF_ACCOUNT_ND_TVA_ND)) { $dna=$fiche->strAttribut(ATTR_DEF_ACCOUNT_ND_TVA_ND); } else { $dna=$dna_default->p_value; } $dna=($dna=='')?$dna_default->p_value:$dna; $acc_operation->amount=$tot_tva_nd; $acc_operation->poste=$dna; if ( $tot_tva_nd > 0 ) $tot_debit=bcadd($tot_debit,$tot_tva_nd); $j_id=$acc_operation->insert_jrnx(); } if ( $tot_tva_ndded != 0) { $dna_default=new Acc_Parm_Code($this->db,'TVA_DED_IMPOT'); /* save op. */ if ( ! $fiche->empty_attribute(ATTR_DEF_ACCOUNT_ND_TVA)) { $dna=$fiche->strAttribut(ATTR_DEF_ACCOUNT_ND_TVA); } else { $dna=$dna_default->p_value; } $dna=($dna=='')?$dna_default->value:$dna; $acc_operation->type='d'; $acc_operation->qcode=''; $acc_operation->amount=$tot_tva_ndded; $acc_operation->poste=$dna; if ( $tot_tva_ndded > 0 ) $tot_debit=bcadd($tot_debit,$tot_tva_ndded); $j_id=$acc_operation->insert_jrnx(); } if ( $g_parameter->MY_TVA_USE=='Y') { /* save all vat * $i contains the tva_id and value contains the vat amount */ foreach ($tva as $i => $value) { $oTva=new Acc_Tva($this->db); $oTva->set_parameter('id',$i); $oTva->load(); $poste_vat=$oTva->get_side('d'); $cust_amount=bcadd($tot_amount,$tot_tva); $acc_operation=new Acc_Operation($this->db); $acc_operation->date=$e_date; $acc_operation->poste=$poste_vat; $acc_operation->amount=$value; $acc_operation->grpt=$seq; $acc_operation->jrn=$p_jrn; $acc_operation->type='d'; $acc_operation->periode=$tperiode; if ( $value > 0 ) $tot_debit=bcadd($tot_debit,$value); $acc_operation->insert_jrnx(); // if TVA is on both side, we deduce it immediately if ( $oTva->get_parameter("both_side")==1) { $poste_vat=$oTva->get_side('c'); $cust_amount=bcadd($tot_amount,$tot_tva); $acc_operation=new Acc_Operation($this->db); $acc_operation->date=$e_date; $acc_operation->poste=$poste_vat; $acc_operation->amount=$value; $acc_operation->grpt=$seq; $acc_operation->jrn=$p_jrn; $acc_operation->type='c'; $acc_operation->periode=$tperiode; $acc_operation->insert_jrnx(); } } } /* insert into jrn */ $acc_operation=new Acc_Operation($this->db); $acc_operation->date=$e_date; $acc_operation->echeance=$e_ech; $acc_operation->amount=abs(round($tot_debit,2)); $acc_operation->desc=$e_comm; $acc_operation->grpt=$seq; $acc_operation->jrn=$p_jrn; $acc_operation->periode=$tperiode; $acc_operation->pj=$e_pj; $acc_operation->mt=$mt; $this->jr_id=$acc_operation->insert_jrn(); $this->pj=$acc_operation->set_pj(); // Set Internal code $this->grpt_id=$seq; $this->update_internal_code($internal); /* update quant_purchase */ $this->db->exec_sql('update quant_purchase set qp_internal = $1 where j_id in (select j_id from jrnx where j_grpt=$2)', array($internal,$seq)); /* if e_suggest != e_pj then do not increment sequence */ if ( strcmp($e_pj,$e_pj_suggest) == 0 && strlen(trim($e_pj)) != 0 ) { $this->inc_seq_pj(); } /* Save the attachment */ if ( isset ($_FILES)) { if ( sizeof($_FILES) != 0 ) $this->db->save_upload_document($seq); } $str_file=""; /* Generate an document and save it into the database (Note de frais only) */ if ( isset($_POST['gen_invoice']) ) { $ref_doc= $this->create_document($internal,$p_array); $this->doc= _('Document généré')." : "; $this->doc.=''.$ref_doc.''; } //---------------------------------------- // Save the payer //---------------------------------------- if ( $e_mp != 0 ) { /* mp */ $mp=new Acc_Payment($this->db,$e_mp); $mp->load(); /* fiche */ if ($mp->get_parameter('qcode') == '') $fqcode=${'e_mp_qcode_'.$e_mp}; else $fqcode=$mp->get_parameter('qcode'); $acfiche = new Fiche($this->db); $acfiche->get_by_qcode($fqcode); /* jrnx */ $acseq=$this->db->get_next_seq('s_grpt'); $acjrn=new Acc_Ledger($this->db,$mp->get_parameter('ledger_target')); $acinternal=$acjrn->compute_internal_code($acseq); /* Insert paid by */ $acc_pay=new Acc_Operation($this->db); $acc_pay->date=$e_date; /* get the account and explode if necessary */ $sposte=$acfiche->strAttribut(ATTR_DEF_ACCOUNT); // if 2 accounts, take only the debit one for customer if ( strpos($sposte,',') != 0 ) { $array=explode(',',$sposte); $poste_val=$array[1]; } else { $poste_val=$sposte; } $acc_pay->poste=$poste_val; $acc_pay->qcode=$fqcode; $acc_pay->amount=abs(round($cust_amount,2)); $acc_pay->desc=$e_comm; $acc_pay->grpt=$acseq; $acc_pay->jrn=$mp->get_parameter('ledger_target'); $acc_pay->periode=$tperiode; $acc_pay->type=($cust_amount>=0)?'c':'d'; $acc_pay->insert_jrnx(); /* Insert supplier */ $acc_pay=new Acc_Operation($this->db); $acc_pay->date=$e_date; $acc_pay->poste=$poste; $acc_pay->qcode=$e_client; $acc_pay->amount=abs(round($cust_amount,2)); $acc_pay->desc=$e_comm; $acc_pay->grpt=$acseq; $acc_pay->jrn=$mp->get_parameter('ledger_target'); $acc_pay->periode=$tperiode; $acc_pay->type=($cust_amount>=0)?'d':'c'; $let_other=$acc_pay->insert_jrnx(); /* insert into jrn */ $acc_pay->mt=$mt; $mp_jr_id=$acc_pay->insert_jrn(); $acjrn->grpt_id=$acseq; $acjrn->update_internal_code($acinternal); $r1=$this->get_id($internal); $r2=$this->get_id($acinternal); /* * add lettering */ $oletter=new Lettering($this->db); $oletter->insert_couple($let_client,$let_other); /* set the flag paid */ $Res=$this->db->exec_sql("update jrn set jr_rapt='paid' where jr_id=$1",array($r1)); /* Reconcialiation */ $rec=new Acc_Reconciliation($this->db); $rec->set_jr_id($r1); $rec->insert($r2); /* * save also into quant_fin */ /* get ledger property */ $ledger=new Acc_Ledger_Fin($this->db,$acc_pay->jrn); $prop=$ledger->get_propertie(); /* if ledger is FIN then insert into quant_fin */ if ( $prop['jrn_def_type'] == 'FIN' ) { $ledger->insert_quant_fin($acfiche->id,$mp_jr_id,$cust->id,bcmul($cust_amount,-1)); } } }//end try catch (Exception $e) { echo ''. 'Erreur dans l\'enregistrement '. __FILE__.':'.__LINE__.' '. $e->getMessage().$e->getTraceAsString(); $this->db->rollback(); exit(); } $this->db->commit(); return $internal; } /*!\brief display the form for entering data for invoice *\param $p_array is null or you can put the predef operation or the $_POST \code array 'sa' => string 'n' (length=1) 'p_action' => string 'ach' (length=3) 'gDossier' => string '28' (length=2) 'e_client' => string 'ASEKURA' (length=7) 'nb_item' => string '9' (length=1) 'p_jrn' => string '3' (length=1) 'period' => string '126' (length=3) 'e_comm' => string 'descriptio' (length=10) 'e_date' => string '01.05.2010' (length=10) 'e_ech' => string '' (length=0) 'jrn_type' => string 'ACH' (length=3) 'e_pj' => string 'ACH37' (length=5) 'e_pj_suggest' => string 'ACH37' (length=5) 'mt' => string '1273759434.5701' (length=15) 'e_mp' => string '0' (length=1) 'e_march0' => string 'DOC' (length=3) 'e_march0_price' => string '2000' (length=4) 'e_march0_tva_id' => string '3' (length=1) 'e_march0_tva_amount' => string '120' (length=3) 'e_quant0' => string '1' (length=1) 'gen_invoice' => string 'on' (length=2) 'gen_doc' => string '7' (length=1) 'bon_comm' => string '' (length=0) 'other_info' => string '' (length=0) 'correct' => string 'Corriger' (length=8) \endcode *\return HTML string */ public function input($p_array=null,$p_readonly=0) { global $g_parameter; if ( $p_array != null ) extract($p_array); $user = new User($this->db); $flag_tva=$g_parameter->MY_TVA_USE; /* Add button */ $f_add_button=new IButton('add_card'); $f_add_button->label=_('Créer une nouvelle fiche'); $f_add_button->set_attribute('ipopup','ipop_newcard'); $f_add_button->set_attribute('jrn',$this->id); $f_add_button->javascript=" this.jrn=\$('p_jrn').value;select_card_type(this);"; $f_add_button2=new IButton('add_card2'); $f_add_button2->label=_('Créer une nouvelle fiche'); $f_add_button2->set_attribute('ipopup','ipop_newcard'); $f_add_button2->set_attribute('filter',$this->get_all_fiche_def ()); // $f_add_button2->set_attribute('jrn',$this->id); $f_add_button2->javascript=" this.jrn=\$('p_jrn').value;select_card_type(this);"; $str_add_button=$f_add_button->input(); $str_add_button2=$f_add_button2->input(); // The first day of the periode $oPeriode=new Periode($this->db); list ($l_date_start,$l_date_end)=$oPeriode->get_date_limit($user->get_periode()); if ( $g_parameter->MY_DATE_SUGGEST=='Y' ) $op_date=( ! isset($e_date) ) ?$l_date_start:$e_date; else $op_date=( ! isset($e_date) ) ?'':$e_date; $e_ech=(isset($e_ech))?$e_ech:""; $e_comm=(isset($e_comm))?$e_comm:""; $r=""; $r.=dossier::hidden(); $f_legend=_("En-tête facture fournisseur"); $f_legend_detail=_("Détail articles acheté"); // Date //-- $Date=new IDate(); $Date->setReadOnly(false); $Date->table=1; $Date->tabindex=1; $f_date=$Date->input("e_date",$op_date); // Payment limit //-- $Echeance=new IDate(); $Echeance->setReadOnly(false); $Echeance->tabindex=2; $label=HtmlInput::infobulle(4); $f_echeance=$Echeance->input('e_ech',$e_ech,'Echéance'.$label); $f_periode=""; if ($this->check_periode() == true) { // Periode //-- $l_user_per=$user->get_periode(); $def=(isset($periode))?$periode:$l_user_per; $period=new IPeriod("period"); $period->user=$user; $period->cn=$this->db; $period->value=$def; $period->type=OPEN; try { $l_form_per=$period->input(); } catch (Exception $e) { if ($e->getCode() == 1 ) { echo _("Aucune période ouverte"); exit(); } } $r.="