This commit is contained in:
2020-12-14 19:39:55 +00:00
parent f7e301d586
commit 98e83a54e1
4 changed files with 19 additions and 32 deletions

View File

@@ -26,6 +26,10 @@ currently doing: MEMO -
MemoDataList needs criteria implemented and rest of fields defined, then can do the list form here MemoDataList needs criteria implemented and rest of fields defined, then can do the list form here
Memo form field definitions Memo form field definitions
search results should not pull up other's memo's
exclude from searching? Not searchable??
Or post process??
EACH OBJECT DEV CYCLE: EACH OBJECT DEV CYCLE:
FIRST FIRST
Check cases, make sure not changing the object fundamentally, many v7 objects are going to change for cases (particularly inventory related) Check cases, make sure not changing the object fundamentally, many v7 objects are going to change for cases (particularly inventory related)

View File

@@ -15,6 +15,12 @@ export default {
if (tid.type && tid.id != null) { if (tid.type && tid.id != null) {
switch (tid.type) { switch (tid.type) {
case ayatype.Memo:
vm.$router.push({
name: "memo-edit",
params: { recordid: tid.id }
});
break;
case ayatype.Customer: case ayatype.Customer:
vm.$router.push({ vm.$router.push({
name: "customer-edit", name: "customer-edit",

View File

@@ -97,6 +97,12 @@ export default new Router({
component: () => component: () =>
import(/* webpackChunkName: "ay-common" */ "./views/home-memos.vue") import(/* webpackChunkName: "ay-common" */ "./views/home-memos.vue")
}, },
{
path: "/home-memos/:recordid",
name: "memo-edit",
component: () =>
import(/* webpackChunkName: "vend" */ "./views/home-memo.vue")
},
{ {
path: "/home-notifications", path: "/home-notifications",
name: "home-notifications", name: "home-notifications",

View File

@@ -559,38 +559,9 @@ async function initForm(vm) {
async function fetchTranslatedText(vm) { async function fetchTranslatedText(vm) {
await window.$gz.translation.cacheTranslations([ await window.$gz.translation.cacheTranslations([
"Memo", "Memo",
"MemoName", "MemoSubject",
"MemoNotes", "MemoMessage",
"WebAddress", "MemoToID",
"MemoPopUpNotes",
"MemoBillHeadOffice",
"HeadOffice",
"MemoTechNotes",
"MemoAccountNumber",
"MemoContact",
"MemoContactNotes",
"MemoPhone1",
"MemoPhone2",
"MemoPhone3",
"MemoPhone4",
"MemoPhone5",
"MemoEmail",
"AddressTypePhysical",
"AddressTypePostal",
"AddressCopyToPostal",
"AddressCopyToPhysical",
"Address",
"AddressPostalDeliveryAddress",
"AddressPostalCity",
"AddressPostalStateProv",
"AddressPostalCountry",
"AddressPostalPostal",
"AddressDeliveryAddress",
"AddressCity",
"AddressStateProv",
"AddressCountry",
"AddressLatitude",
"AddressLongitude",
"MemoCustom1", "MemoCustom1",
"MemoCustom2", "MemoCustom2",
"MemoCustom3", "MemoCustom3",