Skip to content
Snippets Groups Projects
Commit 2d19388a authored by wactbprot's avatar wactbprot
Browse files

customer + (sign)

parent 971a05ba
No related branches found
No related tags found
No related merge requests found
function(doc) {
if(doc.Customer &&
doc.Customer.Name){
emit(doc.Customer.Name, null);
}
if(doc.Customer &&
doc.Customer.Name &&
doc.Customer.Sign){
emit(doc.Customer.Name + " (" + doc.Customer.Sign + ")" , null);
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment