Changes between Initial Version and Version 1 of Ticket #34301


Ignore:
Timestamp:
Jan 29, 2023, 10:55:54 PM (16 months ago)
Author:
Mariusz Felisiak
Comment:

Thanks for the report. It was previously reported in #5650 and #3817, and #3817 was closed but only with a fix for "Save and add another" (see 825f0beda804e48e9197fcf3b0d909f9f548aa47).

I rewrite this for my project:

           "show_save_as_new": not is_popup
            and has_add_permission  # This line that I put!!!
            and has_change_permission
            and change
            and save_as,

Do we need to check both? Checking only has_add_permission should be enough.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #34301

    • Property Cc Carlton Gibson added
    • Property Triage Stage UnreviewedAccepted
  • Ticket #34301 – Description

    initial v1  
    22
    33I rewrite this for my project:
    4 "
     4{{{
    55            "show_save_as_new": not is_popup
    66            and has_add_permission  # This line that I put!!!
     
    88            and change
    99            and save_as,
    10  "
     10 }}}
Back to Top