Fixed issue #6371
This commit is contained in:
parent
5d3f6745a4
commit
f9f7b37933
|
|
@ -58,11 +58,8 @@ class OnepageController extends Controller
|
|||
}
|
||||
|
||||
$cart = Cart::getCart();
|
||||
|
||||
if (
|
||||
$cart->applied_cart_rule_ids != ""
|
||||
|| $cart->coupon_code == ""
|
||||
) {
|
||||
|
||||
if ( $cart->applied_cart_rule_ids != "" ) {
|
||||
session()->flash('success', trans('shop::app.checkout.cart.rule-applied'));
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -543,7 +543,7 @@ return [
|
|||
'check-billing-address' => 'Please check billing address.',
|
||||
'specify-shipping-method' => 'Please specify shipping method.',
|
||||
'specify-payment-method' => 'Please specify payment method.',
|
||||
'rule-applied' => 'Cart or Catalog rule applied',
|
||||
'rule-applied' => 'Cart rule applied',
|
||||
],
|
||||
|
||||
'onepage' => [
|
||||
|
|
|
|||
Loading…
Reference in New Issue