...
|
...
|
@@ -317,8 +317,8 @@ const orderDetail = (req, res, next) => { |
|
|
|
|
|
return options.inverse(this);
|
|
|
},
|
|
|
geZero: function(value, options) {
|
|
|
if (value >= 0) {
|
|
|
greaterThanZero: function(value, options) {
|
|
|
if (value && parseFloat(value) > 0) {
|
|
|
return options.fn(this);
|
|
|
}
|
|
|
|
...
|
...
|
|