POST jxc_api/RecalCost/SearchRecalDetails

Request Information

URI Parameters

None.

Body Parameters

InventoryRecalDetailSearchCondition
NameDescriptionTypeAdditional information
LogBatchId

string

None.

ChainId

integer

None.

OnlyShowAbnormal

boolean

None.

Keywords

string

None.

PageIndex

integer

None.

PageSize

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "LogBatchId": "sample string 1",
  "ChainId": 2,
  "OnlyShowAbnormal": true,
  "Keywords": "sample string 4",
  "PageIndex": 5,
  "PageSize": 6
}

application/xml, text/xml

Sample:
<InventoryRecalDetailSearchCondition xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LemonScm.Model.RecalInventory">
  <_x003C_ChainId_x003E_k__BackingField>2</_x003C_ChainId_x003E_k__BackingField>
  <_x003C_Keywords_x003E_k__BackingField>sample string 4</_x003C_Keywords_x003E_k__BackingField>
  <_x003C_LogBatchId_x003E_k__BackingField>sample string 1</_x003C_LogBatchId_x003E_k__BackingField>
  <_x003C_OnlyShowAbnormal_x003E_k__BackingField>true</_x003C_OnlyShowAbnormal_x003E_k__BackingField>
  <_x003C_PageIndex_x003E_k__BackingField>5</_x003C_PageIndex_x003E_k__BackingField>
  <_x003C_PageSize_x003E_k__BackingField>6</_x003C_PageSize_x003E_k__BackingField>
</InventoryRecalDetailSearchCondition>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

NewApiPagedListOfInventoryRecalDetailDbModel
NameDescriptionTypeAdditional information
Items

Collection of InventoryRecalDetailDbModel

None.

SumModel

InventoryRecalDetailDbModel

None.

PageIndex

integer

None.

PageSize

integer

None.

Total

integer

None.

UsePager

boolean

None.

CategoriesFounded

Collection of integer

None.

RDocumentStartDate

string

None.

RDocumentEndDate

string

None.

RDeliveryStartDate

string

None.

