GET dz_api/Receipt/GetTotalOwing?custId={custId}

获取总欠款

Request Information

URI Parameters

NameDescriptionTypeAdditional information
custId

客户Id

integer

Required

Body Parameters

None.

Response Information

Resource Description

获取总欠款

CustOwingOrPreAmount
NameDescriptionTypeAdditional information
TtlOwing

欠款

decimal number

None.

PreAmount

预付款

decimal number

None.

Response Formats

application/json, text/json

Sample:
{
  "TtlOwing": 1.0,
  "PreAmount": 2.0
}

application/xml, text/xml

Sample:
<CustOwingOrPreAmount xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LemonAa.WebApi.Areas.Receipt.Models">
  <PreAmount>2</PreAmount>
  <TtlOwing>1</TtlOwing>
</CustOwingOrPreAmount>