noalyss  Version-6.7.2
Public Member Functions | Data Fields
Anc_Operation Class Reference

this class is used to show the form for entering an operation only FOR analytic operation to save it, to display or to get a list from a certain period More...

Public Member Functions

 add ($p_seq=0)
 add a row to the table operation_analytique
 Anc_Operation ($p_cn, $p_id=0)
 constructor
 delete ()
 delete a row from the table operation_analytique
 delete_by_jid ($p_jid)
 delete from operation_analytique
 display_form_plan ($p_array, $p_null, $p_mode, $p_seq, $p_amount, $p_id='')
 display the form for PA
 display_table ($p_mode, $p_amount, $p_id)
 get_balance ($p_from, $p_to, $p_plan_id)
 get_by_jid ($p_jid)
 retrieve an operation thanks a jrnx.j_id
 get_jrid ()
 retrieve the jr_id thanks the oa_group
 get_list ($p_from, $p_to, $p_from_poste="", $p_to_poste="")
 get a list of row from a certain periode
 html_table ($p_from)
 save_form_plan ($p_array, $p_item, $p_j_id)
 it called for each item, the data are taken from $p_array data and set before in this.
 save_form_plan_vat_nd ($p_array, $p_item, $p_j_id, $p_nd)
 Save the ND VAT with prorata.
 save_update_form ($p_array)
 save a whole form from a update box
 test_me ()
 to_request ($p_array, $p_line)
 update_from_jrnx ($p_po_id)
 modify an op from modify_op.php

Data Fields

 $db
 $id
 $j_id
 $list
 $oa_amount
 $oa_date
 $oa_debit
 $oa_description
 $oa_group
 $oa_jrnx_id_source
 In the case, the amount comes from a ND VAT, the variable contents the jrnx.j_id of the source which was used to compute the amount.
 $oa_positive
 signed of the amount
 $pa_id
 $po_id
 $row

Detailed Description

this class is used to show the form for entering an operation only FOR analytic operation to save it, to display or to get a list from a certain period

Definition at line 37 of file class_anc_operation.php.


Member Function Documentation

Anc_Operation::add ( p_seq = 0)

add a row to the table operation_analytique

Note:
if $this->oa_group if 0 then a sequence id will be computed for the oa_group, if $this->j_id=0 then it will be null

Definition at line 78 of file class_anc_operation.php.

References $sql, and db.

Referenced by update_from_jrnx().

    {

        if ( $this->oa_group == 0)
        {
            $this->oa_group=$this->db->get_next_seq('s_oa_group');
        }

        if ( $this->j_id == 0 )
        {
            $this->j_id=null;
        }


        // we don't save null operations
        if ( $this->oa_amount == 0 || $this->po_id==-1)
            return;
        
        if ( $this->oa_amount< 0) 
        {
            $this->oa_debit=($this->oa_debit=='t')?'f':'t';
            $this->oa_positive='N';
        }
        
        $oa_row=(isset($this->oa_row))?$this->oa_row:null;
        $sql="insert into operation_analytique (
             po_id, 
             oa_amount,
             oa_description,
             oa_debit,
             oa_group,
             j_id,
             oa_date,
             oa_row,
             oa_jrnx_id_source,
             oa_positive
             ) values ($1,$2,$3,$4,$5,$6,to_date($7,'DD.MM.YYYY'),$8,$9,$10)";

        $this->db->exec_sql($sql,array(
                $this->po_id, // 1
                abs($this->oa_amount), //2
                $this->oa_description, //3
                $this->oa_debit, //4
                $this->oa_group, //5
                $this->j_id, //6
                $this->oa_date, //7
                $oa_row, //8
                $this->oa_jrnx_id_source, //8
                $this->oa_positive
                ));

    }
Anc_Operation::Anc_Operation ( p_cn,
p_id = 0 
)

constructor

Definition at line 66 of file class_anc_operation.php.

References db.

Referenced by get_by_jid(), and test_me().

    {
        $this->db=$p_cn;
        $this->id=$p_id;
        $this->oa_jrnx_id_source=null;
        $this->oa_positive='Y';
    }

delete a row from the table operation_analytique

Note:
be carefull : do not delete a row when we have a group

Definition at line 133 of file class_anc_operation.php.

References $sql, and db.

    {
        $sql="delete from operation_analytique where oa_id=$1";

        $this->db->exec_sql($sql,array($this->oa_id));
    }

