|
@@ -1135,6 +1135,7 @@ public class IncomeTaxDeclareListHandlerEx extends IncomeTaxDeclareListHandler {
|
|
|
DeclarationRequest declarationRequest = clientProxyFactory.getDeclarationRequest();
|
|
|
//获取请求参数
|
|
|
if( catalog.equals(TaskCatalogEnum.CancelTaxDeclare) ) {
|
|
|
+ System.out.print("撤销申报执行");
|
|
|
Gson gson = new Gson();
|
|
|
Type personType = new TypeToken<DeclareCancelRequest>(){}.getType();
|
|
|
DeclareCancelRequest newObj = gson.fromJson(gson.toJson(paramMap), personType);
|
|
@@ -1152,6 +1153,7 @@ public class IncomeTaxDeclareListHandlerEx extends IncomeTaxDeclareListHandler {
|
|
|
isyUtilsFacade.addTask("CancelDeclareService", json.toJSONString(), TaskCatalogEnum.CancelTaxDeclare, "");
|
|
|
}
|
|
|
}else if(catalog.equals(TaskCatalogEnum.TaxDeclareUpdate)) {
|
|
|
+ System.out.print("更正申报执行");
|
|
|
//更正申报 120
|
|
|
Gson gson = new Gson();
|
|
|
Type personType = new TypeToken<DeclareCorrectRequest>(){}.getType();
|
|
@@ -1172,6 +1174,7 @@ public class IncomeTaxDeclareListHandlerEx extends IncomeTaxDeclareListHandler {
|
|
|
}
|
|
|
}
|
|
|
}else if(catalog.equals(TaskCatalogEnum.CancelTaxUpdate )) {
|
|
|
+ System.out.print("撤销更正执行");
|
|
|
//撤销更正申报
|
|
|
Gson gson = new Gson();
|
|
|
Type personType = new TypeToken<DeclareCorrectRequest>(){}.getType();
|
|
@@ -1215,6 +1218,7 @@ public class IncomeTaxDeclareListHandlerEx extends IncomeTaxDeclareListHandler {
|
|
|
* @throws BOSException
|
|
|
*/
|
|
|
protected Map cancelDeclare(Context ctx, IncomeTaxDeclarInfo taxDeclare) throws BOSException {
|
|
|
+ System.out.print("申报作废进入自己的分支");
|
|
|
return this.updateOrCancel(ctx, taxDeclare, TaskCatalogEnum.CancelTaxDeclare);
|
|
|
}
|
|
|
|
|
@@ -1239,8 +1243,10 @@ public class IncomeTaxDeclareListHandlerEx extends IncomeTaxDeclareListHandler {
|
|
|
*/
|
|
|
public void cancelDeclareAction(HttpServletRequest request, HttpServletResponse response, ModelMap modelMap)
|
|
|
throws SHRWebException {
|
|
|
+ System.out.print("申报作废开始1");
|
|
|
this.updateOrCancel(request, response, TaskCatalogEnum.CancelTaxDeclare);
|
|
|
request.setAttribute(CmpConstants.CMP_LOG_OPERATE, "cancelDeclare");
|
|
|
+ System.out.print("申报作废开始over");
|
|
|
}
|
|
|
|
|
|
/**
|