发布v2.5.6版本
This commit is contained in:
@@ -1,8 +1,9 @@
|
||||
<?php
|
||||
//客户收付款单
|
||||
//客户收款单
|
||||
class flow_custfinaClassModel extends flowModel
|
||||
{
|
||||
public $statearrs,$statearrf;
|
||||
public $delbool = 0;
|
||||
public function initModel(){
|
||||
$this->statearrs = c('array')->strtoarray('未收款|red,已收款|green');
|
||||
$this->statearrf = c('array')->strtoarray('未付款|red,已付款|green');
|
||||
@@ -10,6 +11,8 @@ class flow_custfinaClassModel extends flowModel
|
||||
|
||||
public function flowrsreplace($rs)
|
||||
{
|
||||
if($rs['id']==0)return $rs;
|
||||
|
||||
$starrr = array('收','付');
|
||||
$rs['paystatus'] = $rs['ispay'];
|
||||
$ispay = '<font color=red>未'.$starrr[$rs['type']].'款</font>';
|
||||
@@ -17,6 +20,29 @@ class flow_custfinaClassModel extends flowModel
|
||||
$rs['ispay'] = $ispay;
|
||||
$rs['type'] = ''.$starrr[$rs['type']].'款单';
|
||||
|
||||
$htid = $rs['htid'];
|
||||
$url = '';
|
||||
if($htid>0)$url = $this->getxiangurl('custract', $htid, 'auto');
|
||||
if($htid<0)$url = $this->getxiangurl('custxiao', 0-$htid, 'auto');
|
||||
if(arrvalue($rs,'xgid') && arrvalue($rs,'xgnum'))$url = $this->getxiangurl($rs['xgnum'], $rs['xgid'], 'auto');
|
||||
if($url && !isempt($rs['htnum']))
|
||||
$rs['htnum'] = '<a href="javascript:;" onclick="js.open(\''.$url.'\')">'.$rs['htnum'].'</a>';
|
||||
|
||||
if($rs['custid']>0){
|
||||
//$url = $this->getxiangurl('customer', $rs['custid'], 'auto');
|
||||
//$rs['custname'] = '<a href="javascript:;" onclick="js.open(\''.$url.'\')">'.$rs['custname'].'</a>';
|
||||
}
|
||||
|
||||
$jzid = arrvalue($rs,'jzid');
|
||||
if($jzid>0){
|
||||
$url = $this->getxiangurl('finjishou', $jzid, 'auto');
|
||||
$rs['jzid'] = '<a href="javascript:;" onclick="js.open(\''.$url.'\')">已生成</a>';
|
||||
}else if($jzid=='-1'){
|
||||
$rs['jzid'] = '<font color=#aaaaaa>不需要</font>';
|
||||
}else{
|
||||
$rs['jzid'] = '';
|
||||
}
|
||||
|
||||
return $rs;
|
||||
}
|
||||
|
||||
@@ -31,6 +57,31 @@ class flow_custfinaClassModel extends flowModel
|
||||
$this->update("`ispay`='$ispay',`paydt`='$paydt'", $this->id);
|
||||
m('crm')->ractmoney($this->rs['htid']);
|
||||
}
|
||||
|
||||
//复制一单
|
||||
if($ors['num']=='noupfuzhe'){
|
||||
$jine = $this->rock->number(trim($arr['sm']));
|
||||
$uarr = $this->getone($this->id);
|
||||
$money= $uarr['money'];
|
||||
unset($uarr['id']);
|
||||
$uarr['createname'] = $this->adminname;
|
||||
$uarr['createid'] = $this->adminid;
|
||||
$uarr['money'] = $jine;
|
||||
$this->insert($uarr);
|
||||
$this->update('`money`=`money`-'.$jine.'', $this->id);
|
||||
}
|
||||
}
|
||||
|
||||
//操作菜单操作之前
|
||||
protected function flowoptmenubefore($ors, $arr)
|
||||
{
|
||||
if($ors['num']=='noupfuzhe'){
|
||||
$sm = trim($arr['sm']);
|
||||
if(!$sm || !is_numeric($sm))return '输入“'.$sm.'”的不是金额';
|
||||
$sm = $this->rock->number($sm);
|
||||
if(floatval($sm)<=0)return '输入金额必须大于0';
|
||||
if(floatval($sm) >= floatval($this->rs['money']))return '输入的金额不能超过'.$this->rs['money'].'';
|
||||
}
|
||||
}
|
||||
|
||||
protected function flowbillwhere($uid, $lx)
|
||||
@@ -46,4 +97,30 @@ class flow_custfinaClassModel extends flowModel
|
||||
'order' => '`optdt` desc'
|
||||
);
|
||||
}
|
||||
|
||||
protected function flowdeletebill($sm)
|
||||
{
|
||||
$this->delbool++;
|
||||
$xgid = arrvalue($this->rs,'xgid');
|
||||
$xgnum = arrvalue($this->rs,'xgnum');
|
||||
$sid = $this->id;
|
||||
if($xgnum && $xgid && $this->delbool==1){
|
||||
$sflow = m('flow:'.$xgnum.'')->initbase($xgnum);
|
||||
$drows = $this->getall("`xgnum`='$xgnum' and `xgid`='$xgid'");//相关联一起删
|
||||
foreach($drows as $k=>$rs1){
|
||||
$mid = $rs1['id'];
|
||||
$this->loaddata($mid, false);
|
||||
$this->deletebill($sm, false);
|
||||
}
|
||||
$sflow->update('`payid`=0', $xgid);
|
||||
}
|
||||
$this->id = $sid;
|
||||
}
|
||||
|
||||
protected function flowgetoptmenu($opt,$bo=false)
|
||||
{
|
||||
if($opt=='noupcreatejz' && $bo){
|
||||
return m('mode')->iscun('finjishou');
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user