RDeliveryEndDate

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Items": [
    {
      "gLogBatchId": {},
      "ChainId": 2,
      "ProdId": 3,
      "WhId": 4,
      "InvRelId": {},
      "IsAbnormal": true,
      "BillItemId": 6,
      "ItemDirection": 1001,
      "IsLoop": true,
      "IsVoucher": true,
      "IsTodaySellReturn": true,
      "FromBillNo": "sample string 10",
      "Order": 11,
      "Qty": 12.0,
      "Cost": 13.0,
      "Qty2": 14.0,
      "Cost2": 15.0,
      "CalcProcedure": "sample string 16",
      "CheckedDate": "2025-04-04 21:01:26",
      "CalQty": 19.0,
      "CalCost": 20.0,
      "BillNo": "sample string 21",
      "BillNoOrder": "sample string 21",
      "BillTime": "2025-04-04 21:01:26",
      "InBillsInfo": "sample string 23",
      "OutBillsInfo": "sample string 24",
      "RestInfo": "sample string 25",
      "ProccesureInfo": "sample string 26",
      "StrType": "sample string 27",
      "LogBatchId": "00000000000000000000000000000000"
    },
    {
      "gLogBatchId": {},
      "ChainId": 2,
      "ProdId": 3,
      "WhId": 4,
      "InvRelId": {},
      "IsAbnormal": true,
      "BillItemId": 6,
      "ItemDirection": 1001,
      "IsLoop": true,
      "IsVoucher": true,
      "IsTodaySellReturn": true,
      "FromBillNo": "sample string 10",
      "Order": 11,
      "Qty": 12.0,
      "Cost": 13.0,
      "Qty2": 14.0,
      "Cost2": 15.0,
      "CalcProcedure": "sample string 16",
      "CheckedDate": "2025-04-04 21:01:26",
      "CalQty": 19.0,
      "CalCost": 20.0,
      "BillNo": "sample string 21",
      "BillNoOrder": "sample string 21",
      "BillTime": "2025-04-04 21:01:26",
      "InBillsInfo": "sample string 23",
      "OutBillsInfo": "sample string 24",
      "RestInfo": "sample string 25",
      "ProccesureInfo": "sample string 26",
      "StrType": "sample string 27",
      "LogBatchId": "00000000000000000000000000000000"
    }
  ],
  "SumModel": {
    "gLogBatchId": {},
    "ChainId": 2,
    "ProdId": 3,
    "WhId": 4,
    "InvRelId": {},
    "IsAbnormal": true,
    "BillItemId": 6,
    "ItemDirection": 1001,
    "IsLoop": true,
    "IsVoucher": true,
    "IsTodaySellReturn": true,
    "FromBillNo": "sample string 10",
    "Order": 11,
    "Qty": 12.0,
    "Cost": 13.0,
    "Qty2": 14.0,
    "Cost2": 15.0,
    "CalcProcedure": "sample string 16",
    "CheckedDate": "2025-04-04 21:01:26",
    "CalQty": 19.0,
    "CalCost": 20.0,
    "BillNo": "sample string 21",
    "BillNoOrder": "sample string 21",
    "BillTime": "2025-04-04 21:01:26",
    "InBillsInfo": "sample string 23",
    "OutBillsInfo": "sample string 24",
    "RestInfo": "sample string 25",
    "ProccesureInfo": "sample string 26",
    "StrType": "sample string 27",
    "LogBatchId": "00000000000000000000000000000000"
  },
  "PageIndex": 1,
  "PageSize": 2,
  "Total": 3,
  "UsePager": true,
  "CategoriesFounded": [
    1,
    2
  ],
  "RDocumentStartDate": "sample string 5",
  "RDocumentEndDate": "sample string 6",
  "RDeliveryStartDate": "sample string 7",
  "RDeliveryEndDate": "sample string 8"
}

application/xml, text/xml

