Ver código fonte

simple fix in assign to

version-14
Anand Doshi 13 anos atrás
pai
commit
2cd4531a8d
2 arquivos alterados com 2 adições e 2 exclusões
  1. +1
    -1
      py/webnotes/boot.py
  2. +1
    -1
      py/webnotes/widgets/form/assign_to.py

+ 1
- 1
py/webnotes/boot.py Ver arquivo

@@ -41,7 +41,7 @@ def get_bootinfo():

# remove email settings from control panel dict
for field in ['mail_login', 'mail_password', 'mail_port', 'outgoing_mail_server', 'use_ssl']:
del cp[field]
if field in cp: del cp[field]
# system info
bootinfo['control_panel'] = cp.copy()


+ 1
- 1
py/webnotes/widgets/form/assign_to.py Ver arquivo

@@ -110,7 +110,7 @@ def notify_assignment(assigned_by, owner, doc_type, doc_name, action='CLOSE', no
arg = {
'uid': owner,
'comment': "A new task, %s, has been assigned to you by %s." \
% (assignment, webnotes.session.get('uer')),
% (assignment, webnotes.session.get('user')),
'notify': notify
}
from home.page.my_company import my_company


Carregando…
Cancelar
Salvar