码迷,mamicode.com
首页 > 其他好文 > 详细

记账凭证

时间:2014-10-17 00:28:33      阅读:344      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   os   ar   sp   div   on   

/**
     * 记账标记0未记账    1 已记账
     * @param string $vno_id
     * @param string $falg
     */
    public function signBookFlag($vno_id,$falg)
    {
        if (isset($falg)&& isset($vno_id)){
            $this->db->where(‘vno_id‘,$vno_id);
            $this->db->update($this->table,$flag);
            $affectedRows = $this->db->affected_rows();
            if ($affectedRows>0) return $affectedRows;
        }
        return false;
    }
    
    public function checkVoucher($vnoId)
    {
        if (isset($vnoId)){
            $this->db->where(‘vno_id‘,$vnoId);
            $this->db->update_batch($this->table,$data);
        }
    }

voucher.php

    /**
     * 标记记账
     */
    public function signBookFlag()
    {
        $vnoid = $this->input->post(‘vnoid‘);
        $flag = $this->input->post(‘flag‘);
        $this->voucher_model->signBookFlag();
    }

 

记账凭证

标签:style   blog   color   io   os   ar   sp   div   on   

原文地址:http://www.cnblogs.com/hubing/p/4029876.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!