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
|
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)
|
||||||
|
|||||||
@@ -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",
|
||||||
|
|||||||
@@ -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",
|
||||||
|
|||||||
@@ -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",
|
||||||
|
|||||||
Reference in New Issue
Block a user