合同提交erp功能编写

This commit is contained in:
guojunyun
2025-10-14 09:37:28 +08:00
parent 8b584ab1af
commit f1b90a51ac
4 changed files with 215 additions and 50 deletions

View File

@@ -199,4 +199,24 @@ public class ErpContractSaveReqVO {
@Schema(description = "达到收款条件金额;销售合同且类型为SAP02COSR必填")
private BigDecimal payeeConditionAmount;
@Schema(description = "公司编号")
private Long companyId;
@Schema(description = "公司名称")
private String companyName;
@Schema(description = "部门编号")
private Long deptId;
@Schema(description = "部门名称")
private String deptName;
@Schema(description = "岗位编号")
private Long postId;
@Schema(description = "创建者")
private String creatorName;
@Schema(description = "更新者")
private String updaterName;
}

View File

@@ -70,4 +70,12 @@ public interface ErpContractService {
PageResult<ErpContractDO> getErpContractPage(ErpContractPageReqVO pageReqVO);
void callErpRfcInterface();
/**
* 合同提交ERP
*
* @param erpContractVO ERP合同映射数据
* @return ERP合同映射
*/
String submitErp(ErpContractSaveReqVO erpContractVO);
}