Can now edit loyalty points for customer on andriod, and pets now have breed dropdown

This commit is contained in:
Alex
2026-04-13 18:25:11 -06:00
parent 53a11449ac
commit 40955b616b
13 changed files with 143 additions and 24 deletions

View File

@@ -50,6 +50,9 @@ public interface PetApi {
@GET("api/v1/dropdowns/pet-species") @GET("api/v1/dropdowns/pet-species")
Call<List<DropdownDTO>> getPetSpeciesDropdowns(); Call<List<DropdownDTO>> getPetSpeciesDropdowns();
@GET("api/v1/dropdowns/pet-breeds")
Call<List<DropdownDTO>> getPetBreedsDropdowns(@Query("species") String species);
// Get pet by id // Get pet by id
@GET("api/v1/pets/{id}") @GET("api/v1/pets/{id}")
Call<PetDTO> getPetById(@Path("id") Long id); Call<PetDTO> getPetById(@Path("id") Long id);

View File

@@ -17,6 +17,7 @@ public class CustomerDTO {
private String createdAt; private String createdAt;
private String updatedAt; private String updatedAt;
private String password; private String password;
private String role;
public CustomerDTO() {} public CustomerDTO() {}
@@ -73,4 +74,7 @@ public class CustomerDTO {
public String getPassword() { return password; } public String getPassword() { return password; }
public void setPassword(String password) { this.password = password; } public void setPassword(String password) { this.password = password; }
public String getRole() { return role; }
public void setRole(String role) { this.role = role; }
} }

View File

@@ -14,8 +14,11 @@ import com.example.petstoremobile.utils.InputValidator;
import com.example.petstoremobile.utils.SpinnerUtils; import com.example.petstoremobile.utils.SpinnerUtils;
import com.example.petstoremobile.utils.UIUtils; import com.example.petstoremobile.utils.UIUtils;
import com.example.petstoremobile.viewmodels.CustomerDetailViewModel; import com.example.petstoremobile.viewmodels.CustomerDetailViewModel;
import com.example.petstoremobile.api.auth.TokenManager;
import com.example.petstoremobile.utils.Resource; import com.example.petstoremobile.utils.Resource;
import javax.inject.Inject;
import dagger.hilt.android.AndroidEntryPoint; import dagger.hilt.android.AndroidEntryPoint;
@AndroidEntryPoint @AndroidEntryPoint
@@ -24,6 +27,8 @@ public class CustomerDetailFragment extends Fragment {
private FragmentCustomerDetailBinding binding; private FragmentCustomerDetailBinding binding;
private CustomerDetailViewModel viewModel; private CustomerDetailViewModel viewModel;
@Inject TokenManager tokenManager;
private final String[] STATUSES = {"Active", "Inactive"}; private final String[] STATUSES = {"Active", "Inactive"};
@Override @Override
@@ -65,7 +70,10 @@ public class CustomerDetailFragment extends Fragment {
// Show loyalty points // Show loyalty points
binding.tvLoyaltyPointsLabel.setVisibility(View.VISIBLE); binding.tvLoyaltyPointsLabel.setVisibility(View.VISIBLE);
binding.tvCustomerLoyaltyPoints.setVisibility(View.VISIBLE); binding.etCustomerLoyaltyPoints.setVisibility(View.VISIBLE);
boolean isAdmin = "ADMIN".equalsIgnoreCase(tokenManager.getRole());
binding.etCustomerLoyaltyPoints.setEnabled(isAdmin);
loadCustomerData(customerId); loadCustomerData(customerId);
} else { } else {
@@ -74,7 +82,7 @@ public class CustomerDetailFragment extends Fragment {
binding.btnDeleteCustomer.setVisibility(View.GONE); binding.btnDeleteCustomer.setVisibility(View.GONE);
binding.tvCustomerId.setVisibility(View.GONE); binding.tvCustomerId.setVisibility(View.GONE);
binding.tvLoyaltyPointsLabel.setVisibility(View.GONE); binding.tvLoyaltyPointsLabel.setVisibility(View.GONE);
binding.tvCustomerLoyaltyPoints.setVisibility(View.GONE); binding.etCustomerLoyaltyPoints.setVisibility(View.GONE);
} }
} }
@@ -91,7 +99,7 @@ public class CustomerDetailFragment extends Fragment {
binding.etCustomerPhone.setText(c.getPhone() != null ? c.getPhone() : ""); binding.etCustomerPhone.setText(c.getPhone() != null ? c.getPhone() : "");
binding.spinnerCustomerStatus.setSelection(Boolean.TRUE.equals(c.getActive()) ? 0 : 1); binding.spinnerCustomerStatus.setSelection(Boolean.TRUE.equals(c.getActive()) ? 0 : 1);
int pts = c.getLoyaltyPoints() != null ? c.getLoyaltyPoints() : 0; int pts = c.getLoyaltyPoints() != null ? c.getLoyaltyPoints() : 0;
binding.tvCustomerLoyaltyPoints.setText(String.valueOf(pts)); binding.etCustomerLoyaltyPoints.setText(String.valueOf(pts));
} }
} }
}); });
@@ -121,6 +129,12 @@ public class CustomerDetailFragment extends Fragment {
if (!InputValidator.isValidEmail(binding.etCustomerEmail)) return; if (!InputValidator.isValidEmail(binding.etCustomerEmail)) return;
if (!InputValidator.isValidPhone(binding.etCustomerPhone)) return; if (!InputValidator.isValidPhone(binding.etCustomerPhone)) return;
Integer loyaltyPoints = null;
if (viewModel.isEditing()) {
if (!InputValidator.isPositiveInteger(binding.etCustomerLoyaltyPoints, "Loyalty Points")) return;
loyaltyPoints = Integer.parseInt(binding.etCustomerLoyaltyPoints.getText().toString().trim());
}
String username = binding.etCustomerUsername.getText().toString().trim(); String username = binding.etCustomerUsername.getText().toString().trim();
String password = viewModel.isEditing() ? null : binding.etCustomerPassword.getText().toString().trim(); String password = viewModel.isEditing() ? null : binding.etCustomerPassword.getText().toString().trim();
String firstName = binding.etCustomerFirstName.getText().toString().trim(); String firstName = binding.etCustomerFirstName.getText().toString().trim();
@@ -129,9 +143,7 @@ public class CustomerDetailFragment extends Fragment {
String phone = binding.etCustomerPhone.getText().toString().trim(); String phone = binding.etCustomerPhone.getText().toString().trim();
boolean active = binding.spinnerCustomerStatus.getSelectedItemPosition() == 0; boolean active = binding.spinnerCustomerStatus.getSelectedItemPosition() == 0;
CustomerDTO dto = new CustomerDTO(username, password, firstName, lastName, email, phone); CustomerDTO dto = viewModel.createCustomerDto(username, password, firstName, lastName, email, phone, active, loyaltyPoints);
dto.setFullName(firstName + " " + lastName);
dto.setActive(active);
viewModel.saveCustomer(dto).observe(getViewLifecycleOwner(), resource -> { viewModel.saveCustomer(dto).observe(getViewLifecycleOwner(), resource -> {
if (resource != null) { if (resource != null) {

View File

@@ -101,6 +101,14 @@ public class PetDetailFragment extends Fragment {
DropdownDTO::getLabel, "-- Select Species --", null, DropdownDTO::getId); DropdownDTO::getLabel, "-- Select Species --", null, DropdownDTO::getId);
SpinnerUtils.setSelectionByValue(binding.spinnerPetSpecies, selectedSpecies); SpinnerUtils.setSelectionByValue(binding.spinnerPetSpecies, selectedSpecies);
}); });
viewModel.getBreedList().observe(getViewLifecycleOwner(), list -> {
PetDetailViewModel.ViewState state = viewModel.getViewState().getValue();
String selectedBreed = state != null ? state.selectedBreed : null;
SpinnerUtils.populateSpinner(requireContext(), binding.spinnerPetBreed, list,
DropdownDTO::getLabel, "-- Select Breed --", null, DropdownDTO::getId);
SpinnerUtils.setSelectionByValue(binding.spinnerPetBreed, selectedBreed);
});
} }
private void setLoading(boolean loading) { private void setLoading(boolean loading) {
@@ -118,7 +126,7 @@ public class PetDetailFragment extends Fragment {
private void savePet() { private void savePet() {
if (!InputValidator.isNotEmpty(binding.etPetName, "Pet Name")) return; if (!InputValidator.isNotEmpty(binding.etPetName, "Pet Name")) return;
if (!InputValidator.isSpinnerSelected(binding.spinnerPetSpecies, "Species")) return; if (!InputValidator.isSpinnerSelected(binding.spinnerPetSpecies, "Species")) return;
if (!InputValidator.isNotEmpty(binding.etPetBreed, "Breed")) return; if (!InputValidator.isSpinnerSelected(binding.spinnerPetBreed, "Breed")) return;
if (!InputValidator.isPositiveInteger(binding.etPetAge, "Age")) return; if (!InputValidator.isPositiveInteger(binding.etPetAge, "Age")) return;
if (!InputValidator.isPositiveDecimal(binding.etPetPrice, "Price")) return; if (!InputValidator.isPositiveDecimal(binding.etPetPrice, "Price")) return;
@@ -127,7 +135,11 @@ public class PetDetailFragment extends Fragment {
String species = (speciesOptions != null && binding.spinnerPetSpecies.getSelectedItemPosition() > 0) String species = (speciesOptions != null && binding.spinnerPetSpecies.getSelectedItemPosition() > 0)
? speciesOptions.get(binding.spinnerPetSpecies.getSelectedItemPosition() - 1).getLabel() ? speciesOptions.get(binding.spinnerPetSpecies.getSelectedItemPosition() - 1).getLabel()
: ""; : "";
String breed = binding.etPetBreed.getText().toString().trim();
List<DropdownDTO> breedOptions = viewModel.getBreedList().getValue();
String breed = (breedOptions != null && binding.spinnerPetBreed.getSelectedItemPosition() > 0)
? breedOptions.get(binding.spinnerPetBreed.getSelectedItemPosition() - 1).getLabel()
: "";
int age = Integer.parseInt(binding.etPetAge.getText().toString().trim()); int age = Integer.parseInt(binding.etPetAge.getText().toString().trim());
double price = Double.parseDouble(binding.etPetPrice.getText().toString().trim()); double price = Double.parseDouble(binding.etPetPrice.getText().toString().trim());
String status = binding.spinnerPetStatus.getSelectedItem().toString(); String status = binding.spinnerPetStatus.getSelectedItem().toString();
@@ -236,7 +248,6 @@ public class PetDetailFragment extends Fragment {
if (resource.status == Resource.Status.SUCCESS && resource.data != null) { if (resource.status == Resource.Status.SUCCESS && resource.data != null) {
PetDTO p = resource.data; PetDTO p = resource.data;
binding.etPetName.setText(p.getPetName()); binding.etPetName.setText(p.getPetName());
binding.etPetBreed.setText(p.getPetBreed());
binding.etPetAge.setText(String.valueOf(p.getPetAge())); binding.etPetAge.setText(String.valueOf(p.getPetAge()));
if (p.getPetPrice() != null) { if (p.getPetPrice() != null) {
binding.etPetPrice.setText(String.format(Locale.getDefault(), "%.2f", p.getPetPrice())); binding.etPetPrice.setText(String.format(Locale.getDefault(), "%.2f", p.getPetPrice()));
@@ -279,6 +290,11 @@ public class PetDetailFragment extends Fragment {
viewModel.onSpeciesSelected(p); viewModel.onSpeciesSelected(p);
}); });
SpinnerUtils.setOnIndexSelectedListener(binding.spinnerPetBreed, p -> {
if (isUpdatingUI) return;
viewModel.onBreedSelected(p);
});
SpinnerUtils.setOnIndexSelectedListener(binding.spinnerCustomer, p -> { SpinnerUtils.setOnIndexSelectedListener(binding.spinnerCustomer, p -> {
if (isUpdatingUI) return; if (isUpdatingUI) return;
viewModel.onCustomerSelected(p); viewModel.onCustomerSelected(p);
@@ -306,7 +322,7 @@ public class PetDetailFragment extends Fragment {
binding.btnSavePet.setText(state.saveButtonText); binding.btnSavePet.setText(state.saveButtonText);
UIUtils.setViewsEnabled(state.isSpeciesEnabled, binding.spinnerPetSpecies); UIUtils.setViewsEnabled(state.isSpeciesEnabled, binding.spinnerPetSpecies);
UIUtils.setViewsEnabled(state.isBreedEnabled, binding.etPetBreed); UIUtils.setViewsEnabled(state.isBreedEnabled, binding.spinnerPetBreed);
UIUtils.setViewsEnabled(state.isCustomerEnabled, binding.spinnerCustomer); UIUtils.setViewsEnabled(state.isCustomerEnabled, binding.spinnerCustomer);
UIUtils.setViewsEnabled(state.isStoreEnabled, binding.spinnerStore); UIUtils.setViewsEnabled(state.isStoreEnabled, binding.spinnerStore);
@@ -323,6 +339,13 @@ public class PetDetailFragment extends Fragment {
SpinnerUtils.setSelectionByValue(binding.spinnerPetSpecies, state.selectedSpecies); SpinnerUtils.setSelectionByValue(binding.spinnerPetSpecies, state.selectedSpecies);
} }
List<DropdownDTO> breeds = viewModel.getBreedList().getValue();
if (breeds != null) {
SpinnerUtils.populateSpinner(requireContext(), binding.spinnerPetBreed, breeds,
DropdownDTO::getLabel, "-- Select Breed --", null, DropdownDTO::getId);
SpinnerUtils.setSelectionByValue(binding.spinnerPetBreed, state.selectedBreed);
}
if (!state.isCustomerEnabled && binding.spinnerCustomer.getSelectedItemPosition() != 0) { if (!state.isCustomerEnabled && binding.spinnerCustomer.getSelectedItemPosition() != 0) {
binding.spinnerCustomer.setSelection(0); binding.spinnerCustomer.setSelection(0);
} }

View File

@@ -161,7 +161,7 @@ public class StaffDetailFragment extends Fragment {
List<DropdownDTO> stores = viewModel.getStoreList().getValue(); List<DropdownDTO> stores = viewModel.getStoreList().getValue();
Long storeId = stores.get(binding.spinnerStaffStore.getSelectedItemPosition() - 1).getId(); Long storeId = stores.get(binding.spinnerStaffStore.getSelectedItemPosition() - 1).getId();
EmployeeDTO dto = new EmployeeDTO( EmployeeDTO dto = viewModel.createEmployeeDto(
username, username,
password.isEmpty() ? null : password, password.isEmpty() ? null : password,
firstName, firstName,

View File

@@ -58,6 +58,10 @@ public class PetRepository extends BaseRepository {
return executeCall(petApi.getPetSpeciesDropdowns()); return executeCall(petApi.getPetSpeciesDropdowns());
} }
public LiveData<Resource<List<DropdownDTO>>> getPetBreedsDropdowns(String species) {
return executeCall(petApi.getPetBreedsDropdowns(species));
}
/** /**
* Retrieves available pets for a specific store. * Retrieves available pets for a specific store.
*/ */

View File

@@ -31,6 +31,19 @@ public class CustomerDetailViewModel extends ViewModel {
public long getCustomerId() { return customerId; } public long getCustomerId() { return customerId; }
public boolean isEditing() { return isEditing; } public boolean isEditing() { return isEditing; }
public CustomerDTO createCustomerDto(String username, String password, String firstName,
String lastName, String email, String phone,
boolean active, Integer loyaltyPoints) {
CustomerDTO dto = new CustomerDTO(username, password, firstName, lastName, email, phone);
dto.setFullName(firstName + " " + lastName);
dto.setActive(active);
dto.setRole("CUSTOMER");
if (isEditing && loyaltyPoints != null) {
dto.setLoyaltyPoints(loyaltyPoints);
}
return dto;
}
public LiveData<Resource<CustomerDTO>> loadCustomer(long id) { public LiveData<Resource<CustomerDTO>> loadCustomer(long id) {
return repository.getCustomerById(id); return repository.getCustomerById(id);
} }

View File

@@ -34,6 +34,7 @@ public class PetDetailViewModel extends ViewModel {
private final MutableLiveData<List<DropdownDTO>> customerList = new MutableLiveData<>(new ArrayList<>()); private final MutableLiveData<List<DropdownDTO>> customerList = new MutableLiveData<>(new ArrayList<>());
private final MutableLiveData<List<DropdownDTO>> storeList = new MutableLiveData<>(new ArrayList<>()); private final MutableLiveData<List<DropdownDTO>> storeList = new MutableLiveData<>(new ArrayList<>());
private final MutableLiveData<List<DropdownDTO>> speciesList = new MutableLiveData<>(new ArrayList<>()); private final MutableLiveData<List<DropdownDTO>> speciesList = new MutableLiveData<>(new ArrayList<>());
private final MutableLiveData<List<DropdownDTO>> breedList = new MutableLiveData<>(new ArrayList<>());
private final MutableLiveData<Boolean> isLoading = new MutableLiveData<>(false); private final MutableLiveData<Boolean> isLoading = new MutableLiveData<>(false);
private final MutableLiveData<ViewState> viewState = new MutableLiveData<>(new ViewState()); private final MutableLiveData<ViewState> viewState = new MutableLiveData<>(new ViewState());
@@ -41,6 +42,7 @@ public class PetDetailViewModel extends ViewModel {
private Long selectedCustomerId = null; private Long selectedCustomerId = null;
private Long selectedStoreId = null; private Long selectedStoreId = null;
private String selectedSpecies = null; private String selectedSpecies = null;
private String selectedBreed = null;
private boolean isOriginallyOwnedOrAdopted = false; private boolean isOriginallyOwnedOrAdopted = false;
private Long originalCustomerId = null; private Long originalCustomerId = null;
@@ -112,10 +114,33 @@ public class PetDetailViewModel extends ViewModel {
List<DropdownDTO> list = speciesList.getValue(); List<DropdownDTO> list = speciesList.getValue();
if (position > 0 && list != null && position <= list.size()) { if (position > 0 && list != null && position <= list.size()) {
selectedSpecies = list.get(position - 1).getLabel(); selectedSpecies = list.get(position - 1).getLabel();
loadBreeds(selectedSpecies);
} else { } else {
selectedSpecies = null; selectedSpecies = null;
breedList.setValue(new ArrayList<>());
} }
updateViewState(state -> state.selectedSpecies = selectedSpecies); updateViewState(state -> {
state.selectedSpecies = selectedSpecies;
state.isBreedEnabled = !state.isEditing && (selectedSpecies != null);
});
}
public void onBreedSelected(int position) {
List<DropdownDTO> list = breedList.getValue();
if (position > 0 && list != null && position <= list.size()) {
selectedBreed = list.get(position - 1).getLabel();
} else {
selectedBreed = null;
}
updateViewState(state -> state.selectedBreed = selectedBreed);
}
private void loadBreeds(String species) {
observeOnce(petRepository.getPetBreedsDropdowns(species), resource -> {
if (resource != null && resource.status == Resource.Status.SUCCESS && resource.data != null) {
breedList.setValue(resource.data);
}
});
} }
public void onStoreSelected(int position) { public void onStoreSelected(int position) {
@@ -155,12 +180,15 @@ public class PetDetailViewModel extends ViewModel {
selectedCustomerId = null; selectedCustomerId = null;
selectedStoreId = null; selectedStoreId = null;
selectedSpecies = null; selectedSpecies = null;
selectedBreed = null;
state.selectedCustomerId = null; state.selectedCustomerId = null;
state.selectedStoreId = null; state.selectedStoreId = null;
state.selectedSpecies = null; state.selectedSpecies = null;
state.selectedBreed = null;
state.selectedStatus = STATUS_AVAILABLE; state.selectedStatus = STATUS_AVAILABLE;
state.isCustomerEnabled = false; state.isCustomerEnabled = false;
state.isStoreEnabled = true; state.isStoreEnabled = true;
state.isBreedEnabled = false;
} }
}); });
} }
@@ -173,15 +201,22 @@ public class PetDetailViewModel extends ViewModel {
selectedCustomerId = pet.getCustomerId(); selectedCustomerId = pet.getCustomerId();
selectedStoreId = pet.getStoreId(); selectedStoreId = pet.getStoreId();
selectedSpecies = pet.getPetSpecies(); selectedSpecies = pet.getPetSpecies();
selectedBreed = pet.getPetBreed();
isOriginallyOwnedOrAdopted = STATUS_OWNED.equalsIgnoreCase(pet.getPetStatus()) isOriginallyOwnedOrAdopted = STATUS_OWNED.equalsIgnoreCase(pet.getPetStatus())
|| STATUS_ADOPTED.equalsIgnoreCase(pet.getPetStatus()); || STATUS_ADOPTED.equalsIgnoreCase(pet.getPetStatus());
originalCustomerId = pet.getCustomerId(); originalCustomerId = pet.getCustomerId();
if (selectedSpecies != null) {
loadBreeds(selectedSpecies);
}
updateViewState(state -> { updateViewState(state -> {
state.selectedCustomerId = selectedCustomerId; state.selectedCustomerId = selectedCustomerId;
state.selectedStoreId = selectedStoreId; state.selectedStoreId = selectedStoreId;
state.selectedSpecies = selectedSpecies; state.selectedSpecies = selectedSpecies;
state.selectedBreed = selectedBreed;
state.selectedStatus = normalizeStatus(pet.getPetStatus()); state.selectedStatus = normalizeStatus(pet.getPetStatus());
state.isBreedEnabled = !state.isEditing && (selectedSpecies != null);
applyStatusRules(state, false); applyStatusRules(state, false);
}); });
} }
@@ -216,6 +251,10 @@ public class PetDetailViewModel extends ViewModel {
return speciesList; return speciesList;
} }
public LiveData<List<DropdownDTO>> getBreedList() {
return breedList;
}
public LiveData<Boolean> getIsLoading() { public LiveData<Boolean> getIsLoading() {
return isLoading; return isLoading;
} }
@@ -295,6 +334,7 @@ public class PetDetailViewModel extends ViewModel {
public String[] availableStatuses = new String[]{STATUS_AVAILABLE, STATUS_ADOPTED, STATUS_OWNED, STATUS_PENDING}; public String[] availableStatuses = new String[]{STATUS_AVAILABLE, STATUS_ADOPTED, STATUS_OWNED, STATUS_PENDING};
public String selectedStatus = STATUS_AVAILABLE; public String selectedStatus = STATUS_AVAILABLE;
public String selectedSpecies = null; public String selectedSpecies = null;
public String selectedBreed = null;
public Long selectedCustomerId = null; public Long selectedCustomerId = null;
public Long selectedStoreId = null; public Long selectedStoreId = null;
} }

View File

@@ -60,6 +60,14 @@ public class StaffDetailViewModel extends ViewModel {
return isEditing; return isEditing;
} }
public EmployeeDTO createEmployeeDto(String username, String password, String firstName,
String lastName, String email, String phone,
String role, String staffRole, boolean active, Long storeId) {
EmployeeDTO dto = new EmployeeDTO(username, password, firstName, lastName, email, phone, role, staffRole, active, storeId);
dto.setFullName(firstName + " " + lastName);
return dto;
}
public LiveData<Resource<EmployeeDTO>> saveEmployee(EmployeeDTO dto) { public LiveData<Resource<EmployeeDTO>> saveEmployee(EmployeeDTO dto) {
if (isEditing && employeeId > 0) { if (isEditing && employeeId > 0) {
return repository.updateEmployee(employeeId, dto); return repository.updateEmployee(employeeId, dto);

View File

@@ -195,14 +195,13 @@
android:textSize="12sp" android:textSize="12sp"
android:layout_marginBottom="4dp"/> android:layout_marginBottom="4dp"/>
<TextView <EditText
android:id="@+id/tvCustomerLoyaltyPoints" android:id="@+id/etCustomerLoyaltyPoints"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:text="0" android:hint="0"
android:textColor="@color/text_dark" android:inputType="number"
android:textSize="16sp" android:layout_marginBottom="16dp"/>
android:layout_marginBottom="8dp"/>
</LinearLayout> </LinearLayout>

View File

@@ -109,14 +109,11 @@
android:textSize="12sp" android:textSize="12sp"
android:layout_marginBottom="4dp"/> android:layout_marginBottom="4dp"/>
<EditText <Spinner
android:id="@+id/etPetBreed" android:id="@+id/spinnerPetBreed"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:hint="Enter breed" android:layout_marginBottom="16dp"/>
android:inputType="text"
android:layout_marginBottom="16dp"
android:textColor="@color/text_dark"/>
<TextView <TextView
android:layout_width="wrap_content" android:layout_width="wrap_content"

View File

@@ -39,6 +39,8 @@ public class UserRequest {
private Boolean active = true; private Boolean active = true;
private Integer loyaltyPoints;
public String getUsername() { public String getUsername() {
return username; return username;
} }
@@ -127,6 +129,14 @@ public class UserRequest {
this.active = active; this.active = active;
} }
public Integer getLoyaltyPoints() {
return loyaltyPoints;
}
public void setLoyaltyPoints(Integer loyaltyPoints) {
this.loyaltyPoints = loyaltyPoints;
}
@Override @Override
public boolean equals(Object o) { public boolean equals(Object o) {
if (this == o) return true; if (this == o) return true;

View File

@@ -75,6 +75,9 @@ public class UserService {
user.setStaffRole(trimToNull(request.getStaffRole())); user.setStaffRole(trimToNull(request.getStaffRole()));
user.setPrimaryStore(resolveStore(request.getPrimaryStoreId())); user.setPrimaryStore(resolveStore(request.getPrimaryStoreId()));
user.setActive(request.getActive() != null ? request.getActive() : true); user.setActive(request.getActive() != null ? request.getActive() : true);
if (request.getLoyaltyPoints() != null) {
user.setLoyaltyPoints(request.getLoyaltyPoints());
}
validateUniquePhone(user.getPhone(), null); validateUniquePhone(user.getPhone(), null);
@@ -111,6 +114,9 @@ public class UserService {
user.setStaffRole(trimToNull(request.getStaffRole())); user.setStaffRole(trimToNull(request.getStaffRole()));
user.setPrimaryStore(resolveStore(request.getPrimaryStoreId())); user.setPrimaryStore(resolveStore(request.getPrimaryStoreId()));
user.setActive(request.getActive() != null ? request.getActive() : true); user.setActive(request.getActive() != null ? request.getActive() : true);
if (request.getLoyaltyPoints() != null) {
user.setLoyaltyPoints(request.getLoyaltyPoints());
}
if (invalidateToken) { if (invalidateToken) {
user.setTokenVersion(user.getTokenVersion() + 1); user.setTokenVersion(user.getTokenVersion() + 1);
} }