How to tell if a customization is running in an Acumatica portal site vs standard Acumatica ERP site?
By : Tristeen Su
Date : March 29 2020, 07:55 AM
hope this fix your issue Is there some call I can make in the Acumatica framework (other than looking for "SP" files) that indicates a site is a "Portal" site vs the standard Acumatica ERP instance site? , You can check the following static Boolean property:
|
How to reference custom screen in its own customization project in another customization project
By : Tomppa
Date : March 29 2020, 07:55 AM
Any of those help You should simply reference the dlls (or the VS projects) from your first customization project in your second VS project. Once you provide those 2 completed packages to the client, make sure they always publish both projects at the same time or only the first one, which has no dependencies on another project.
|
Django admin site customization
By : zwdr
Date : March 29 2020, 07:55 AM
Any of those help My models: , admin.py code :
from django.contrib import admin
from yourappname.models import Question
class QuestionAdmin(admin.ModelAdmin):
search_fields = ['question_text'] # select which field you want to search
list_filter = ['Remarks']
|
customization in Django admin site
By : user3636763
Date : March 29 2020, 07:55 AM
it helps some times You can override styling/etc by using custom js/css: code :
@admin.register(StudentProfile)
class StudentProfile(admin.ModelAdmin):
class Media:
js = ('js/admin/my_own_admin.js',)
css = {
'all': ('css/admin/my_own_admin.css',)
}
|
Site Map for Customization Projects in 2017 R2
By : Oceanborn
Date : March 29 2020, 07:55 AM
I hope this helps you . To include custom workspaces into a customization project, you should proceed as follows:
|