Skip to content
This repository has been archived by the owner on Nov 26, 2024. It is now read-only.

Commit

Permalink
Merge remote-tracking branch 'origin/develop' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
rahuldevgarg committed Mar 5, 2024
2 parents afd1d20 + 18bdefc commit a893b59
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions frontend/mgramseva/lib/model/mdms/tenants.dart
Original file line number Diff line number Diff line change
Expand Up @@ -94,9 +94,9 @@ class City {
@JsonKey(name: "ulbGrade")
String? ulbGrade;
@JsonKey(name: "longitude")
double? longitude;
dynamic? longitude;
@JsonKey(name: "latitude")
double? latitude;
dynamic? latitude;
@JsonKey(name: "code")
String? code;
@JsonKey(name: "ddrName")
Expand Down
4 changes: 2 additions & 2 deletions frontend/mgramseva/lib/model/mdms/tenants.g.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion frontend/mgramseva/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "mgramseva",
"version": "1.2.20",
"version": "1.2.21",
"license": "egov"
}
Original file line number Diff line number Diff line change
Expand Up @@ -274,8 +274,9 @@ private List<BillingSlab> getSlabsFiltered(WaterConnection waterConnection, List
WaterConnectionRequest.builder().waterConnection(waterConnection).requestInfo(requestInfo).build());
// get billing Slab
log.debug(" the slabs count : " + billingSlabs.size());
final String buildingType = (property.getUsageCategory() != null) ? property.getUsageCategory().split("\\.")[0]
: "";
//final String buildingType = (property.getUsageCategory() != null) ? property.getUsageCategory().split("\\.")[0]: "";
//TODO:FIX ME : here before we passing buildingtype as UsageCategory from proerty response . but while creating property usagecategoty is residentialeven when we are creating commercial connection. Hennce we have change this to proertytype
final String buildingType = (property.getPropertyType() != null) ? property.getPropertyType().split("\\.")[0]: "";
// final String buildingType = "Domestic";
final String connectionType = waterConnection.getConnectionType();

Expand Down

0 comments on commit a893b59

Please sign in to comment.