物料過濾只顯示 財務組織屬性中的自製物料
string adminname = syscontext.getsyscontext().getcurrentadminunit().getname();
//設定分錄f7實現檢索$yuanliao
kdbizpromptbox yuanliaobox = (kdbizpromptbox)this.kdte1.getcolumn("yuanliao").geteditor().getcomponent();
yuanliaobox.setcommitformat("$name$;$number$");
//配方編碼只顯示自製品
this.prmtmaterialcoding.setcommitformat("$name$;$number$");
syscontext ctx = syscontext.getsyscontext();
entityviewinfo material = new entityviewinfo();
filterinfo materialfilterinfo = new filterinfo();
materialfilterinfo
.getfilteritems()
.add(
new filteriteminfo(
"id",
" select fmaterialid from t_bd_materialcompanyinfo where fcalculatetype=2 and fcompanyid='"+ctx.getcurrentfiunit( ).getid().tostring()+"'",
comparetype.inner));
//過濾只顯示當前公司組織
materialfilterinfo
.getfilteritems()
.add(
new filteriteminfo( "orgunit.id",ctx.getcurrentfiunit( ).getid().tostring(), comparetype.equals));
materialfilterinfo.setmaskstring("#0 and #1 ");
material.setfilter(materialfilterinfo);
this.prmtmaterialcoding.setentityviewinfo(material);
人員過濾 只顯示當前公司登陸的人員
//品管經理預設當前登入使用者
this.prmtpgmanager.setvalue(syscontext.getsyscontext().getcurrentuserinfo());
//生產經理預設登入組織下的生產經理, 支援回車搜尋
entityviewinfo scmanager = new entityviewinfo();
filterinfo scmanagerfilterinfo = new filterinfo();
scmanagerfilterinfo
.getfilteritems()
.add(
new filteriteminfo(
"id",
" select a.fid as fempid from t_bd_person a left join t_org_positionmember b on a.fid = b.fpersonid left join t_org_position c on b.fpositionid = c.fid left join t_org_admin d on c.fadminorgunitid = d.fid left join t_pm_user e on a.fid = e.fpersonid where d.fcontrolunitid='"+syscontext.getsyscontext().getcurrentorgunit().getid().tostring()+"' ",
comparetype.inner));
scmanagerfilterinfo
.getfilteritems()
.add(
new filteriteminfo(
"adminorgunit.displayname",
"%"+adminname+"%",
comparetype.like));
scmanagerfilterinfo.setmaskstring("#0 and #1");
scmanager.setfilter(scmanagerfilterinfo);
this.prmtscmanager.setentityviewinfo(scmanager);
this.prmtscmanager.setcommitformat("$name$;$number$");
CSS新增選擇器(一)
之前寫css,用的最多的選擇器就是id選擇器和類選擇器了,雖然基本上能滿足寫頁面的各種需求,但有些css寫法還是有些冗雜。今天通過對css新增選擇器的學習,能讓之後的 更加優化。li first child li last child li nth child 4 target目標偽類選擇器 選擇器...
CSS3的新增選擇器
1.css3 關係選擇器 選擇符名稱 版本簡介 e f 包含選擇符 css1 選擇所有被 e元素包含的f元素 e f 子選擇符 css2 選擇所有作為 e元素的子元素 fe f 相鄰選擇符 css2 選擇緊貼在 e元素之後f元素 e f 兄弟選擇符 css3 選擇 e元素所有兄弟元素 p p cal...
CSS3 新增選擇器
新增選擇器 用法描述 element1 element2 p u選擇在同乙個父級元素下的p後面的所有的ul 選擇其 src 屬性值以 https 開頭的每個a元素 attribute value a src pdf 選擇其 src 屬性以 pdf 結尾的所有a元素 attribute value a...