delete from operation_analytique

Parameters:
$p_jidthe operation_analytique.j_id field
Returns:
none

Definition at line 792 of file class_anc_operation.php.

References $sql, and db.

    {
        $sql="delete from operation_analytique where j_id=$p_jid";
        $this->db->exec_sql($sql);
    }
Anc_Operation::display_form_plan ( p_array,
p_null,
p_mode,
p_seq,
p_amount,
p_id = '' 
)

display the form for PA

Parameters:
$p_arraycontains POST (or GET) data (val[] hplan[][] op[])
$p_null= 1 if PA optional otherwise 0 mandatory
$p_mode== form 1 ==> read/write otherwise 0==>readonly
$p_seqnumber of the row
$p_amountamount
$p_idoperation is detailled in a HTML popup, if several are opened, the tableid MUST be different. So we need to use a new parameter
See also:
save_form_plan
Note:
  • op is an array containing the line number
  • pa_id is an array of the existing array
  • hplan is an array of the POSTE ANALYTIQUE id used, the size of hplan from 0 to x, x can be bigger than the number of plan id
  • val contains the amount by row inside the table. One operation (j_id) you can have several rows
        0 =>
          array
            'op' => int 200
        'pa_id' =>
          array
            0 => string '14' (length=2)
            1 => string '15' (length=2)
        'hplan' =>
          array
            1 =>
              array
                0 => string '25' (length=2)
                1 => string '26' (length=2)
        'val' =>
          array
            1 =>
              array
                0 => string '100.0000' (length=8)
    

Definition at line 457 of file class_anc_operation.php.

References $array, $count, $hidden, $p_array, $result, $val, $value, add_row(), db, table, and tr().

    {
        if ( $p_array != null)
            extract ($p_array);
        $result="";
        $plan=new Anc_Plan($this->db);
        $a_plan=$plan->get_list(" order by pa_id ");
        if ( empty ($a_plan) ) return "";
        $table_id="t".$p_seq;
        $hidden=new IHidden();

                $readonly=($p_mode==1)?false:true;

        $result.=$hidden->input('amount_'.$table_id,$p_amount);
        if ( $p_mode==1 )
            $result.='<table id="'.$p_id.$table_id.'">';
        else
            $result.='<table>';
        $result.="<tr>".$plan->header()."<th>montant</th></tr>";

        /* compute the number of rows */
        $nb_row=(isset($val[$p_seq]))?count($val[$p_seq]):1;
        $count=0;

                $remain=$p_amount;
                $ctrl_remain="remain".$table_id;

        for ( $i=0; $i < $nb_row;$i++)
        {
            $result.='<tr>';

            foreach ($a_plan as $r_plan)
            {

                $array=$this->db->make_array(
                           "select po_id as value,".
                           " html_quote(po_name) as label from poste_analytique ".
                           " where pa_id = ".$r_plan['id'].
                           " order by po_name",$p_null);
                $select =new ISelect("hplan[".$p_seq."][]",$array);
                $select->table=0;
                // view only or editables
                if (  $p_mode==1 )
                {
                    // editable
                    $select->readonly=false;
                    if ( isset($hplan) && isset($hplan[$p_seq][$count]) ){
                        $select->selected=$hplan[$p_seq][$count];

                                        }
                }
                else
                {
                                        if ( isset($hplan) && isset($hplan[$p_seq][$count]) ){
                        $select->selected=$hplan[$p_seq][$count];
                                        }
                    // view only
                    $select->readOnly=true;
                }
                if ($p_mode==1)
                    $result.='<td>'.$select->input().'</td>';
                else
                    $result.='<td>'.$select->display().'</td>';
                $count++;


            }
            $value=new INum();
                        $value->javascript='onchange="format_number(this);anc_refresh_remain(\''.$table_id.'\',\''.$p_seq.'\')"';
            $value->name="val[".$p_seq."][]";
            $value->size=6;
            $value->value=(isset($val[$p_seq][$i]))?$val[$p_seq][$i]:$p_amount;
            $value->readOnly=($p_mode==1)?false:true;
                        $remain=bcsub($remain,$value->value);
            $result.='<td>'.$value->input().'</td>';

            $result.="</tr>";
        }

        $result.="</table>";
        if ( $p_mode == 1 )
        {
            $style_remain=($remain==0)?'style="color:green"':' style="color:red"';
            $result.=" Reste à imputer =  ".
                            '<span class="remain" '.$style_remain.' id="'.$ctrl_remain.'">'.
                            $remain.'</span>';

            // add a button to add a row
            $button=new IButton();
            $button->javascript="add_row('".$p_id."$table_id',$p_seq);";
            $button->name="js".$p_id.$p_seq;
            $button->label="Nouvelle ligne";

            $result.="<br>".$button->input();
        }

        return $result;
    }
