- or download this
QBXML(
QBXMLMsgsRq( {onError => "stopOnError"},
inner()
));
- or download this
augment 'as_xml' => sub {
my ($self, $name)=@_;
...
VendorAdd(
Name($name)));
};
- or download this
<?xml version="1.0" encoding="utf-8"?>
<?qbxml version="10.0"?>
...
</VendorAddRq>
</QBXMLMsgsRq>
</QBXML>
- or download this
<?xml version="1.0" encoding="utf-8"?>
<?qbxml version="10.0"?>
...
</VendorAddRq>
</QBXMLMsgsRq>
</QBXML>
- or download this
{ my $VendorAddRq = XML::Writer::Nest->new(tag => 'VendorAddRq');
...
{ my $Name = $VendorAdd->data(Name => $name) }
}
}
- or download this
{ my $VendorAdd = $VendorAddRq->nest('VendorAdd');
...
{ my $IsActive = $row->{active} ? $VendorAdd->data(IsActive => 1)
+ : 0 }
}
- or download this
VendorAddRq(
VendorAdd(
...
maybeRenderIsActive($row)
)
)
- or download this
augment 'as_xml' => sub {
...
$self->logic_engine->maybeRenderIsActive(@_) # just give
+ it the whole indata
)
)
- or download this
package XML::Quickbooks::LogicEngine;
...
}
1;