更改Record 日期為中式,填入異動人員,異動時間

CodeCharge Studio 2.x, 3.x, 4.x, 5.x
回覆文章
yehlu
Site Admin
文章: 3245
註冊時間: 2004-04-15 17:20:21
來自: CodeCharge Support Engineer

更改Record 日期為中式,填入異動人員,異動時間

文章 yehlu »

顯示
event => class_s_date_BeforeShow()
加入
$class->s_date->SetValue(date_csttotw($class->ds->s_date->GetValue()));

新增
event => class_ds_BeforeBuildInsert()
加入
$class->ds->s_date->SetValue(date_twtocst($class->s_date->GetValue())); $class->ds->e_date->SetValue(date_twtocst($class->e_date->GetValue()));
$class->ds->stamp->SetValue(date("Y-m-d H:i:s"));
$class->ds->user_id->SetValue(CCGetUserID());

更新
event => class_ds_BeforeBuildUpdate()
加入
$class->ds->s_date->SetValue(date_twtocst($class->s_date->GetValue())); $class->ds->e_date->SetValue(date_twtocst($class->e_date->GetValue()));
$class->ds->stamp->SetValue(date("Y-m-d H:i:s"));
$class->ds->user_id->SetValue(CCGetUserID());
回覆文章

回到「CodeCharge Studio」