HOTFIX: #6943 CustomerList form salesPersons options #790

Closed
jsegarra wants to merge 84 commits from hotfix_newCustomer_SalesPerson into master
3 changed files with 6 additions and 3 deletions
Showing only changes of commit 2288c527ae - Show all commits

View File

@ -69,7 +69,10 @@ const $props = defineProps({
type: Boolean,
default: false,
},
appendParams: {
type: Boolean,
default: true,
},
hasSubToolbar: {
type: Boolean,
default: null,

View File

@ -248,7 +248,7 @@ export function useArrayData(key = useRoute().meta.moduleName, userOptions) {
function updateStateParams() {
const newUrl = { path: route.path, query: { ...(route.query ?? {}) } };
if (!route.path.endsWith('/summary'))
if (store.appendParams)
newUrl.query[store.searchUrl] = JSON.stringify(store.currentFilter);
if (store.navigate) {

View File

@ -149,7 +149,7 @@ const setShippedColor = (date) => {
:column-search="false"
url="Tickets"
:columns="columns"
search-url="tickets"
append-params="false"
:without-header="true"
auto-load
order="shipped DESC, id"