bms推送nc接口;
This commit is contained in:
+8
-1
@@ -532,7 +532,14 @@ public class BillManageApplicationService {
|
||||
return result;
|
||||
}
|
||||
|
||||
|
||||
public boolean synchronousNc(String businessDocumentDetaliIds)
|
||||
{
|
||||
return billManageDomainService.synchronousNc(businessDocumentDetaliIds);
|
||||
}
|
||||
public boolean synchronousNcSK(String businessDocumentDetaliIds)
|
||||
{
|
||||
return billManageDomainService.synchronousNcSK(businessDocumentDetaliIds);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
+10
@@ -509,4 +509,14 @@ public class BillManageDomainService {
|
||||
public List<BillManage> billAnalysisList(QueryWrapper<BillManage> queryWrapper) {
|
||||
return billManageService.list(queryWrapper);
|
||||
}
|
||||
|
||||
public boolean synchronousNc(String businessDocumentDetaliIds)
|
||||
{
|
||||
return billManageService.synchronousNc(businessDocumentDetaliIds);
|
||||
}
|
||||
|
||||
public boolean synchronousNcSK(String businessDocumentDetaliIds)
|
||||
{
|
||||
return billManageService.synchronousNcSK(businessDocumentDetaliIds);
|
||||
}
|
||||
}
|
||||
@@ -292,6 +292,41 @@ public class BillManageApi extends BaseController{
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* 应收账单应收单同步用户nc65
|
||||
*/
|
||||
@Log(title = "应收账单应收单同步用户nc65", description = "应收账单应收单同步用户nc65", businessType = BusinessType.OTHER)
|
||||
@ApiOperation("应收账单应收单同步用户nc65")
|
||||
@GetMapping(value = "/synchronousNc")
|
||||
public AjaxResult synchronousNc(@RequestParam(name="reconciliationId") String reconciliationId)
|
||||
{
|
||||
try{
|
||||
return AjaxResult.success(billManageApplicationService.synchronousNc(reconciliationId));}
|
||||
catch (Exception e){
|
||||
e.printStackTrace();
|
||||
return AjaxResult.error(e.getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 应收账单收款单同步用户nc65
|
||||
*/
|
||||
@Log(title = "应收账单收款单同步用户nc65", description = "应收账单收款单同步用户nc65", businessType = BusinessType.OTHER)
|
||||
@ApiOperation("应收账单收款单同步用户nc65")
|
||||
@GetMapping(value = "/synchronousNcSK")
|
||||
public AjaxResult synchronousNcSK(@RequestParam(name="reconciliationId") String reconciliationId)
|
||||
{
|
||||
try{
|
||||
return AjaxResult.success(billManageApplicationService.synchronousNcSK(reconciliationId));
|
||||
} catch (Exception e){
|
||||
e.printStackTrace();
|
||||
return AjaxResult.error(e.getMessage());
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user