@ -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;
@ -207,5 +207,5 @@ Ext.define('MsOpSuperVisionTruckDetailModel', {
{ name: 'REMARK', type: 'string' },
{ name: 'MBLNO', type: 'string' },
{ name: 'VESSEL', type: 'string' }
]s
]
});