Ankush Menat
c9fd0031dc
feat(DX): Add __repr__ and __str__ for DocTypes
- Show doctype and name
- if docstatus != 0, show docstatus
- if child doctype, show parent
(cherry picked from commit adbf267212
)
4年前
Leela vadlamudi
4743a04a8e
Merge pull request #13121 from frappe/repr_doctype
feat(DX): Add simple __repr__ for DocTypes
4年前
Suraj Shetty
4fb545fb8c
fix: Quill Table border color
4年前
Suraj Shetty
5fabd51a03
fix: Summary Item width
4年前
Leela vadlamudi
5e9c176927
Merge pull request #13131 from leela/use-getfullargspec
refactor: replace inspect.getargspec with getfullargspec
4年前
Leela vadlamudi
d1a2ebb13e
Merge pull request #13122 from leela/sending-email-refactoring-1
refactor: Send mail functionality
4年前
leela
72ca7e9753
refactor: remove six dependency
4年前
leela
6c85c36630
refactor: Remove deprecated inspect.getargspec
Replace deprecated inspect.getargspec with inspect.getfullargspec.
* inspect.getargspec does not support kw only args aswell as type
annotations.
* replace with inspect.getfullargspec, that supports kw only args.
4年前
mergify[bot]
525fb8068b
Merge pull request #13147 from ankush/assertEquals_deprecation
chore: replace assertEquals with alias assertEqual
4年前
Rohit Waghchaure
a302393bc2
fix: show delete button on portal if user has permission to delete document
4年前
Ankush Menat
7933b9c825
chore: replace assertNotEquals with assertNotEqual
4年前
Ankush Menat
a077466b1e
chore: replace assertEquals with alias assertEqual
`assertEquals` has been deprecated, while not fully removed it will
still keep giving warnings in tests / CI.
ref: https://docs.python.org/3/library/unittest.html#deprecated-aliases
4年前
Gavin D'souza
411075424e
refactor(minor): Simplify site directory generation
4年前
Ankush Menat
4210299ab4
test: add test for creating new app
4年前
Ankush Menat
c48a8e933f
fix: remove six.moves.input and use builtin.input
reason: py2 support no longer required and six makes mocking/testing
complicated.
4年前
Gavin D'souza
393696fa4a
chore: Drop dead code
* Don't create task-logs folder during site creation
* Remove old unused async code for tracking tasks
4年前
Gavin D'souza
7a9611a6c5
fix: Py3 Compatible code
Avoid "DeprecationWarning: invalid escape sequence \W" by using raw
strings instead, If avoided for longer, these lines will throw a
SyntaxError in later Python versions
4年前
Gavin D'souza
b1d2e24892
refactor(minor): Move logging code in seperate function
4年前
Nabin Hait
e22288ec8d
fix: Fixed merge conflict
4年前
Nabin Hait
10c8e3430c
Merge branch 'version-13-pre-release' into version-13
4年前
Nabin Hait
abc49ef960
bumped to version 13.2.1
4年前
Suraj Shetty
5ccccf104d
chore: Track before test time
4年前
shariquerik
f46c3b59a6
fix: sider fix
4年前
shariquerik
47d1f3d50a
test: uncomment
4年前
shariquerik
bc08459ca7
test: Test case for revert series
4年前
mergify[bot]
09bbc44e12
Merge pull request #13140 from ankush/hooks_format
fix: hook format for user_data_fields
4年前
Nabin Hait
a280547c22
perf: Performance enhancement on creation of custom fields from setup wizard ( #13139 )
4年前
Nabin Hait
a5ea898204
perf: Performance enhancement on creation of custom fields from setup wizard ( #13137 )
4年前
Gavin D'souza
87ed7796de
fix: Use older logic to set module_name and custom vars
4年前
Gavin D'souza
877f9d08df
fix: Use fallback values if doctype values unset
4年前
Gavin D'souza
843c544117
refactor: Rename function and add docstring
Co-authored-by: Suraj Shetty <13928957+surajshetty3416@users.noreply.github.com>
4年前
Gavin D'souza
05712abc60
fix: Check for db value if cache doesn't exist
in get_controller, if cached value doesn't exist for a DocType in the
frappe.db.value_cache, then query the db as fallback before the final
fallback of assuming module as Core and non custom
4年前
Gavin D'souza
a3b79081d6
fix: Use Document in case get_controller raises import errors
5年前
Gavin D'souza
ce4253c631
fix: Ignore 'special' DocTypes to avoid breaking changes
eg:
Fieldname 'Delete' conflicting with a controller method of the name delete in Custom DocPerm
Fieldname 'Delete' conflicting with a controller method of the name delete in DocPerm
Fieldname 'Precision' conflicting with a controller method of the name precision in Custom Field
Fieldname 'Precision' conflicting with a controller method of the name precision in Customize Form Field
Fieldname 'Precision' conflicting with a controller method of the name precision in DocField
4年前
Gavin D'souza
78e1297392
chore: Drop dead file
4年前
Gavin D'souza
c652c7b7f5
feat: Validate field name conflicts in DocType.validate
# Conflicts:
# frappe/core/doctype/doctype/doctype.py
4年前
Gavin D'souza
255a959a3e
chore: Rename function to validate conflicting methods and properties
4年前
Gavin D'souza
9aa2f366dd
fix: Don't execute dynamic properties to check if conflicts exist
4年前
gavin
e9d6378e5c
Merge pull request #13129 from gavindsouza/misc-fixes-py3
fix: Misc fixes
4年前
Ankush Menat
2548bca187
fix: hook format for user_data_fields
4年前
shariquerik
483cd85eba
fix: Revert naming for custom naming series
4年前
Suraj Shetty
3e7b48438c
chore: Debug
4年前
mergify[bot]
585b123bd7
Merge pull request #13134 from ankush/hooks_template_fixes
fix: missing comma and uncommented code in hooks.py template
4年前
Suraj Shetty
b64ca5eb2f
test: Fix dependency
4年前
Suraj Shetty
ba88b2cdb9
fix: Handle exception
4年前
Suraj Shetty
aab2aca089
ci: Enable coveralls
4年前
Suraj Shetty
c1ea512b3a
feat: Indicate slow tests
4年前
Suraj Shetty
aaadb71e79
perf: Make saving of System Settings faster
4年前
Suraj Shetty
8875848355
perf(test): Reduce token expiry wait time for test
- Also, reduce lock_interval
4年前
Ankush Menat
9e39249059
fix: comment user_data_fields and fix structure
4年前