diff --git a/ayanova/devdocs/todo.txt b/ayanova/devdocs/todo.txt
index bd0008b3..fe45620d 100644
--- a/ayanova/devdocs/todo.txt
+++ b/ayanova/devdocs/todo.txt
@@ -6,6 +6,16 @@
MISC ITEMS THAT CAME UP
+
+todo: datatable numbers
+ currency and possibly other numbers should center justify in their columns or left or whatever it takes to not look so weird but still be comparable / lined up or whatever
+ OR
+ Maybe it's the column header itself that should be moved
+
+
+
+
+
todo: NEXT DEPLOY TO DEVOPS attach a photo from phone, no error just does nothing
worked here locally latest build
retest on server after next deploy
diff --git a/ayanova/src/api/open-object-handler.js b/ayanova/src/api/open-object-handler.js
index 9c135e64..ecdf77bb 100644
--- a/ayanova/src/api/open-object-handler.js
+++ b/ayanova/src/api/open-object-handler.js
@@ -195,6 +195,18 @@ export default {
params: { recordid: tid.id }
});
break;
+ case ayatype.ServiceRate:
+ vm.$router.push({
+ name: "service-rate-edit",
+ params: { recordid: tid.id }
+ });
+ break;
+ case ayatype.TravelRate:
+ vm.$router.push({
+ name: "travel-rate-edit",
+ params: { recordid: tid.id }
+ });
+ break;
default:
window.$gz.eventBus.$emit(
diff --git a/ayanova/src/api/translation.js b/ayanova/src/api/translation.js
index f8dd0d4d..4bd5c33d 100644
--- a/ayanova/src/api/translation.js
+++ b/ayanova/src/api/translation.js
@@ -168,7 +168,8 @@ export default {
"Inventory",
"Accounting",
"TaxCodeList",
- "RateList",
+ "ServiceRateList",
+ "TravelRateList",
"Administration",
"Operations",
"Attachments",
diff --git a/ayanova/src/views/acc-service-rate.vue b/ayanova/src/views/acc-service-rate.vue
new file mode 100644
index 00000000..ac2f1d82
--- /dev/null
+++ b/ayanova/src/views/acc-service-rate.vue
@@ -0,0 +1,720 @@
+
+
+
+