OrderTax.php 958 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. namespace app\admin\model;
  3. use think\Model;
  4. class OrderTax extends Model {
  5. protected $createTime = 'createTime';
  6. /**
  7. * @param $spuCode
  8. * @param int $open_type 1 原商品开票 2 子商品开票
  9. * @param int $order_type 1 进项 2 销项
  10. * @return array
  11. */
  12. public static function SpuCat($spuCode,$open_type=1,$order_type=2){
  13. $result=[];
  14. if($open_type==2){
  15. $goods= GoodCombind::where('spuCode',$spuCode)->select();
  16. if(!$goods->isEmpty()){
  17. foreach ($goods as $item){
  18. $temp = GoodTax::getInfobySpuCode($item->childCode,$order_type);
  19. if(empty($temp)) continue;
  20. $result[]=$temp;
  21. }
  22. }
  23. }
  24. $temp = GoodTax::getInfobySpuCode($spuCode,$order_type);
  25. if(empty($temp)) return $result;
  26. $result[]=$temp;
  27. return $result;
  28. }
  29. }