GoodTax.php 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <?php
  2. declare (strict_types = 1);
  3. namespace app\admin\model;
  4. use app\model\TaxCategory;
  5. use app\model\TaxRelation;use think\Model;
  6. use think\model\concern\SoftDelete;
  7. /**
  8. * @mixin \think\Model
  9. */
  10. class GoodTax extends Model
  11. {
  12. use SoftDelete;
  13. protected $createTime = 'createTime';
  14. protected $updateTime = 'updateTime';
  15. protected $deleteTime = 'delete_time';
  16. protected $autoWriteTimestamp = 'datetime';
  17. public function Tax(){
  18. return $this->belongsTo(TaxCategory::class,'tax_id','id')
  19. ->bind(["in_tax_name"=>'cat_name',"in_tax_code"=>'cat_code',"in_tax_short"=>'short_name',"in_tax_merge"=>'merge_code']);
  20. }
  21. public function OutTax(){
  22. return $this->belongsTo(TaxCategory::class,'out_tax_id','id')
  23. ->bind(["out_tax_name"=>'cat_name',"out_tax_code"=>'cat_code',"out_tax_short"=>'short_name',"out_tax_merge"=>'merge_code']);
  24. }
  25. /**
  26. * @param $spuCode
  27. * @param int $type 1 进项票 2 销项票
  28. * @return array
  29. */
  30. public static function getInfobySpuCode($spuCode,$type=1){
  31. $item = (new GoodTax)->with(['Tax',"OutTax"])->where(['spuCode'=>$spuCode])->findOrEmpty();
  32. if($item->isEmpty()) return [];
  33. $temp=[];
  34. if($type==1){
  35. $temp['spuCode']=$item->spuCode;
  36. $temp['cat_code']=$item->in_tax_merge;
  37. $temp['cat_name']=$item->in_tax_name;
  38. $temp['short_name']=$item->in_tax_short;
  39. $temp['merge_code']=$item->in_tax_merge;
  40. $temp['tax']= str_replace("%","",$item->tax);
  41. $temp['inv_good_name']=$item->inv_good_name;
  42. }else{
  43. $temp['spuCode']=$item->spuCode;
  44. $temp['cat_code']=$item->out_tax_merge??"";
  45. $temp['cat_name']=$item->out_tax_name??"";
  46. $temp['short_name']=$item->out_tax_short??"";
  47. $temp['merge_code']=$item->out_tax_merge;
  48. $temp['tax']= str_replace('%','',$item->out_tax);
  49. $temp['inv_good_name']=$item->inv_good_name;
  50. }
  51. return $temp;
  52. }
  53. }