You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
DS7/DSWeb/Areas/TruckMng/Viewsjs/MsWl_LKPC/RowStatus.js

15 lines
300 B
JavaScript

2 years ago
Ext.namespace('DsTruck');
DsTruck.LKPCRowClass = function (ISPC,ISBACK) {
if (ISPC == "0") {
return '';
}
if (ISPC == "1" && ISBACK=="0") {
return 'feestatus_refer';
}
if (ISPC == "1" && ISBACK=="1") {
return 'feestatus_settle';
}
return '';
}