wugg il y a 8 mois
Parent
commit
283faaeb8e
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2 2
      app/admin/model/GoodTax.php

+ 2 - 2
app/admin/model/GoodTax.php

@@ -34,7 +34,7 @@ class GoodTax extends Model
              $temp['spuCode']=$item->spuCode;
              $temp['cat_code']=$item->merge_code;
              $temp['cat_name']=$item->short_name;
-             $temp['tax']=$item->tax;
+             $temp['tax']= str_replace("%","",$item->tax);
              $temp['inv_good_name']=$item->inv_good_name;
         }else{
              $taxRelation= TaxRelation::with(['outputInfo'])->where(['income_tax_id'=>$item->tax_id,'companyNo'=>$item->companyNo])->findOrEmpty();
@@ -42,7 +42,7 @@ class GoodTax extends Model
              $temp['spuCode']=$item->spuCode;
              $temp['cat_code']=$taxRelation->merge_code;
              $temp['cat_name']=$taxRelation->short_name;
-             $temp['tax']=$taxRelation->output_bind_tax;
+             $temp['tax']=str_replace('%','',$taxRelation->output_bind_tax);;
              $temp['inv_good_name']=$item->inv_good_name;
         }
         return $temp;