| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <?php
- //退货
- class flow_tuihuoClassModel extends flowModel
- {
- public $minwidth = 600;//子表最小宽
- public $goodsobj,$cangobj;
-
- public function initModel()
- {
- $this->goodsobj = m('goods');
- $this->cangobj = m('godepot');
- }
-
- //审核完成处理,要通知仓库管理员出入库
- protected function flowcheckfinsh($zt){
-
- }
-
- //子表数据替换处理
- protected function flowsubdata($rows, $lx=0){
- $db = m('goods');
- foreach($rows as $k=>$rs){
- $one = $db->getone($rs['aid']);
- if($one){
- $name = $one['name'];
- if(!isempt($one['xinghao']))$name.='('.$one['xinghao'].')';
- if($lx==1)$rows[$k]['aid'] = $name; //1展示时
- $rows[$k]['temp_aid'] = $name;
- }
- }
- return $rows;
- }
-
- //$lx,0默认,1详情展示,2列表显示
- public function flowrsreplace($rs,$lx=0)
- {
- $rs['states']= $rs['state'];
- $rs['state'] = $this->goodsobj->crkstate($rs['state']);
-
- $custractid = (int)$rs['custractid'];
- if($custractid>0){
- $htrs = $this->getone('`id`='.$custractid.'');
- if($htrs){
- $custractid = $htrs['num'];//读取关联销售
- if($lx==1)$custractid = '<a href="'.$this->getxiangurl('custxiao',$rs['custractid'],'auto').'">'.$custractid.'</a>';
- }else{
- $custractid = 0;//不存在
- $this->update('`custractid`='.$custractid.'', $rs['id']);
- }
- }
- if($custractid===0){
- $custractid = '<font color=#aaaaaa>无关联</a>';
- }
- $rs['custractid'] = $custractid;
-
-
- //读取物品
- if($lx==2){
- $rs['wupinlist'] = $this->goodsobj->getgoodninfo($rs['id'], 1);
- }
- return $rs;
- }
- }
|