K3自定義sql報表字段顯示標題

2021-05-23 09:49:51 字數 1617 閱讀 5187

delete from iclisttemplate where fid=70001;

delete from icchatbilltitle where ftypeid = 70001;

delete from t_objectaccesstype where fobjecttype=4100 and fobjectid =70001;

delete from t_objecttype where fobjecttype=4100 and fobjectid =70001;

delete from t_objectaccess where fobjecttype=4100 and fobjectid =70001;

關鍵是select * from [icchatbilltitle] ---這是標題

select * from iclisttemplate

連線查詢

select u.fname,t.* from [icchatbilltitle] t ---這是標題

inner join iclisttemplate u on t.ftypeid=u.fid and u.fname like '%合同%'

更新顯示字段

select u.fname,t.* from ais20090905160608.dbo.icchatbilltitle t ---這是標題

inner join ais20090905160608.dbo.iclisttemplate u on t.ftypeid=u.fid and u.fname like '%合同%'

update t

set t.fcolcaption=u1.fcolcaption,

t.fcolcaption_cht=u1.fcolcaption,

t.fcolcaption_en=u1.fcolcaption

from ais20090905160608.dbo.icchatbilltitle t ---這是標題

inner join ais20090905160608.dbo.iclisttemplate u on t.ftypeid=u.fid and t.ftypeid in (70001)

left join ais20090905162212.dbo.icchatbilltitle u1 on t.fcolname=u1.fcolname and u1.ftypeid='70000' ----合同執行表70000

update t

set t.fcolcaption=u1.fcolcaption,

t.fcolcaption_cht=u1.fcolcaption,

t.fcolcaption_en=u1.fcolcaption

from ais20090905160608.dbo.icchatbilltitle t ---這是標題

inner join ais20090905160608.dbo.iclisttemplate u on t.ftypeid=u.fid and t.ftypeid in (70002)

left join ais20090905162212.dbo.icchatbilltitle u1 on t.fcolname=u1.fcolname and u1.ftypeid='70003' ----合同執行階段70003

金蝶K3老單新增自定義選單按鈕

先說下金蝶老單是新單的區別 金蝶是有著20多年的歷史,金蝶軟體是多年的積澱,軟體也經常更新,但是原有的 框架是不變的,因此,現在的金蝶wise,實際上用的還是已經淘汰的語言vb寫的,底層的框架也都是十幾年前落後的。金蝶也有新語言寫的,比如cloud,但wise至少不是。老單與新單,應該是金蝶bos功...

水晶報表 使用者 自定義字段 加 (動態邊框)

在實現使用者自定義欄位前,先往原始碼中新增幾個checkbox控制項,和乙個button,再加乙個報表的 crystalreportviewer 結果如圖 然後往報表中新增幾個引數 http www.cnblogs.com babyt articles 142908.html跟阿泰的引數一樣的!並設...

DedeCMS自定義的多行文字字段限制顯示字數方法

我們在使用dedecms系統增加自定義多行文字欄位後,在呼叫的時候,可能有程式設計客棧時顯示位置不同,需要對多行文字字段內容的字數進行限制。這讓我想起了下乙個問題,很程式設計客棧早之前就被人提出並且已解答的問題。q field description 標籤如何限制字數?a field descrip...