Sample:
<NewApiPagedListOfInventoryRecalDetailDbModelDvEfxPOE xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LemonScm.Model.NewApi">
  <_x003C_RDeliveryEndDate_x003E_k__BackingField xmlns="http://schemas.datacontract.org/2004/07/LemonScm.Model.Abstraction.CommonData">sample string 8</_x003C_RDeliveryEndDate_x003E_k__BackingField>
  <_x003C_RDeliveryStartDate_x003E_k__BackingField xmlns="http://schemas.datacontract.org/2004/07/LemonScm.Model.Abstraction.CommonData">sample string 7</_x003C_RDeliveryStartDate_x003E_k__BackingField>
  <_x003C_RDocumentEndDate_x003E_k__BackingField xmlns="http://schemas.datacontract.org/2004/07/LemonScm.Model.Abstraction.CommonData">sample string 6</_x003C_RDocumentEndDate_x003E_k__BackingField>
  <_x003C_RDocumentStartDate_x003E_k__BackingField xmlns="http://schemas.datacontract.org/2004/07/LemonScm.Model.Abstraction.CommonData">sample string 5</_x003C_RDocumentStartDate_x003E_k__BackingField>
  <_x003C_CategoriesFounded_x003E_k__BackingField xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:int>1</d2p1:int>
    <d2p1:int>2</d2p1:int>
  </_x003C_CategoriesFounded_x003E_k__BackingField>
  <_x003C_Items_x003E_k__BackingField xmlns:d2p1="http://schemas.datacontract.org/2004/07/LemonScm.Model.RecalInventory">
    <d2p1:InventoryRecalDetailDbModel>
      <d2p1:AsId>1</d2p1:AsId>
      <d2p1:BType>17</d2p1:BType>
      <d2p1:BillItemId>6</d2p1:BillItemId>
      <d2p1:BillNo>sample string 21</d2p1:BillNo>
      <d2p1:BillTime>2025-04-04T21:01:26.7684108+08:00</d2p1:BillTime>
      <d2p1:CalCost>20</d2p1:CalCost>
      <d2p1:CalQty>19</d2p1:CalQty>
      <d2p1:CalcProcedure>sample string 16</d2p1:CalcProcedure>
      <d2p1:ChainId>2</d2p1:ChainId>
      <d2p1:CheckedDate>2025-04-04T21:01:26.7684108+08:00</d2p1:CheckedDate>
      <d2p1:Cost>13</d2p1:Cost>
      <d2p1:Cost2>15</d2p1:Cost2>
      <d2p1:FromBillNo>sample string 10</d2p1:FromBillNo>
      <d2p1:InBillsInfo>sample string 23</d2p1:InBillsInfo>
      <d2p1:InvRelId xmlns:d4p1="http://schemas.datacontract.org/2004/07/LemonScm.Inventory.Abstraction" />
      <d2p1:IsAbnormal>true</d2p1:IsAbnormal>
      <d2p1:IsLoop>true</d2p1:IsLoop>
      <d2p1:IsTodaySellReturn>true</d2p1:IsTodaySellReturn>
      <d2p1:IsVoucher>true</d2p1:IsVoucher>
      <d2p1:ItemDirection>InItem</d2p1:ItemDirection>
      <d2p1:Order>11</d2p1:Order>
      <d2p1:OutBillsInfo>sample string 24</d2p1:OutBillsInfo>
      <d2p1:ProccesureInfo>sample string 26</d2p1:ProccesureInfo>
      <d2p1:ProdId>3</d2p1:ProdId>
      <d2p1:Qty>12</d2p1:Qty>
      <d2p1:Qty2>14</d2p1:Qty2>
      <d2p1:RestInfo>sample string 25</d2p1:RestInfo>
      <d2p1:StrType>sample string 27</d2p1:StrType>
      <d2p1:WhId>4</d2p1:WhId>
      <d2p1:gLogBatchId xmlns:d4p1="http://schemas.datacontract.org/2004/07/LemonScm.Inventory.Abstraction" />
    </d2p1:InventoryRecalDetailDbModel>
    <d2p1:InventoryRecalDetailDbModel>
      <d2p1:AsId>1</d2p1:AsId>
      <d2p1:BType>17</d2p1:BType>
      <d2p1:BillItemId>6</d2p1:BillItemId>
      <d2p1:BillNo>sample string 21</d2p1:BillNo>
      <d2p1:BillTime>2025-04-04T21:01:26.7684108+08:00</d2p1:BillTime>
      <d2p1:CalCost>20</d2p1:CalCost>
      <d2p1:CalQty>19</d2p1:CalQty>
      <d2p1:CalcProcedure>sample string 16</d2p1:CalcProcedure>
      <d2p1:ChainId>2</d2p1:ChainId>
      <d2p1:CheckedDate>2025-04-04T21:01:26.7684108+08:00</d2p1:CheckedDate>
      <d2p1:Cost>13</d2p1:Cost>
      <d2p1:Cost2>15</d2p1:Cost2>
      <d2p1:FromBillNo>sample string 10</d2p1:FromBillNo>
      <d2p1:InBillsInfo>sample string 23</d2p1:InBillsInfo>
      <d2p1:InvRelId xmlns:d4p1="http://schemas.datacontract.org/2004/07/LemonScm.Inventory.Abstraction" />
      <d2p1:IsAbnormal>true</d2p1:IsAbnormal>
      <d2p1:IsLoop>true</d2p1:IsLoop>
      <d2p1:IsTodaySellReturn>true</d2p1:IsTodaySellReturn>
      <d2p1:IsVoucher>true</d2p1:IsVoucher>
      <d2p1:ItemDirection>InItem</d2p1:ItemDirection>
      <d2p1:Order>11</d2p1:Order>
      <d2p1:OutBillsInfo>sample string 24</d2p1:OutBillsInfo>
      <d2p1:ProccesureInfo>sample string 26</d2p1:ProccesureInfo>
      <d2p1:ProdId>3</d2p1:ProdId>
      <d2p1:Qty>12</d2p1:Qty>
      <d2p1:Qty2>14</d2p1:Qty2>
      <d2p1:RestInfo>sample string 25</d2p1:RestInfo>
      <d2p1:StrType>sample string 27</d2p1:StrType>
      <d2p1:WhId>4</d2p1:WhId>
      <d2p1:gLogBatchId xmlns:d4p1="http://schemas.datacontract.org/2004/07/LemonScm.Inventory.Abstraction" />
    </d2p1:InventoryRecalDetailDbModel>
  </_x003C_Items_x003E_k__BackingField>
  <_x003C_PageIndex_x003E_k__BackingField>1</_x003C_PageIndex_x003E_k__BackingField>
  <_x003C_PageSize_x003E_k__BackingField>2</_x003C_PageSize_x003E_k__BackingField>
  <_x003C_SumModel_x003E_k__BackingField xmlns:d2p1="http://schemas.datacontract.org/2004/07/LemonScm.Model.RecalInventory">
    <d2p1:AsId>1</d2p1:AsId>
    <d2p1:BType>17</d2p1:BType>
    <d2p1:BillItemId>6</d2p1:BillItemId>
    <d2p1:BillNo>sample string 21</d2p1:BillNo>
    <d2p1:BillTime>2025-04-04T21:01:26.7684108+08:00</d2p1:BillTime>
    <d2p1:CalCost>20</d2p1:CalCost>
    <d2p1:CalQty>19</d2p1:CalQty>
    <d2p1:CalcProcedure>sample string 16</d2p1:CalcProcedure>
    <d2p1:ChainId>2</d2p1:ChainId>
    <d2p1:CheckedDate>2025-04-04T21:01:26.7684108+08:00</d2p1:CheckedDate>
    <d2p1:Cost>13</d2p1:Cost>
    <d2p1:Cost2>15</d2p1:Cost2>
    <d2p1:FromBillNo>sample string 10</d2p1:FromBillNo>
    <d2p1:InBillsInfo>sample string 23</d2p1:InBillsInfo>
    <d2p1:InvRelId xmlns:d3p1="http://schemas.datacontract.org/2004/07/LemonScm.Inventory.Abstraction" />
    <d2p1:IsAbnormal>true</d2p1:IsAbnormal>
    <d2p1:IsLoop>true</d2p1:IsLoop>
    <d2p1:IsTodaySellReturn>true</d2p1:IsTodaySellReturn>
    <d2p1:IsVoucher>true</d2p1:IsVoucher>
    <d2p1:ItemDirection>InItem</d2p1:ItemDirection>
    <d2p1:Order>11</d2p1:Order>
    <d2p1:OutBillsInfo>sample string 24</d2p1:OutBillsInfo>
    <d2p1:ProccesureInfo>sample string 26</d2p1:ProccesureInfo>
    <d2p1:ProdId>3</d2p1:ProdId>
    <d2p1:Qty>12</d2p1:Qty>
    <d2p1:Qty2>14</d2p1:Qty2>
    <d2p1:RestInfo>sample string 25</d2p1:RestInfo>
    <d2p1:StrType>sample string 27</d2p1:StrType>
    <d2p1:WhId>4</d2p1:WhId>
    <d2p1:gLogBatchId xmlns:d3p1="http://schemas.datacontract.org/2004/07/LemonScm.Inventory.Abstraction" />
  </_x003C_SumModel_x003E_k__BackingField>
  <_x003C_Total_x003E_k__BackingField>3</_x003C_Total_x003E_k__BackingField>
  <_x003C_UsePager_x003E_k__BackingField>true</_x003C_UsePager_x003E_k__BackingField>
</NewApiPagedListOfInventoryRecalDetailDbModelDvEfxPOE>