Anc_Operation::display_table ( p_mode,
p_amount,
p_id 
)

Definition at line 806 of file class_anc_operation.php.

References $array, $seq, get_by_jid(), and to_request().

    {
        static $seq=-1;         /* first seq == 0 */
        $seq++;

        $array=$this->get_by_jid($this->j_id) ;
        if ( $array != null )
        {
            $request=$this->to_request($array,$seq);
            return "<td>".$this->display_form_plan($request,1,$p_mode,$seq,$p_amount,$p_id)."</td>";
        }
        else
        {
            return '<td>'.$this->display_form_plan(null,1,$p_mode,$seq,$p_amount,$p_id)."</TD>";
        }
        return "";

    }
Anc_Operation::get_balance ( p_from,
p_to,
p_plan_id 
)

Definition at line 394 of file class_anc_operation.php.

References $array, $e, $res, $sql, db, Database\fetch_all(), and sql_filter_per().

    {
        // for the operation connected to jrnx
        $cond=sql_filter_per($this->db,$p_from,$p_to,'p_id','j_date');
        $sql="select oa_id, po_id, oa_amount, oa_debit, j_date from jrnx join operation_analytique using (j_id)
             join poste_analytique using (po_id)
             where
             $cond and j_id is not null and pa_id=$p_plan_id";

        // OD
        $cond=sql_filter_per($this->db,$p_from,$p_to,'p_id','oa_date');
        $sql="union select oa_id, po_id, oa_amount, oa_debit,oa_date from
             operation_analytique
             join poste_analytique using (po_id)
             where j_id is null and
             $cond and pa_id=$p_plan_id ";
        try
        {
            $res=$this->db->exec_sql($sql);
            $array=Database::fetch_all($res);
        }
        catch (Exception $e)
        {
            var_dump($e);
        }
    }

retrieve an operation thanks a jrnx.j_id

Parameters:
thejrnx.j_id
Returns:
null if nothing is found other an array

Definition at line 316 of file class_anc_operation.php.

References $a, $array, $res, $ret, $row, $sql, $value, Anc_Operation(), db, and Database\fetch_all().

Referenced by display_table(), and update_from_jrnx().

    {
        $sql="select distinct oa_id,
             po_id,
             oa_amount,
             oa_description,
             oa_debit,
             j_id,
             oa_group,
             oa_date,
             pa_id,
             oa_row,
             oa_positive
             from operation_analytique join poste_analytique using (po_id)
             where
             j_id=$p_jid order by j_id,oa_row,pa_id";
        $ret=$this->db->exec_sql($sql);
        $res=Database::fetch_all($ret);
        if ( $res== false) return null;

        foreach ($res as $row)
        {
            $a=new Anc_Operation($this->db);
            foreach ( $row as $attr=>$value )
            {
                $a->$attr=$row[$attr];
            }
            $array[]=clone $a;
        }
        return $array;
    }

retrieve the jr_id thanks the oa_group

Definition at line 381 of file class_anc_operation.php.

References $res, $ret, $sql, db, Database\fetch_all(), and Database\num_row().

Referenced by html_table().

    {
        $sql="select distinct jr_id from jrn join jrnx on (j_grpt=jr_grpt_id) join operation_analytique using (j_id) where j_id is not null and oa_group=".$this->oa_group;
        $res=$this->db->exec_sql($sql);
        if ( Database::num_row($res) == 0 ) return 0;
        $ret=Database::fetch_all($res);
        return $ret[0]['jr_id'];
    }
Anc_Operation::get_list ( p_from,
p_to,
p_from_poste = "",
p_to_poste = "" 
)

get a list of row from a certain periode

Definition at line 142 of file class_anc_operation.php.

References $array, $cond_poste, $sql, db, and Database\fetch_all().

