示例#1
0
        public static void LogAction(BusinessObject obj, String ViewDesc, String Action)
        {
            Guid iID = BusinessObjectHelper.GetIDValue(obj);

            if (iID == Guid.Empty)
            {
                return;
            }

            String strNo        = BusinessObjectHelper.GetNoValue(obj);
            String strRemark    = BusinessObjectHelper.GetRemarkValue(obj);
            String strTableDesc = DataConfigProvider.GetTableCaption(obj.AATableName);

            LogAction(obj.AATableName, iID, strNo, strRemark, strTableDesc, ViewDesc, Action);
        }