Shorten wording yes we already know its an invoice/quote other wording touchups

This commit is contained in:
johnnyq
2022-12-17 14:14:43 -05:00
parent ac4d7b2d62
commit 0e41906af0
5 changed files with 13 additions and 14 deletions

View File

@@ -180,11 +180,11 @@ if(isset($_GET['invoice_id'], $_GET['url_key'])){
<div class="col-sm-4"> <div class="col-sm-4">
<table class="table"> <table class="table">
<tr> <tr>
<td>Invoice Date</td> <td>Date</td>
<td class="text-right"><?php echo $invoice_date; ?></td> <td class="text-right"><?php echo $invoice_date; ?></td>
</tr> </tr>
<tr> <tr>
<td>Due Date</td> <td>Due</td>
<td class="text-right"><div class="<?php echo $invoice_color; ?>"><?php echo $invoice_due; ?></div></td> <td class="text-right"><div class="<?php echo $invoice_color; ?>"><?php echo $invoice_due; ?></div></td>
</tr> </tr>
</table> </table>
@@ -377,7 +377,7 @@ var docDefinition = {
[ [
{}, {},
{ {
text: 'Invoice Date', text: 'Date',
style: 'invoiceDateTitle' style: 'invoiceDateTitle'
}, },
{ {
@@ -388,7 +388,7 @@ var docDefinition = {
[ [
{}, {},
{ {
text: 'Due Date', text: 'Due',
style: 'invoiceDateTitle' style: 'invoiceDateTitle'
}, },
{ {

View File

@@ -141,7 +141,7 @@ if(isset($_GET['quote_id'], $_GET['url_key'])){
<div class="col-sm-4"> <div class="col-sm-4">
<table class="table"> <table class="table">
<tr> <tr>
<td>Quote Date</td> <td>Date</td>
<td class="text-right"><?php echo $quote_date; ?></td> <td class="text-right"><?php echo $quote_date; ?></td>
</tr> </tr>
</table> </table>
@@ -332,7 +332,7 @@ var docDefinition = {
[ [
{}, {},
{ {
text: 'Quote Date', text: 'Date',
style: 'invoiceDateTitle' style: 'invoiceDateTitle'
}, },
{ {

View File

@@ -220,11 +220,11 @@ if(isset($_GET['invoice_id'])){
<div class="col-sm-4"> <div class="col-sm-4">
<table class="table"> <table class="table">
<tr> <tr>
<td>Invoice Date</td> <td>Date</td>
<td class="text-right"><?php echo $invoice_date; ?></td> <td class="text-right"><?php echo $invoice_date; ?></td>
</tr> </tr>
<tr> <tr>
<td>Due Date</td> <td>Due</td>
<td class="text-right"><?php echo $invoice_due; ?></td> <td class="text-right"><?php echo $invoice_due; ?></td>
</tr> </tr>
</table> </table>
@@ -601,7 +601,7 @@ var docDefinition = {
[ [
{}, {},
{ {
text: 'Invoice Date', text: 'Date',
style: 'invoiceDateTitle' style: 'invoiceDateTitle'
}, },
{ {
@@ -612,7 +612,7 @@ var docDefinition = {
[ [
{}, {},
{ {
text: 'Due Date', text: 'Due',
style: 'invoiceDateTitle' style: 'invoiceDateTitle'
}, },
{ {

View File

@@ -188,7 +188,7 @@ if(isset($_GET['quote_id'])){
<div class="col-sm-4"> <div class="col-sm-4">
<table class="table"> <table class="table">
<tr> <tr>
<td>Quote Date</td> <td>Date</td>
<td class="text-right"><?php echo $quote_date; ?></td> <td class="text-right"><?php echo $quote_date; ?></td>
</tr> </tr>
</table> </table>
@@ -506,7 +506,7 @@ var docDefinition = {
[ [
{}, {},
{ {
text: 'Quote Date', text: 'Date',
style: 'invoiceDateTitle' style: 'invoiceDateTitle'
}, },
{ {

View File

@@ -21,7 +21,7 @@ if(isset($_GET['recurring_id'])){
$recurring_scope = htmlentities($row['recurring_scope']); $recurring_scope = htmlentities($row['recurring_scope']);
$recurring_frequency = htmlentities($row['recurring_frequency']); $recurring_frequency = htmlentities($row['recurring_frequency']);
$recurring_status = htmlentities($row['recurring_status']); $recurring_status = htmlentities($row['recurring_status']);
$recurring_created_at = $row['recurring_created_at']; $recurring_created_at = date('Y-m-d',strtotime($row['recurring_created_at']));
$recurring_last_sent = $row['recurring_last_sent']; $recurring_last_sent = $row['recurring_last_sent'];
if($recurring_last_sent == 0){ if($recurring_last_sent == 0){
$recurring_last_sent = '-'; $recurring_last_sent = '-';
@@ -30,7 +30,6 @@ if(isset($_GET['recurring_id'])){
$recurring_amount = floatval($row['recurring_amount']); $recurring_amount = floatval($row['recurring_amount']);
$recurring_currency_code = htmlentities($row['recurring_currency_code']); $recurring_currency_code = htmlentities($row['recurring_currency_code']);
$recurring_note = htmlentities($row['recurring_note']); $recurring_note = htmlentities($row['recurring_note']);
$recurring_created_at = $row['recurring_created_at'];
$category_id = $row['recurring_category_id']; $category_id = $row['recurring_category_id'];
$client_id = $row['client_id']; $client_id = $row['client_id'];
$client_name = htmlentities($row['client_name']); $client_name = htmlentities($row['client_name']);