Merge pull request #5076 from vjFaLk/develop

Fix for Opportunity
This commit is contained in:
Nabin Hait 2016-03-31 11:55:07 +05:30
commit 6123560f51

View File

@ -17,9 +17,11 @@ status_map = {
["Opportunity", "has_opportunity"],
],
"Opportunity": [
["Lost", "eval:self.status=='Lost'"],
["Quotation", "has_quotation"],
["Converted", "has_ordered_quotation"]
["Converted", "has_ordered_quotation"],
["Lost", "eval:self.status=='Lost'"],
["Closed", "eval:self.status=='Closed'"]
],
"Quotation": [
["Draft", None],