|
|
@@ -42,11 +42,7 @@ public class OrgPayAccountService extends SuperService {
|
|
|
* @return
|
|
|
*/
|
|
|
public String queryOgPayAccount(String oid, PaymentType paymentType) {
|
|
|
- OrgPayAccount orgPayAccount = orgPayAccountDao.findTopByOidAndPaymentType(oid, paymentType);
|
|
|
- if (ObjectUtils.isNotEmpty(orgPayAccount)) {
|
|
|
- return orgPayAccount.getPayAccountId();
|
|
|
- }
|
|
|
- return "";
|
|
|
+ return buildPayAccountName(oid, paymentType);
|
|
|
}
|
|
|
|
|
|
|