|
|
@@ -1691,6 +1691,10 @@ public class SettlementServiceImpl extends ServiceImpl<SettlementMapper, Settlem
|
|
|
|
|
|
//采购付款生成凭证
|
|
|
public void testPurchaseSaveVoucher(Settlement settlement, String accountName, String createUser, String corpName, String account) throws Exception {
|
|
|
+ // TODO 临时屏蔽
|
|
|
+ if (!"test".equals(AuthUtil.getTenantId())) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
|
|
|
//非达沃特用户直接返回
|
|
|
if (!"681169".equals(AuthUtil.getTenantId())) {
|
|
|
@@ -1752,6 +1756,11 @@ public class SettlementServiceImpl extends ServiceImpl<SettlementMapper, Settlem
|
|
|
|
|
|
//销售收款生成账单
|
|
|
public void testSaleCollectionSaveVoucher(Settlement settlement, String accountName, String corpName, String account) throws Exception {
|
|
|
+ // TODO 临时屏蔽
|
|
|
+ if (!"test".equals(AuthUtil.getTenantId())) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
//非达沃特用户直接返回
|
|
|
if (!"681169".equals(AuthUtil.getTenantId())) {
|
|
|
return;
|
|
|
@@ -1811,6 +1820,10 @@ public class SettlementServiceImpl extends ServiceImpl<SettlementMapper, Settlem
|
|
|
|
|
|
//销售生成账单
|
|
|
public void testSaleSaveVoucher(String accountName, Items items) throws Exception {
|
|
|
+ // TODO 临时屏蔽
|
|
|
+ if (!"test".equals(AuthUtil.getTenantId())) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
|
|
|
//非达沃特用户直接返回
|
|
|
if (!"681169".equals(AuthUtil.getTenantId())) {
|