Commit 3fb348dd by 孙亚楠

dd

parent f4d34d48
......@@ -25,6 +25,9 @@ class LoadService extends ServiceBase {
if(params.id_no){
where.id_no = params.id_no
}
if(params.compreSalary){
where.compre_salary = this.trim(params.compreSalary);
}
this.addWhereTime(where, 'affirm_time', params.signBegin, params.signEnd, true);
var orderby = [
["id", 'desc']
......
......@@ -33,6 +33,11 @@ class TransactioninService extends ServiceBase {
if(params.invoiceId){
where.invoiceId = this.trim(params.invoiceId);
}
if(params.compreSalary){
where.deduct_amt = this.trim(params.compreSalary);
}
this.addWhereTime(where, 'transaction_time', params.signBegin, params.signEnd, true);
var orderby = [
["id", 'desc']
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment