增加BIP打款金额字段

This commit is contained in:
hecan 2025-01-06 10:40:59 +08:00
parent 435665c944
commit 2aa3956f18
5 changed files with 43 additions and 21 deletions

View File

@ -5,13 +5,13 @@ import com.hzya.frame.base.PluginBaseEntity;
import com.hzya.frame.web.entity.BaseResult; import com.hzya.frame.web.entity.BaseResult;
import com.hzya.frame.web.entity.JsonResultEntity; import com.hzya.frame.web.entity.JsonResultEntity;
import com.jcraft.jsch.Channel; /*import com.jcraft.jsch.Channel;
import com.jcraft.jsch.ChannelSftp; import com.jcraft.jsch.ChannelSftp;
import com.jcraft.jsch.JSch; import com.jcraft.jsch.JSch;
import com.jcraft.jsch.Session; import com.jcraft.jsch.Session;
import com.jcraft.jsch.SftpATTRS; import com.jcraft.jsch.SftpATTRS;
import com.jcraft.jsch.SftpException; import com.jcraft.jsch.SftpException;
import org.apache.commons.net.ftp.FTPClient; import org.apache.commons.net.ftp.FTPClient;*/
import org.slf4j.Logger; import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Value; import org.springframework.beans.factory.annotation.Value;
@ -107,12 +107,12 @@ public class BackUpDatabaseInitializer extends PluginBaseEntity {
private String sftpFilePase; private String sftpFilePase;
private ChannelSftp sftp = null; /*private ChannelSftp sftp = null;
private Session sshSession = null; private Session sshSession = null;*/
@Override @Override
public JsonResultEntity executeBusiness(JSONObject requestJson) { public JsonResultEntity executeBusiness(JSONObject requestJson) {
try { /* try {
if(filePase == null || "".equals(filePase) if(filePase == null || "".equals(filePase)
|| databaseName == null || "".equals(databaseName) || databaseName == null || "".equals(databaseName)
|| fileName == null || "".equals(fileName) || fileName == null || "".equals(fileName)
@ -185,14 +185,14 @@ public class BackUpDatabaseInitializer extends PluginBaseEntity {
return false; return false;
} }
} }
/** *//**
* @Author lvleigang * @Author lvleigang
* @Description 创建目录及文件 * @Description 创建目录及文件
* @Date 8:59 上午 2024/10/22 * @Date 8:59 上午 2024/10/22
* @param filePath * @param filePath
* @param fileName * @param fileName
* @return java.io.File * @return java.io.File
**/ **//*
public File creatFile(String filePath, String fileName) { public File creatFile(String filePath, String fileName) {
File folder = new File(filePath); File folder = new File(filePath);
//文件夹路径不存在 //文件夹路径不存在
@ -252,9 +252,9 @@ public class BackUpDatabaseInitializer extends PluginBaseEntity {
} }
} }
/** *//**
* 关闭连接 * 关闭连接
*/ *//*
public void disconnect() { public void disconnect() {
if (this.sftp != null) { if (this.sftp != null) {
if (this.sftp.isConnected()) { if (this.sftp.isConnected()) {
@ -274,7 +274,7 @@ public class BackUpDatabaseInitializer extends PluginBaseEntity {
} }
} }
/** *//**
* 上传单个文件 * 上传单个文件
* *
* @param remotePath远程保存目录 * @param remotePath远程保存目录
@ -282,7 +282,7 @@ public class BackUpDatabaseInitializer extends PluginBaseEntity {
* @param localPath本地上传目录(以路径符号结束) * @param localPath本地上传目录(以路径符号结束)
* @param localFileName上传的文件名 * @param localFileName上传的文件名
* @return * @return
*/ *//*
public boolean uploadFile(String remotePath, String remoteFileName, String localPath, String localFileName) { public boolean uploadFile(String remotePath, String remoteFileName, String localPath, String localFileName) {
FileInputStream in = null; FileInputStream in = null;
try { try {
@ -304,12 +304,12 @@ public class BackUpDatabaseInitializer extends PluginBaseEntity {
return false; return false;
} }
/** *//**
* 创建目录 * 创建目录
* *
* @param createpath * @param createpath
* @return * @return
*/ *//*
public boolean createDir(String createpath) { public boolean createDir(String createpath) {
try { try {
if (isDirExist(createpath)) { if (isDirExist(createpath)) {
@ -340,12 +340,12 @@ public class BackUpDatabaseInitializer extends PluginBaseEntity {
return false; return false;
} }
/** *//**
* 判断目录是否存在 * 判断目录是否存在
* *
* @param directory * @param directory
* @return * @return
*/ *//*
public boolean isDirExist(String directory) { public boolean isDirExist(String directory) {
boolean isDirExistFlag = false; boolean isDirExistFlag = false;
try { try {
@ -362,11 +362,11 @@ public class BackUpDatabaseInitializer extends PluginBaseEntity {
/** *//**
* 如果目录不存在就创建目录 * 如果目录不存在就创建目录
* *
* @param path * @param path
*/ *//*
public void mkdirs(String path) { public void mkdirs(String path) {
File f = new File(path); File f = new File(path);
@ -376,7 +376,8 @@ public class BackUpDatabaseInitializer extends PluginBaseEntity {
if (!f.exists()) { if (!f.exists()) {
f.mkdirs(); f.mkdirs();
} }*/
return null;
} }

View File

@ -18,7 +18,24 @@ public class ServiceDataEntity extends BaseEntity {
private String summary_id;//summary_id private String summary_id;//summary_id
private String bipAmountField;//BIP打款金额字段
private String bipAmount;//BIP打款金额
public String getBipAmountField() {
return bipAmountField;
}
public void setBipAmountField(String bipAmountField) {
this.bipAmountField = bipAmountField;
}
public String getBipAmount() {
return bipAmount;
}
public void setBipAmount(String bipAmount) {
this.bipAmount = bipAmount;
}
public String getSummary_id() { public String getSummary_id() {
return summary_id; return summary_id;

View File

@ -25,6 +25,8 @@
,summary_id ,summary_id
,bip_payment_number_field as bipPaymentNumberField ,bip_payment_number_field as bipPaymentNumberField
,bip_payment_number as bipPaymentNumber ,bip_payment_number as bipPaymentNumber
,bip_amount_field as bipAmountField
,bip_amount as bipAmount
</sql> </sql>
<select id="entity_list_base" resultMap="get-ServiceDataEntity-result" parameterType = "com.hzya.frame.sysnew.comparison.serviceData.entity.ServiceDataEntity"> <select id="entity_list_base" resultMap="get-ServiceDataEntity-result" parameterType = "com.hzya.frame.sysnew.comparison.serviceData.entity.ServiceDataEntity">
@ -89,6 +91,7 @@
update ${tabName} set update ${tabName} set
<trim suffix="" suffixOverrides=","> <trim suffix="" suffixOverrides=",">
<if test="payDate != null and payDate != ''"> ${payDateFiled} = #{payDate},</if> <if test="payDate != null and payDate != ''"> ${payDateFiled} = #{payDate},</if>
<if test="bipAmount != null and bipAmount != ''"> ${bipAmountField} = #{bipAmount},</if>
<if test="payResult != null and payResult != ''"> ${payResultFiled} = #{payResult}</if> <if test="payResult != null and payResult != ''"> ${payResultFiled} = #{payResult}</if>
</trim> </trim>
where id=#{id} where id=#{id}

View File

@ -162,6 +162,7 @@ public class ServiceDataServiceImpl extends BaseService<ComparisonEntity,String>
if (jsonObject.getString("billCode").equals(serviceDataEntity.getBillCode())) { if (jsonObject.getString("billCode").equals(serviceDataEntity.getBillCode())) {
serviceDataEntity.setPayResult(jsonObject.getString("payResult")); serviceDataEntity.setPayResult(jsonObject.getString("payResult"));
serviceDataEntity.setPayDate(jsonObject.getString("payDate")); serviceDataEntity.setPayDate(jsonObject.getString("payDate"));
serviceDataEntity.setBipAmount(jsonObject.getString("bipAmount"));
serviceDataEntity.setDataSourceCode(jsonObject.getString("dataSourceCode")); serviceDataEntity.setDataSourceCode(jsonObject.getString("dataSourceCode"));
logger.info("====开始根据单据号:{},表名称:{},表单id:{}更新支付状态和时间======", serviceDataEntity.getBillCode(), serviceDataEntity.getTabName(), serviceDataEntity.getId()); logger.info("====开始根据单据号:{},表名称:{},表单id:{}更新支付状态和时间======", serviceDataEntity.getBillCode(), serviceDataEntity.getTabName(), serviceDataEntity.getId());
integer = serviceDataDao.updatePayResult(serviceDataEntity); integer = serviceDataDao.updatePayResult(serviceDataEntity);
@ -292,7 +293,7 @@ public class ServiceDataServiceImpl extends BaseService<ComparisonEntity,String>
try { try {
StringBuffer stringBuffer = new StringBuffer(); StringBuffer stringBuffer = new StringBuffer();
stringBuffer.append("select oa_id as data_id,tab_name,title,pay_company,bill_name,pay_result_field,pay_date_field,receipt_filed,\n" + stringBuffer.append("select oa_id as data_id,tab_name,title,pay_company,bill_name,pay_result_field,pay_date_field,receipt_filed,\n" +
"push_status_field,summary_id,bip_payment_number_field,\n" + "push_status_field,summary_id,bip_payment_number_field,bip_amount_field,\n" +
"vdef1,pk_acceptorg,creator,pk_group,pk_org,applydate,pk_trantypecode,pk_busitype,vdef2,pk_currtype,\n" + "vdef1,pk_acceptorg,creator,pk_group,pk_org,applydate,pk_trantypecode,pk_busitype,vdef2,pk_currtype,\n" +
"pk_supplier,pk_bankacc_r,pk_bankacc_p,pk_decidedept,vdef10,vdef12,vdef3,vdef4,vdef5,vdef6,applysum,\n" + "pk_supplier,pk_bankacc_r,pk_bankacc_p,pk_decidedept,vdef10,vdef12,vdef3,vdef4,vdef5,vdef6,applysum,\n" +
"vdef7,vdef8,vdef9 from v_cmp_apply where 1=1 and vdef1 is not null and push_status is null and applysum >0"); "vdef7,vdef8,vdef9 from v_cmp_apply where 1=1 and vdef1 is not null and push_status is null and applysum >0");

View File

@ -14,9 +14,9 @@
<!-- <module>fw-nc</module>--> <!-- <module>fw-nc</module>-->
<!-- <module>fw-ncc</module>--> <!-- <module>fw-ncc</module>-->
<!-- <module>fw-ningbobank</module>--> <!-- <module>fw-ningbobank</module>-->
<!-- <module>fw-oa</module>--> <module>fw-oa</module>
<!-- <module>fw-u8</module>--> <!-- <module>fw-u8</module>-->
<!-- <module>fw-u8c</module>--> <module>fw-u8c</module>
<!-- <module>fw-u9c</module>--> <!-- <module>fw-u9c</module>-->
</modules> </modules>
<groupId>com.hzya.frame</groupId> <groupId>com.hzya.frame</groupId>