码迷,mamicode.com
首页 > 数据库 > 详细

金蝶K/3 审批相关SQL语句

时间:2018-08-05 11:57:33      阅读:701      评论:0      收藏:0      [点我收藏+]

标签:typeid   docid   function   span   control   delete   sele   inf   fread   

金蝶K/3 审批相关SQL语句

 

 

 --http://127.0.0.1/lightApp/todocheckTask.aspx?AccID=84&&FClasstypeID=1071&&FBillID=1312

select xt.fuserid ,xt.fname,u.fname as fusername ,e.FName as fempname from t_xuntong_user xt with (nolock) 
                                                inner join t_user u  with (nolock) on xt.fuserid=u.fuserid
                                                inner join t_Emp e with(nolock) on u.FEmpID=e.FItemID
                                                where u.FUserID>=16384 and xt.fopenid=5b025f91e4b0d301fd093ca3


 use AIS20180607113701
select fopenid,* from dbo.t_XunTong_User where Fname =landv
go

use [KDAcctDB]
select facctid,* from dbo.t_ad_kdAccount_gl where FAcctName =landv
go


select DB_ID(AIS20180607113701)

SELECT TOP 100 FID,FPushTypeID,FBillTypeID,FInterID,FEntryID,FStatus,FExtInfo
FROM t_SuspendWorkPushQueue WITH(NOLOCK)
ORDER BY FID ASC


select xt.fuserid ,xt.fname,u.fname as fusername ,e.FName as fempname from t_xuntong_user xt with (nolock) 
                                                inner join t_user u  with (nolock) on xt.fuserid=u.fuserid
                                                inner join t_Emp e with(nolock) on u.FEmpID=e.FItemID
                                                where u.FUserID>=16384 and xt.fopenid=5b025f91e4b0d301fd093ca3



--查询已办的集合 
select * from (select top 7 t1.FClassTypeID as DocTypeID,i1.FName_CHS as DocTypeName,t1.FBillID as DocID,t4.FName as PrevPerson,i2.FtableName,
                    t1.FUpdateDate as PrevDate,t1.FContent as Title,substring(FContent,charindex(:,FContent)+1,CHARINDEX(,,FContent)-CHARINDEX(:,FContent)-1) as DocNo,t1.FReaded as ReadStatus ,t2.FTaskID as FTaskID 
                    from ICClassMCTaskCenter t1  with (nolock)  inner join (--支持移动审批的单据集合
select FClassTypeID,FName_CHS from (
select tb2.FID as FClassTypeID,tb2.FName_CHS as FName_CHS from (
select FClassTypeID    from ICMobileBillType 
union
select fid as FClassTypeID from icclasstype where FID>=200000000  and  FBillTypeID=3
union
select fid as FClassTypeID FROM ICClassType  where FID>1000000 and   FFunctionID=259 and FBillTypeID=3 and (FControl & 1) = 1 
) tb1
 inner join ICClassType  tb2 on tb1.FClassTypeID=tb2.FID
 where tb2.FMobileControl&2=2
)s1 

 ) i1  on  t1.FClassTypeID=i1.FClassTypeID 
                    left join ICClassMCTaskUser t2  with (nolock) on t1.FID=t2.FTaskID 
                    left join t_user t4  with (nolock) on t1.FSenderID=t4.FUserID
                    left join icclasstype i2  with (nolock) on i2.FID=t1.FClassTypeID   where   1=1 and t1.FStatus = 1 and t1.FProcessUserID = 16398 and(t2.FMobileDeletedStatus is null or t2.FMobileDeletedStatus<>1) and ((t2.FMobileDeletedStatusUserId is null or  t2.FMobileDeletedStatusUserId=0) or t2.FMobileDeletedStatusUserId=16398)  and  t2.FUserID in (select FGroupID from t_group where FUserID = 16398 union select 16398)  order by t1.FUpdateDate Desc ) Re where  1=1 



select  * from ICClassType where FID=1000051select * from ICClassTypeEntry where FParentID=1000051select * from ICClassTableInfo  where FClassTypeID=1000051

 

金蝶K/3 审批相关SQL语句

标签:typeid   docid   function   span   control   delete   sele   inf   fread   

原文地址:https://www.cnblogs.com/landv/p/9424851.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!