115 lines
3.2 KiB
PHP
115 lines
3.2 KiB
PHP
<?php
|
|
namespace app\model;
|
|
use think\Model;
|
|
class Extry extends Model{
|
|
//其它出库单
|
|
|
|
protected $type = [
|
|
'time'=>'timestamp:Y-m-d',
|
|
'logistics'=>'json',
|
|
'file'=>'json'
|
|
];
|
|
|
|
//所属组织关联
|
|
public function frameData(){
|
|
return $this->hasOne(Frame::class,'id','frame');
|
|
}
|
|
|
|
//关联人员关联
|
|
public function peopleData(){
|
|
return $this->hasOne(People::class,'id','people')->field(['id','name']);
|
|
}
|
|
|
|
//制单人关联
|
|
public function userData(){
|
|
return $this->hasOne(User::class,'id','user')->field(['id','name']);
|
|
}
|
|
|
|
//费用详情关联
|
|
public function costData(){
|
|
return $this->hasMany(Cost::class,'class','id')->with(['ietData'])->where([['type','=','extry']])->append(['extension'])->order('id desc');
|
|
}
|
|
|
|
//记录关联
|
|
public function recordData(){
|
|
return $this->hasMany(Record::class,'source','id')->with(['userData'])->where([['type','=','extry']])->append(['extension'])->order('id desc');
|
|
}
|
|
|
|
//客户关联
|
|
public function customerData(){
|
|
return $this->hasOne(Customer::class,'id','customer')->append(['extension']);
|
|
}
|
|
|
|
//单据成本_读取器
|
|
public function getTotalAttr($val,$data){
|
|
return floatval($val);
|
|
}
|
|
|
|
//单据费用_读取器
|
|
public function getCostAttr($val,$data){
|
|
return floatval($val);
|
|
}
|
|
|
|
//关联人员_设置器
|
|
public function setPeopleAttr($val){
|
|
return empty($val)?0:$val;
|
|
}
|
|
|
|
//关联人员_读取器
|
|
public function getPeopleAttr($val){
|
|
return empty($val)?null:$val;
|
|
}
|
|
|
|
//客户_设置器
|
|
public function setCustomerAttr($val){
|
|
return empty($val)?0:$val;
|
|
}
|
|
|
|
//客户_读取器
|
|
public function getCustomerAttr($val){
|
|
return empty($val)?null:$val;
|
|
}
|
|
|
|
//扩展信息_设置器
|
|
public function setMoreAttr($val){
|
|
//兼容Api|修复PHP空对象json编码为[]
|
|
return json_encode((object)$val);
|
|
}
|
|
|
|
//扩展信息_读取器
|
|
public function getMoreAttr($val){
|
|
return json_decode($val);
|
|
}
|
|
|
|
//数据扩展
|
|
public function getExtensionAttr($val,$data){
|
|
$source=[];
|
|
//单据类型
|
|
$source['type']=[0=>'其它出库单',1=>'盘亏单'][$data['type']];
|
|
//物流信息
|
|
$logistics=json_decode($data['logistics'],true);
|
|
if(empty($logistics['key'])){
|
|
$source['logistics']='';
|
|
}elseif($logistics['key']=='auto'){
|
|
$source['logistics']=$logistics['number'];
|
|
}else{
|
|
$source['logistics']=$logistics['name'].'|'.$logistics['number'];
|
|
}
|
|
//费用状态
|
|
$source['cse']=[0=>'未结算',1=>'部分结算',2=>'已结算',3=>'无需结算'][$data['cse']];
|
|
//审核状态
|
|
$source['examine']=[0=>'未审核',1=>'已审核'][$data['examine']];
|
|
//核对状态
|
|
$source['check']=[0=>'未核对',1=>'已核对'][$data['check']];
|
|
return $source;
|
|
}
|
|
|
|
//EVENT|更新前
|
|
public static function onBeforeUpdate($model){
|
|
$source=$model::where([['id','=',$model['id']]])->find();
|
|
if(!empty($source['examine'])){
|
|
exit(json(['state'=>'error','info'=>'[ ERROR ] 单据已审核!'],200)->send());
|
|
}
|
|
}
|
|
}
|