This commit is contained in:
@@ -238,7 +238,7 @@ namespace AyaNovaQBI
|
||||
{
|
||||
if (i.Active)
|
||||
{
|
||||
bool bLinked = util.QBIntegration.Items.Any(z => z.AType == _Type && z.Id == i.Id);
|
||||
bool bLinked = util.QBIntegration.Items.Any(z => z.AType == _Type && z.ObjectId == i.Id);
|
||||
if (DisplayRow(bLinked))
|
||||
{
|
||||
var qbItem = util.QBIntegration.Items.FirstOrDefault(z => z.AType == _Type && z.Id == i.Id);
|
||||
@@ -269,7 +269,7 @@ namespace AyaNovaQBI
|
||||
{
|
||||
if (i.Active)
|
||||
{
|
||||
bool bLinked = util.QBIntegration.Items.Any(z => z.AType == _Type && z.Id == i.Id);
|
||||
bool bLinked = util.QBIntegration.Items.Any(z => z.AType == _Type && z.ObjectId == i.Id);
|
||||
if (DisplayRow(bLinked))
|
||||
{
|
||||
var qbItem = util.QBIntegration.Items.FirstOrDefault(z => z.AType == _Type && z.Id == i.Id);
|
||||
@@ -308,7 +308,7 @@ namespace AyaNovaQBI
|
||||
//After discussion we decided to not us any rate unit charge description
|
||||
//so leaving the code in but defaulted to guid.empty for now.
|
||||
|
||||
bool bLinked = util.QBIntegration.Items.Any(z => z.AType == _Type && z.Id == i.Id);
|
||||
bool bLinked = util.QBIntegration.Items.Any(z => z.AType == _Type && z.ObjectId == i.Id);
|
||||
if (DisplayRow(bLinked))
|
||||
{
|
||||
var qbItem = util.QBIntegration.Items.FirstOrDefault(z => z.AType == _Type && z.Id == i.Id);
|
||||
@@ -351,7 +351,7 @@ namespace AyaNovaQBI
|
||||
//After discussion we decided to not us any rate unit charge description
|
||||
//so leaving the code in but defaulted to guid.empty for now.
|
||||
|
||||
bool bLinked = util.QBIntegration.Items.Any(z => z.AType == _Type && z.Id == i.Id);
|
||||
bool bLinked = util.QBIntegration.Items.Any(z => z.AType == _Type && z.ObjectId == i.Id);
|
||||
if (DisplayRow(bLinked))
|
||||
{
|
||||
var qbItem = util.QBIntegration.Items.FirstOrDefault(z => z.AType == _Type && z.Id == i.Id);
|
||||
@@ -387,7 +387,7 @@ namespace AyaNovaQBI
|
||||
if (i.Active)
|
||||
{
|
||||
|
||||
bool bLinked = util.QBIntegration.Items.Any(z => z.AType == _Type && z.Id == i.Id);
|
||||
bool bLinked = util.QBIntegration.Items.Any(z => z.AType == _Type && z.ObjectId == i.Id);
|
||||
if (DisplayRow(bLinked))
|
||||
{
|
||||
var qbItem = util.QBIntegration.Items.FirstOrDefault(z => z.AType == _Type && z.Id == i.Id);
|
||||
|
||||
Reference in New Issue
Block a user