定制 thelogicstudio/qbxml 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

thelogicstudio/qbxml

最新稳定版本:v1.0.3

Composer 安装命令:

composer require thelogicstudio/qbxml

包简介

A PHP library to help with parsing and generating QBXML for Quickbooks Desktop

README 文档

README

This is a simple set of classes to assist in parsing and creating QBXML for communicating with Quickbooks Desktop (probably through the Quickbooks Web Connector). A lot of this is based on Keith Palmer's prior work. My take on it lets you integrate your own application logic - this library just deals with the QBXML parsing. This also adds namespacing, method chaining, and fixes a number of bugs and inconsistencies in Keith's work.

Usage

Parsing

Reading a QBXML response might look something like this:

$doc = (new \TheLogicStudio\QBXML\XML\Parser($response))->parse($errnum, $errmsg);
$root = $doc->getRoot();
$out = [];
foreach($root->getChildAt('QBXML QBXMLMsgsRs')->children() as $child) {
    if(str_ends_with($child->name(), 'QueryRs')) {
        /** @var Models\GenericObject $class */
        $class = '\\TheLogicStudio\\QBXML\\Models\\'.substr($child->name(), 0, -7);
        foreach($child->children() as $node) {
            $out[] = $class::fromXML($node);
        }
    }
}

Creating

And creating a request to send to Quickbooks might look like this:

$qbxml = (new \TheLogicStudio\QBXML\Models\Account())
    ->setName('My Account')
    ->setAccountNumber(99)
    ->asQBXML('AccountAddRq');

Contributing

This code is far from perfect - if you'd like to help make it better, feel free to send a pull request on through. You can find me on 𝕏 as @IanTLS if you've got questions I guess.

统计信息

  • 总下载量: 27
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: EPL-1.0
  • 更新时间: 2023-10-03