feat: Se hace visible agenda de llamadas en vista tree de prospect_trace, closed #31
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Camilo Gonzalez 2023-08-13 21:05:57 -05:00
parent d7d5c95b29
commit 9b2c40d821
2 changed files with 6 additions and 1 deletions

View File

@ -8,3 +8,7 @@ class PendingCall(ModelSQL, ModelView):
__name__ = "sale.pending_call"
date = fields.Date('Date', required=True)
def get_rec_name(self, name):
if self.date:
return str(self.date)

View File

@ -25,7 +25,8 @@ this repository contains the full copyright notices and license terms. -->
</page>
</notebook>
<field name="pending_call" colspan="6"/>
<label name="pending_call"/>
<field name="pending_call"/>
<label name="state"/>
<field name="state"/>
</form>