This module was designed prior to adding in the default if only 1 address logic. i.e.
if (list.length == 1 && !$scope.currentOrder.BillAddressID) {
$scope.currentOrder.BillAddressID = list[0].ID;
}
So, we need to only reset the billing address if the same as shipping address is checked.
This module was designed prior to adding in the default if only 1 address logic. i.e. if (list.length == 1 && !$scope.currentOrder.BillAddressID) { $scope.currentOrder.BillAddressID = list[0].ID; }
So, we need to only reset the billing address if the same as shipping address is checked.