@RequestMapping(value = "/v0.1/getFySectionDetails", method = RequestMethod.POST)
public ResponseEntity<?> getFyMonthlyPurchases(@RequestBody GstServicesRequestModel gstServicesRequestModel) {
String gstin = gstServicesRequestModel.getGstin();
BigInteger reportId = gstServicesRequestModel.getReportId();
logger.info("Gstin, ReportID : "+gstin+", "+reportId);
CalculationsVO calculationsVo = gstr1DataHandler.getFySectionDetails(gstin, reportId, null, null, null, null, null, null);
return new ResponseEntity<CalculationsVO>(calculationsVo, HttpStatus.OK);
}