This commit is contained in:
@@ -26,6 +26,10 @@ currently doing: MEMO -
|
||||
MemoDataList needs criteria implemented and rest of fields defined, then can do the list form here
|
||||
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:
|
||||
FIRST
|
||||
Check cases, make sure not changing the object fundamentally, many v7 objects are going to change for cases (particularly inventory related)
|
||||
|
||||
@@ -15,6 +15,12 @@ export default {
|
||||
|
||||
if (tid.type && tid.id != null) {
|
||||
switch (tid.type) {
|
||||
case ayatype.Memo:
|
||||
vm.$router.push({
|
||||
name: "memo-edit",
|
||||
params: { recordid: tid.id }
|
||||
});
|
||||
break;
|
||||
case ayatype.Customer:
|
||||
vm.$router.push({
|
||||
name: "customer-edit",
|
||||
|
||||
@@ -97,6 +97,12 @@ export default new Router({
|
||||
component: () =>
|
||||
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",
|
||||
name: "home-notifications",
|
||||
|
||||
@@ -559,38 +559,9 @@ async function initForm(vm) {
|
||||
async function fetchTranslatedText(vm) {
|
||||
await window.$gz.translation.cacheTranslations([
|
||||
"Memo",
|
||||
"MemoName",
|
||||
"MemoNotes",
|
||||
"WebAddress",
|
||||
"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",
|
||||
"MemoSubject",
|
||||
"MemoMessage",
|
||||
"MemoToID",
|
||||
"MemoCustom1",
|
||||
"MemoCustom2",
|
||||
"MemoCustom3",
|
||||
|
||||
Reference in New Issue
Block a user