minor fix

This commit is contained in:
Camilo Sarmiento 2020-03-22 18:00:01 -05:00
parent ad51fdd602
commit 46d9407822
2 changed files with 1 additions and 30 deletions

View File

@ -1,29 +0,0 @@
# README #
This README would normally document whatever steps are necessary to get your application up and running.
### What is this repository for? ###
* Quick summary
* Version
* [Learn Markdown](https://bitbucket.org/tutorials/markdowndemo)
### How do I get set up? ###
* Summary of set up
* Configuration
* Dependencies
* Database configuration
* How to run tests
* Deployment instructions
### Contribution guidelines ###
* Writing tests
* Code review
* Other guidelines
### Who do I talk to? ###
* Repo owner or admin
* Other community or team contact

View File

@ -280,6 +280,6 @@ class SaleIncomeDailyReport(metaclass=PoolMeta):
elif isinstance(result[k], list):
report_context[k].extend(result[k])
if k == 'shop':
report_context[k] += result[k] + ', '
report_context[k] += result[k] + ' '
return report_context