Referenced by html_table().

    {
        $cond="";
        $cond_poste="";

        if ($p_from!="")
            $cond="and jr_date >= to_date('$p_from','DD.MM.YYYY') ";
        if ( $p_to!="" )
            $cond.="and jr_date <=to_date('$p_to','DD.MM.YYYY')";

        if ($p_from_poste != "" )
            $cond_poste=" and upper(po_name) >= upper('".$p_from_poste."')";
        if ($p_to_poste != "" )
            $cond_poste.=" and upper(po_name) <= upper('".$p_to_poste."')";
        $pa_id_cond="";
        if ( isset ( $this->pa_id) && $this->pa_id !='')
            $pa_id_cond= "pa_id=".$this->pa_id." and";
        $sql="
        select oa_id,
        po_name,
        oa_description,
        po_description,
        oa_debit,
        to_char(jr_date,'DD.MM.YYYY') as oa_date,
        oa_amount,
        oa_group,
        j_id ,
        jr_internal,
        jr_id,
        jr_comment,
        j_poste,
        jrnx.f_id,
        ( select ad_value from fiche_Detail where f_id=jrnx.f_id and ad_id=23) as qcode
        from operation_analytique as B join poste_analytique using(po_id)
        left join jrnx using (j_id)
        left join jrn on  (j_grpt=jr_grpt_id)
             where $pa_id_cond oa_amount <> 0.0 $cond $cond_poste
        order by jr_date,oa_group,oa_debit desc,oa_id";

        $RetSql=$this->db->exec_sql($sql);

        $array=Database::fetch_all($RetSql);
        return $array;
    }

Definition at line 189 of file class_anc_operation.php.

References $_GET, $array, $bar, $class, $count, $cred, $detail, $from, $gDossier, $jr_id, $offset, $page, $ret, $row, $step, $to, db, get_jrid(), get_list(), h(), id, navigation_bar(), nbm(), and td().

    {
        if ($p_from=="")
        {
            $from="";
            $to="";
        }
        else
        {
            $p=new Periode($this->db);
            list($from,$to)=$p->get_date_limit($p_from);
        }

        $array=$this->get_list($from,$to);
        if ( empty($array)  )
            return "Pas d'enregistrement trouv&eacute;";

        // navigation_bar
        $step=$_SESSION['g_pagesize'];
        $page=(isset($_GET['offset']))?$_GET['page']:1;
        $offset=(isset($_GET['offset']))?$_GET['offset']:0;
        $bar=navigation_bar($offset+1,count($array),$step,$page);

        if ( $step !=-1)
            $view=array_splice($array,$offset,$step);
        else
            $view=$array;

        $gDossier=dossier::id();
        $ret="";
        $ret.=$bar;

        $count=0;
        $group=0;
        $oldgroup=0;
        $oldjrid=0;

        foreach ($view as $row)
        {
            $group=$row['oa_group'];
            if ( $group !=$oldgroup )
            {
                if ( $oldgroup!=0 )
                {

                    $efface=new IButton();
                    $efface->javascript="anc_remove_operation(".$gDossier.",".$oldgroup.")";
                    $efface->name="Efface";
                    $efface->label="Efface";
                    $ret.="<td>".$efface->input()."</td>";

                    $this->oa_group=$oldgroup;
                    $jr_id=$this->get_jrid();

                    if ( $jr_id != 0)
                    {
                        // get the old jr_id
                        $detail=new IButton();
                        $detail->javascript="viewOperation($jr_id,$gDossier)";
                        $detail->name="Detail";
                        $detail->label="Detail";
                        $ret.="<td>".$detail->input()."</td>";
                    }
                    $ret.='</table>';

                }
                $ret.='<table id="'.$row['oa_group'].'" style="margin-bottom:2px;border: 1px solid blue; width: 90%;">';

                $ret.="<th>".
                      $row['oa_date'].
                      "</th>".
                      "<th>".
                      h($row['oa_description']).
                      "</th>";

                $ret.="<th>".
                      "Groupe id : ".$row['oa_group'].
                      "</th>";

                $oldgroup=$group;

            }

            $class=($count%2==0)?"odd":"even";
            $count++;
            $cred= ( $row['oa_debit'] == 'f')?"CREDIT":"DEBIT";
            $ret.="<tr class=\"$class\">";
            $ret.= "<td>".
                   h($row['po_name']).
                   "</td>";

            $ret.=td(h($row['po_description']));

            $ret.='<td class="num">'.   nbm($row['oa_amount']).
                  "</td>".
                  "<td>".
                  $cred.
                  "</td>".

                  "</tr>";
        }


        $efface=new IButton();
        $efface->javascript="anc_remove_operation("."$gDossier,".$oldgroup.")";
        $efface->name="Efface";
        $efface->label="Efface";
        $ret.="<td>".$efface->input()."</td>";
        // get the old jr_id
        $this->oa_group=$oldgroup;
        $jr_id=$this->get_jrid();
        if ( $jr_id != 0 )
        {
            $detail=new IButton();
            $detail->javascript="modifyOperation($jr_id,'".$gDossier."')";
            $detail->name="Detail";
            $detail->label="Detail";
            $ret.="<td>".$detail->input()."</td>";
        }
        $ret.='</table>';
        $ret.=$bar;
        return $ret;
    }
Anc_Operation::save_form_plan ( p_array,
p_item,
p_j_id 
)

it called for each item, the data are taken from $p_array data and set before in this.

Parameters:
$p_itemif the item nb for each item (purchase or selling merchandise)
$p_arraystructure
      nb_tA A is the number of the item it contains the number of
              rows of CA for this card
      valAlR amount for the CA (item A row R)
      ta_AoCrow_R contains the value of the pa_id and po_id for this
                  row with the form pa_id_po_id %d_%d
     *
Attention:
The idea is one j_id matches several oa_id, serveral data are set before the call : -j_id -oa_debit -oa_group -oa_date -oa_description

Definition at line 652 of file class_anc_operation.php.

    {
        extract($p_array);
        if (! isset ($hplan) ) return;
        /* variable for in array
           pa_id array of existing pa_id
           hplan double array with the pa_id (column)
           val double array by row with amount
           op contains sequence
           p_item is used to identify what op is concerned
        */
        /* echo "j_id = $j_id p_item = $p_item hplan=".var_export($hplan[$p_item],true)." val = ".var_export($val[$p_item],true).'<br>'; */
        /* for each row */
        //   for ($i=0;$i<count($val[$p_item]);$i++) {
        $idx_pa_id=0;
        $row=0;
        // foreach col PA
        for ($e=0;$e<count($hplan[$p_item]);$e++)
        {
            if ( $idx_pa_id == count($pa_id))
            {
                $idx_pa_id=0;
                $row++;
            }
            if ($hplan[$p_item][$e] != -1 && $val[$p_item][$row] != '')
            {
                $op=new Anc_Operation($this->db);
                $op->po_id=$hplan[$p_item][$e];
                $op->oa_group=$this->oa_group;
                $op->j_id=$p_j_id;
                $op->oa_amount=$val[$p_item][$row];
                $op->oa_debit=$this->oa_debit;
                $op->oa_date=$this->oa_date;

                $op->oa_description=$this->oa_description;
                $op->oa_row=$row;
                $op->add();
            }
            $idx_pa_id++;
        }
        // }
    }
Anc_Operation::save_form_plan_vat_nd ( p_array,
p_item,
p_j_id,
p_nd 
)

Save the ND VAT with prorata.

Parameters:
$p_arrayusually $_POST
$p_itemitem of the form
$p_j_idjrnx.j_id concerned writing
$p_ndamount nd vat
See also:
Anc_Operation::save_form_plan_vat_nd
Returns:
type

Definition at line 565 of file class_anc_operation.php.

Referenced by save_update_form().

    {
        bcscale(4);
        extract($p_array);
        if (! isset ($hplan) ) return;
        
        if ( ! isset(${'amount_t'.$p_item}) )
            throw new Exception ('amount not set');
        
        $tot=0;
        /* variable for in array
           pa_id array of existing pa_id
           hplan double array with the pa_id (column)
           val double array by row with amount
           op contains sequence
           p_item is used to identify what op is concerned
        */
        /* echo "j_id = $j_id p_item = $p_item hplan=".var_export($hplan[$p_item],true)." val = ".var_export($val[$p_item],true).'<br>'; */
        /* for each row */
        //   for ($i=0;$i<count($val[$p_item]);$i++) {
        $idx_pa_id=0;
        $row=0;
        $a_Anc_Operation=array();
        // foreach col PA
        for ($e=0;$e<count($hplan[$p_item]);$e++)
        {
            if ( $idx_pa_id == count($pa_id))
            {
                $idx_pa_id=0;
                $row++;
            }
            if ($hplan[$p_item][$e] != -1 && $val[$p_item][$row] != '')
            {
                $op=new Anc_Operation($this->db);
                $op->po_id=$hplan[$p_item][$e];
                $op->oa_group=$this->oa_group;
                $op->j_id=$p_j_id;
                $ratio=bcdiv($val[$p_item][$row],${"amount_t".$p_item});
                $amount=  bcmul($p_nd, $ratio);
                $op->oa_amount=abs(round($amount,2));
                $op->oa_debit=$this->oa_debit;
                $op->oa_date=$this->oa_date;

                $op->oa_description=$this->oa_description;
                $op->oa_row=$row;
                $op->oa_jrnx_id_source=$this->oa_jrnx_id_source;
                $a_Anc_Operation[]=clone $op;
            }
            $idx_pa_id++;
        }
        $nb_op=count($a_Anc_Operation);
        bcscale(2);
        for ($i=0;$i<$nb_op;$i++)
        {
            $tot=bcadd($tot,$a_Anc_Operation[$i]->oa_amount);
        }
        if ( $tot != $p_nd )
        {
            $diff=  bcsub($tot, $p_nd);
            $a_Anc_Operation[0]->oa_amount=bcsub($a_Anc_Operation[0]->oa_amount,$diff);
        }
        for ($i=0;$i<$nb_op;$i++)
        {
            $a_Anc_Operation[$i]->add();
        }
    }

save a whole form from a update box

Parameters:
$p_arrayfor ALL j_id
Returns:
Note:
See also:
save_form_plan to_request

Definition at line 705 of file class_anc_operation.php.

References $e, $op, db, and save_form_plan_vat_nd().

    {
        extract($p_array);
        for ($i = 0; $i < count($op); $i++)
        {
            /* clean jrnx */
            $this->db->exec_sql('delete from operation_analytique where j_id=$1', array($op[$i]));

            /* get missing data for adding */
            $a_missing = $this->db->get_array("select to_char(jr_date,'DD.MM.YYYY') as mdate,j_montant,j_debit,jr_comment from jrnx join jrn on (j_grpt=jr_grpt_id) where j_id=$1", array($op[$i]));
            $missing = $a_missing[0];
            $this->oa_debit = $missing['j_debit'];
            $this->oa_description = $missing['jr_comment'];
            $this->j_id = $op[$i];
            $group = $this->db->get_next_seq("s_oa_group"); /* for analytic */
            $this->oa_group = $group;
            $this->oa_date = $missing['mdate'];
            $this->save_form_plan($p_array, $i, $op[$i]);
            
            // There is ND VAT amount
            $a_nd = $this->db->get_array('select j_id from operation_analytique
                where oa_jrnx_id_source=$1', array($op[$i]));
            if (count($a_nd) > 0)
            {
                // for each ND VAT amount
                for ($e=0;$e<count($a_nd);$e++)
                {
                    $this->db->exec_sql('delete from operation_analytique where j_id=$1', array($a_nd[$e]['j_id']));
                    /* get missing data for adding */
                    $a_missing_vat = $this->db->get_array("select to_char(jr_date,'DD.MM.YYYY') as mdate,j_montant,j_debit,jr_comment from jrnx join jrn on (j_grpt=jr_grpt_id) where j_id=$1", array($a_nd[$e]['j_id']));
                    $missing_vat = $a_missing_vat[0];
                    $this->oa_debit = $missing_vat['j_debit'];
                    $this->oa_description = $missing_vat['jr_comment'];
                    $this->j_id = $op[$i];
                    $group = $this->db->get_next_seq("s_oa_group"); /* for analytic */
                    $this->oa_group = $group;
                    $this->oa_date = $missing_vat['mdate'];
                    $this->oa_jrnx_id_source=$op[$i];
                    $p_array['amount_t'.$i]=$missing['j_montant'];
                    $this->save_form_plan_vat_nd($p_array, $i, $a_nd[$e]['j_id'],$missing_vat['j_montant']);
                }
            }
        }
    }

Definition at line 832 of file class_anc_operation.php.

References $_REQUEST, $a, $array, $cn, $j_id, Anc_Operation(), echo, HtmlInput\hidden(), and id.

    {
        $cn=new Database(dossier::id());
        $anco=new Anc_Operation($cn);
        $j_id=200;
        $anco->j_id=$j_id;
        $array=$anco->get_by_jid($j_id);
        $a=$anco->to_request($array,1);
        echo '<form>';
        echo dossier::hidden();
        echo HtmlInput::hidden('j_id',$j_id);
        echo HtmlInput::hidden('test_select',$_REQUEST['test_select']);
        echo $anco->display_table(1,15002,0);
        echo '<input type="submit" name="save">';
        echo '</form>';
        if ( isset($_REQUEST['save']))
        {
            echo "to_save";
            var_dump($_REQUEST);
        }
        var_dump($a);

    }
Anc_Operation::to_request ( p_array,
p_line 
)

Definition at line 756 of file class_anc_operation.php.

References $p_array, $pa_id, $result, $seq, and $val.

Referenced by display_table().

    {
        $result=array();
        $result[]=array('op'=>$this->j_id);
        $pa_id=array();

        /* First add the pa_id */
        for ($i=0;$i < count($p_array);$i++)
        {
            if ( in_array($p_array[$i]->pa_id,$pa_id)==false)
                $pa_id[]=$p_array[$i]->pa_id;
        }
        $result['pa_id']=$pa_id;

        /* add the hplan */
        $seq=0;
        for ($i=0;$i < count($p_array);$i++)
        {
            $hplan[$p_line][$i]=$p_array[$i]->po_id;
        }
        $result['hplan']=$hplan;
        /* Add the amount */
        $idx_pa=0;
        for ($i=0;$i < count($p_array);$i++)
        {
            $val[$p_line][$p_array[$i]->oa_row]=($p_array[$i]->oa_positive=='Y')?$p_array[$i]->oa_amount:($p_array[$i]->oa_amount*(-1));
        }
        $result['val']=$val;
        return $result;
    }

modify an op from modify_op.php

Definition at line 350 of file class_anc_operation.php.

References $a, $res, $row, $sql, add(), db, Database\fetch_array(), get_by_jid(), and Database\num_row().

    {
        $a=$this->get_by_jid($this->j_id);
        if ( $a == null )
        {
            // retrieve data from jrnx
            $sql="select jr_date,j_montant,j_debit from jrnx ".
                 " join jrn on (jr_grpt_id = j_grpt) ".
                 "where j_id=".$this->j_id;
            $res=$this->db->exec_sql($sql);
            if (Database::num_row($res) == 0 ) return;
            $row=Database::fetch_array($res,0);
            $this->oa_amount=$row['j_amount'];
            $this->oa_date=$row['jr_date'];
            $this->oa_debit=$row['j_debit'];
            $this->oa_description=$row['jr_comment'];
            $this->add();
        }
        else
        {
            foreach ($a as $row )
            {
                if ( $row->pa_id == $this->pa_id )
                {
                    $row->po_id=$p_po_id;
                    $row->update();
                }
            }
        }
    }

Field Documentation

Anc_Operation::$db

database connection

Definition at line 39 of file class_anc_operation.php.

Anc_Operation::$id

= oa_id (one row)

Definition at line 42 of file class_anc_operation.php.

Anc_Operation::$j_id

foreign key to a jrnx operation (or null if none

Definition at line 47 of file class_anc_operation.php.

Referenced by test_me().

Anc_Operation::$list

array of all operation

Definition at line 41 of file class_anc_operation.php.

Anc_Operation::$oa_amount

amount for one row

Definition at line 44 of file class_anc_operation.php.

Anc_Operation::$oa_date

equal to j_date if j_id is not null

Definition at line 50 of file class_anc_operation.php.

Anc_Operation::$oa_debit

true for debit or false

Definition at line 46 of file class_anc_operation.php.

Anc_Operation::$oa_description

comment for one row

Definition at line 45 of file class_anc_operation.php.

Anc_Operation::$oa_group

group of operation

Definition at line 49 of file class_anc_operation.php.

Anc_Operation::$oa_jrnx_id_source

In the case, the amount comes from a ND VAT, the variable contents the jrnx.j_id of the source which was used to compute the amount.

Definition at line 57 of file class_anc_operation.php.

Anc_Operation::$oa_positive

signed of the amount

Definition at line 61 of file class_anc_operation.php.

Anc_Operation::$pa_id

the plan analytique id

Definition at line 51 of file class_anc_operation.php.

Referenced by to_request().

Anc_Operation::$po_id

poste analytique

Definition at line 43 of file class_anc_operation.php.

Anc_Operation::$row

array of row for one operation

Definition at line 40 of file class_anc_operation.php.

Referenced by get_by_jid(), html_table(), and update_from_jrnx().


The documentation for this class was generated from the following file:
 All Data Structures Namespaces Files Functions Variables Enumerations