|
@@ -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;
|