Beispiel #1
0
 /// <summary>
 /// 删除开票记录数据
 /// </summary>
 /// <param name="nId"></param>
 /// <param name="nOpStaffId"></param>
 /// <param name="strOpStaffName"></param>
 /// <param name="strErrText"></param>
 /// <returns></returns>
 public bool DeleteCustomerTransportChargesSettlement(long nId, long nOpStaffId, string strOpStaffName, out string strErrText)
 {
     SettlementRule rule = new SettlementRule();
     return rule.DeleteCustomerTransportChargesSettlement(nId, nOpStaffId, strOpStaffName, out strErrText);
 }
Beispiel #2
0
 /// <summary>
 /// 新增发票
 /// </summary>
 /// <param name="data"></param>
 /// <param name="listDetail"></param>
 /// <param name="nOpStaffId"></param>
 /// <param name="strOpStaffName"></param>
 /// <param name="strErrText"></param>
 /// <returns></returns>
 public long InsertCustomerTransportChargesSettlement(CustomerTransportChargesSettlement data, List<CustomerTransportChargesSettlementDetail> listDetail, long nOpStaffId, string strOpStaffName, out string strErrText)
 {
     SettlementRule rule = new SettlementRule();
     return rule.InsertCustomerTransportChargesSettlement(data, listDetail, nOpStaffId, strOpStaffName, out strErrText);
 }