Help for this page

Select Code to Download


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