发票功能改用系统参数配置用户名和密码
This commit is contained in:
parent
16ea246b21
commit
1249f56c29
|
@ -722,8 +722,8 @@ public class ReconPayreqFormPlugin extends AbstractFormPlugin implements BeforeF
|
|||
}
|
||||
|
||||
public String getOaToken(){
|
||||
String userName = "lexmiscivrest";
|
||||
String password = "lexmisciv2019";
|
||||
String userName = System.getProperty("oaFPUserName");
|
||||
String password = System.getProperty("oaFPPassword");
|
||||
String loginName = "test";//测试使用test用户
|
||||
//正式环境使用
|
||||
// Long userId = UserServiceHelper.getCurrentUserId();
|
||||
|
|
Loading…
Reference in New Issue