diff --git a/DSWeb/Areas/MvcShipping/DAL/MsOp_SuperVision_Truck/MsOp_SuperVision_TruckDAL.cs b/DSWeb/Areas/MvcShipping/DAL/MsOp_SuperVision_Truck/MsOp_SuperVision_TruckDAL.cs index 9ea5aa55..f33a9b1b 100644 --- a/DSWeb/Areas/MvcShipping/DAL/MsOp_SuperVision_Truck/MsOp_SuperVision_TruckDAL.cs +++ b/DSWeb/Areas/MvcShipping/DAL/MsOp_SuperVision_Truck/MsOp_SuperVision_TruckDAL.cs @@ -608,7 +608,14 @@ namespace DSWeb.MvcShipping.DAL.MsOpOtherDAL var result = ""; if (dt.Columns.Contains(fieldname)) { - result = Convert.ToString(row[fieldname]); + result = row[fieldname].ToString(); + try { + var guidstr = new Guid(result); + result = ""; + } + catch (Exception e) { + + } } return result; } diff --git a/DSWeb/Areas/MvcShipping/Viewsjs/MsOp_SuperVision_Truck/MsOp_SuperVision_TruckModel.js b/DSWeb/Areas/MvcShipping/Viewsjs/MsOp_SuperVision_Truck/MsOp_SuperVision_TruckModel.js index 1259df7f..e2756825 100644 --- a/DSWeb/Areas/MvcShipping/Viewsjs/MsOp_SuperVision_Truck/MsOp_SuperVision_TruckModel.js +++ b/DSWeb/Areas/MvcShipping/Viewsjs/MsOp_SuperVision_Truck/MsOp_SuperVision_TruckModel.js @@ -207,5 +207,5 @@ Ext.define('MsOpSuperVisionTruckDetailModel', { { name: 'REMARK', type: 'string' }, { name: 'MBLNO', type: 'string' }, { name: 'VESSEL', type: 'string' } - ]s + ] }); \ No newline at end of file