【问题标题】:Python quickbooks categoriesPython 快速手册类别
【发布时间】:2020-04-03 10:12:15
【问题描述】:

我正在尝试使用 python-quickbooks 包创建 QuickBooks 类别。

但是,我似乎在包裹中找不到这个对象。我该怎么做?

【问题讨论】:

    标签: python quickbooks quickbooks-online


    【解决方案1】:

    我推荐the fo_qbo repo。你会使用qbs.create("Account", {your_category_blob})

    【讨论】:

      【解决方案2】:

      documentation about Category 看来,您需要使用带有特定负载的Item entity,例如:

      {
        "SubItem": true, 
        "Type": "Category", 
        "Name": "Cedar", 
        "ParentRef": {
          "name": "Trees", 
          "value": "29"
        }
      }
      

      this page上查看更多详情。

      【讨论】:

        猜你喜欢
        • 2014-05-27
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        相关资源
        最近更新 更多