mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 05:02:36 +01:00
minor fixes
This commit is contained in:
parent
402ac09c22
commit
0bd5a9db0c
@ -178,14 +178,10 @@ class ClientExport extends BaseExport
|
||||
} elseif (is_array($parts) && $parts[0] == 'contact' && array_key_exists($parts[1], $transformed_contact)) {
|
||||
$entity[$key] = $transformed_contact[$parts[1]];
|
||||
} else {
|
||||
// nlog($key);
|
||||
$entity[$key] = $this->decorator->transform($key, $client);
|
||||
// $entity[$key] = '';
|
||||
}
|
||||
}
|
||||
|
||||
// return $entity;
|
||||
|
||||
return $this->decorateAdvancedFields($client, $entity);
|
||||
}
|
||||
|
||||
@ -233,11 +229,11 @@ class ClientExport extends BaseExport
|
||||
}
|
||||
|
||||
if (in_array('client.country_id', $this->input['report_keys']) && isset($client->country_id)) {
|
||||
$entity['client.country_id'] = $client->country->full_name;
|
||||
$entity['client.country_id'] = $client->country ? $client->country->full_name : '';
|
||||
}
|
||||
|
||||
if (in_array('client.shipping_country_id', $this->input['report_keys']) && isset($client->shipping_country_id)) {
|
||||
$entity['client.shipping_country_id'] = $client->shipping_country->full_name;
|
||||
$entity['client.shipping_country_id'] = $client->shipping_country ? $client->shipping_country->full_name : '';
|
||||
}
|
||||
|
||||
return $entity;
|
||||
|
@ -276,7 +276,7 @@ class BaseController extends Controller
|
||||
/**
|
||||
* API Error response.
|
||||
*
|
||||
* @param string $message The return error message
|
||||
* @param string|array $message The return error message
|
||||
* @param int $httpErrorCode 404/401/403 etc
|
||||
* @return Response The JSON response
|
||||
* @throws BindingResolutionException
|
||||
|
@ -565,7 +565,6 @@ class CompanyGatewayController extends BaseController
|
||||
|
||||
public function importCustomers(TestCompanyGatewayRequest $request, CompanyGateway $company_gateway)
|
||||
{
|
||||
// $x = Cache::pull("throttle_polling:import_customers:{$company_gateway->company->company_key}:{$company_gateway->hashed_id}");
|
||||
|
||||
//Throttle here
|
||||
if (Cache::has("throttle_polling:import_customers:{$company_gateway->company->company_key}:{$company_gateway->hashed_id}"))
|
||||
|
@ -209,7 +209,7 @@ class BaseModel extends Model
|
||||
* Retrieve the model for a bound value.
|
||||
*
|
||||
* @param mixed $value
|
||||
* @param null $field
|
||||
* @param mixed $field
|
||||
* @return Model|null
|
||||
*/
|
||||
public function resolveRouteBinding($value, $field = null)
|
||||
|
@ -97,10 +97,10 @@
|
||||
if(liabilityShift) {
|
||||
|
||||
/* Handle liability shift. More information in 3D Secure response parameters */
|
||||
// console.log("inside liability shift")
|
||||
// console.log(liabilityShift)
|
||||
// console.log(orderID);
|
||||
// console.log(data);
|
||||
console.log("inside liability shift")
|
||||
console.log(liabilityShift)
|
||||
console.log(orderID);
|
||||
console.log(data);
|
||||
//doesn't really do anything as failure is linked in SUBMIT. We only hit here after a successful return
|
||||
//and where SCA is optional?
|
||||
|
||||
@ -175,7 +175,7 @@
|
||||
expiryField.render("#card-expiry-field-container");
|
||||
|
||||
document.getElementById("pay-now").addEventListener('click', (e) => {
|
||||
|
||||
console.log("paynow");
|
||||
document.getElementById('errors').textContent = '';
|
||||
document.getElementById('errors').hidden = true;
|
||||
|
||||
@ -189,8 +189,8 @@
|
||||
document.querySelector('#pay-now > span').classList.add('hidden');
|
||||
|
||||
cardField.submit().then((response) => {
|
||||
// console.log("then");
|
||||
// console.log(response);
|
||||
console.log("then");
|
||||
console.log(response);
|
||||
|
||||
}).catch((error) => {
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user