invoice fx
This commit is contained in:
parent
79c1183612
commit
2e5ab35b1c
|
|
@ -79,7 +79,7 @@ class CartResource extends JsonResource
|
||||||
$ruleResources = array();
|
$ruleResources = array();
|
||||||
|
|
||||||
if($this->applied_cart_rule_ids){
|
if($this->applied_cart_rule_ids){
|
||||||
$rule_ids =implode(',',$this->applied_cart_rule_ids);
|
$rule_ids =explode(',',$this->applied_cart_rule_ids);
|
||||||
$cols = ['id','name','description','action_type','amount'];
|
$cols = ['id','name','description','action_type','amount'];
|
||||||
$cartRules = $this->cartRuleRepository->findWhereIn('applied_cart_rule_ids',$rule_ids,$cols);
|
$cartRules = $this->cartRuleRepository->findWhereIn('applied_cart_rule_ids',$rule_ids,$cols);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,9 @@ class CartRuleResource extends JsonResource
|
||||||
'name' => $this->name,
|
'name' => $this->name,
|
||||||
'description' => $this->description,
|
'description' => $this->description,
|
||||||
'action_type' => $this->action_type,
|
'action_type' => $this->action_type,
|
||||||
'amount' => str_contains($this->action_type,'fixed')? core()->formatPrice($this->discount_amount, $this->currency):$this->discount_amount.'%'
|
'amount' => str_contains($this->action_type,'fixed')?
|
||||||
|
core()->formatPrice($this->discount_amount, $this->currency):
|
||||||
|
$this->discount_amount.'%'
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue