Commit 017cc6d8 by 王昆

dd

parent ad1af9eb
...@@ -68,6 +68,9 @@ class IInvoiceDao extends Dao { ...@@ -68,6 +68,9 @@ class IInvoiceDao extends Dao {
params.bd_path_like = params.bd_path + "%"; params.bd_path_like = params.bd_path + "%";
sql.push("AND t1.`bd_path` LIKE :bd_path_like"); sql.push("AND t1.`bd_path` LIKE :bd_path_like");
} }
if(params.invoice_number) {
sql.push("AND t1.`invoice_number`=:invoice_number");
}
} }
async findByChannelAndApplyNo(channel_id,apply_no){ async findByChannelAndApplyNo(channel_id,apply_no){
......
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