fixed address
This commit is contained in:
parent
6cbd4d80de
commit
c4c2f81478
|
|
@ -77,22 +77,22 @@ class CheckoutService
|
||||||
|
|
||||||
private function updateShippingAddressId($shippingAddressId)
|
private function updateShippingAddressId($shippingAddressId)
|
||||||
{
|
{
|
||||||
$this->cart->update(['shipping_address_id', $shippingAddressId]);
|
$this->cart->update(['shipping_address_id' => $shippingAddressId]);
|
||||||
}
|
}
|
||||||
|
|
||||||
private function updatePaymentAddressId($paymentAddressId)
|
private function updatePaymentAddressId($paymentAddressId)
|
||||||
{
|
{
|
||||||
$this->cart->update(['payment_address_id', $paymentAddressId]);
|
$this->cart->update(['payment_address_id' => $paymentAddressId]);
|
||||||
}
|
}
|
||||||
|
|
||||||
private function updateShippingMethod($shippingMethod)
|
private function updateShippingMethod($shippingMethod)
|
||||||
{
|
{
|
||||||
$this->cart->update(['shipping_method_code', $shippingMethod]);
|
$this->cart->update(['shipping_method_code' => $shippingMethod]);
|
||||||
}
|
}
|
||||||
|
|
||||||
private function updatePaymentMethod($paymentMethod)
|
private function updatePaymentMethod($paymentMethod)
|
||||||
{
|
{
|
||||||
$this->cart->update(['payment_method_code', $paymentMethod]);
|
$this->cart->update(['payment_method_code' => $paymentMethod]);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue