ariesy 修改认证人权限

release
yefei 2 years ago
parent 9cbdfdd242
commit b295aaaf53
  1. 10
      dxhy-core/src/main/java/com/dxhy/core/job/service/impl/ConfirmServiceImpl.java
  2. 12
      dxhy-erp/src/main/java/com/dxhy/erp/service/impl/SignSaveInvoiceInfoServiceImpl.java

@ -221,9 +221,15 @@ public class ConfirmServiceImpl extends ServiceImpl<ConfirmDao, TDxHttpLog> impl
}
}
} catch (Exception e) {
tDxHttpLog.setStatus("2");
confirmDao.insert(tDxHttpLog);
try {
tDxHttpLog.setStatus("2");
confirmDao.insert(tDxHttpLog);
}catch (Exception exe){
exe.printStackTrace();
throw new Exception(exe);
}
e.printStackTrace();
throw new Exception(e);
}
}

@ -135,9 +135,15 @@ public class SignSaveInvoiceInfoServiceImpl extends MpBaseServiceImpl<SignRecord
} catch (Exception e) {
e.printStackTrace();
// 保存明细表异常,设置底账表的明细标志为0,detail_yesorno=0
TdxRecordInvoice invoice = new TdxRecordInvoice();
invoice.setDetailYesorno("0");
this.updateInvoice(invoice);
try {
TdxRecordInvoice invoice = new TdxRecordInvoice();
invoice.setDetailYesorno("0");
this.updateInvoice(invoice);
}catch (Exception exe){
exe.printStackTrace();
throw new Exception(exe);
}
throw new Exception(e);
}
// 保存税率统计表

Loading…
Cancel
Save