Files
004_comission/catmk2/task1/utils/checkNotNotifiedForPayment.js
louiscklaw abff74fd77 update,
2025-01-31 19:29:24 +08:00

11 lines
297 B
JavaScript

function checkNotNotifiedForPayment(cell_value) {
var output = { state: "init", debug: {}, error: "" };
try {
return cell_value == CONST_NOT_NOTIFIED;
} catch (error) {
console.log('checkNotNotifiedForPayment error')
output = { ...output, error };
console.log(output);
}
}