Missed in previous commits.
This commit is contained in:
@@ -22204,6 +22204,27 @@
|
|||||||
</translation>
|
</translation>
|
||||||
</translations>
|
</translations>
|
||||||
</concept_node>
|
</concept_node>
|
||||||
|
<concept_node>
|
||||||
|
<name>edit</name>
|
||||||
|
<definition_loaded>false</definition_loaded>
|
||||||
|
<description></description>
|
||||||
|
<comment></comment>
|
||||||
|
<default_text></default_text>
|
||||||
|
<translations>
|
||||||
|
<translation>
|
||||||
|
<language>en-US</language>
|
||||||
|
<approved>false</approved>
|
||||||
|
</translation>
|
||||||
|
<translation>
|
||||||
|
<language>es-MX</language>
|
||||||
|
<approved>false</approved>
|
||||||
|
</translation>
|
||||||
|
<translation>
|
||||||
|
<language>fr-CA</language>
|
||||||
|
<approved>false</approved>
|
||||||
|
</translation>
|
||||||
|
</translations>
|
||||||
|
</concept_node>
|
||||||
<concept_node>
|
<concept_node>
|
||||||
<name>electronicpayment</name>
|
<name>electronicpayment</name>
|
||||||
<definition_loaded>false</definition_loaded>
|
<definition_loaded>false</definition_loaded>
|
||||||
|
|||||||
@@ -166,7 +166,11 @@ function BillEnterModalContainer({
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<Modal
|
<Modal
|
||||||
title={t("payments.labels.new")}
|
title={
|
||||||
|
!context || (context && !context.id)
|
||||||
|
? t("payments.labels.new")
|
||||||
|
: t("payments.labels.edit")
|
||||||
|
}
|
||||||
visible={visible}
|
visible={visible}
|
||||||
okText={t("general.actions.save")}
|
okText={t("general.actions.save")}
|
||||||
onOk={() => form.submit()}
|
onOk={() => form.submit()}
|
||||||
|
|||||||
@@ -1363,6 +1363,7 @@
|
|||||||
"labels": {
|
"labels": {
|
||||||
"balance": "Balance",
|
"balance": "Balance",
|
||||||
"customer": "Customer",
|
"customer": "Customer",
|
||||||
|
"edit": "Edit Payment",
|
||||||
"electronicpayment": "Use Electronic Payment Processing?",
|
"electronicpayment": "Use Electronic Payment Processing?",
|
||||||
"insurance": "Insurance",
|
"insurance": "Insurance",
|
||||||
"new": "New Payment",
|
"new": "New Payment",
|
||||||
|
|||||||
@@ -1363,6 +1363,7 @@
|
|||||||
"labels": {
|
"labels": {
|
||||||
"balance": "",
|
"balance": "",
|
||||||
"customer": "",
|
"customer": "",
|
||||||
|
"edit": "",
|
||||||
"electronicpayment": "",
|
"electronicpayment": "",
|
||||||
"insurance": "",
|
"insurance": "",
|
||||||
"new": "",
|
"new": "",
|
||||||
|
|||||||
@@ -1363,6 +1363,7 @@
|
|||||||
"labels": {
|
"labels": {
|
||||||
"balance": "",
|
"balance": "",
|
||||||
"customer": "",
|
"customer": "",
|
||||||
|
"edit": "",
|
||||||
"electronicpayment": "",
|
"electronicpayment": "",
|
||||||
"insurance": "",
|
"insurance": "",
|
||||||
"new": "",
|
"new": "",
|
||||||
|
|||||||
@@ -1,11 +1,10 @@
|
|||||||
|
import axios from "axios";
|
||||||
import gql from "graphql-tag";
|
import gql from "graphql-tag";
|
||||||
import jsreport from "jsreport-browser-client-dist";
|
import jsreport from "jsreport-browser-client-dist";
|
||||||
import client from "../utils/GraphQLClient";
|
|
||||||
import axios from "axios";
|
|
||||||
import { auth } from "../firebase/firebase.utils";
|
import { auth } from "../firebase/firebase.utils";
|
||||||
import { TemplateList } from "./TemplateConstants";
|
|
||||||
import { store } from "../redux/store";
|
|
||||||
import { setEmailOptions } from "../redux/email/email.actions";
|
import { setEmailOptions } from "../redux/email/email.actions";
|
||||||
|
import { store } from "../redux/store";
|
||||||
|
import client from "../utils/GraphQLClient";
|
||||||
const server = process.env.REACT_APP_REPORTS_SERVER_URL;
|
const server = process.env.REACT_APP_REPORTS_SERVER_URL;
|
||||||
jsreport.serverUrl = server;
|
jsreport.serverUrl = server;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user