Commit 2904b99e authored by neo's avatar neo

[bugfix] getOutputInvoiceList get impl

parent 17a132b0
......@@ -76,7 +76,7 @@ public class OutputInvoiceController {
return ResponseEntity.ok().body(outputInvoiceService.getEvidenceList(queryDto));
}
@RequestMapping(value = "getOutputInvoiceList/{period:int}", method = RequestMethod.POST, produces = MediaType.APPLICATION_JSON_UTF8_VALUE)
@RequestMapping(value = "getOutputInvoiceList/{period}", method = RequestMethod.POST, produces = MediaType.APPLICATION_JSON_UTF8_VALUE)
public ResponseEntity getEvidenceList(@PathVariable Integer period) {
return ResponseEntity.ok().body(outputInvoiceService.getOutputInvoiceList(period));
}
......@@ -134,9 +134,9 @@ public class OutputInvoiceController {
return ResponseEntity.ok(false);
}
@RequestMapping(value = "getOutputInvoiceList/{period:int}", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_UTF8_VALUE)
public ResponseEntity GetOutputInvoiceList(int period) {
return ResponseEntity.ok(outputInvoiceService.GetOutputInvoiceList(period));
@RequestMapping(value = "getOutputInvoiceList/{period}", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_UTF8_VALUE)
public ResponseEntity GetOutputInvoiceList(Integer period) {
return ResponseEntity.ok(outputInvoiceService.getOutputInvoiceList(period));
}
private String GetExtension(String file) {
......
......@@ -243,10 +243,6 @@ public class OutputInvoiceServiceImpl extends VatAbstractService {
return true;
}
public OperationResultDto<List<OutputVATInvoiceInfoDto>> GetOutputInvoiceList(int period) {
return null;
}
private void ClearTableData(int period, String tableName) {
String clearCommand = "";
if (period > 0) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment