| | |
| | | #region 出门确认单报表 |
| | | [Route("Xs_OutDoorBill/Xs_OutDoorBillReport")] |
| | | [HttpGet] |
| | | public object Xs_OutDoorBillReport(string HBeginDate, string HEndDate, string sWhere, string user) |
| | | public object Xs_OutDoorBillReport(string HBeginDate, string HEndDate, string sWhere, string user,int HOperationType) |
| | | { |
| | | try |
| | | { |
| | |
| | | return objJsonResult; |
| | | } |
| | | |
| | | string sql = "exec h_p_Xs_OutDoorBillReport '" + HBeginDate + "','" + HEndDate + "','" + sWhere + "'"; |
| | | string sql = "exec h_p_Xs_OutDoorBillReport '" + HBeginDate + "','" + HEndDate + "','" + sWhere + "'," + HOperationType; |
| | | |
| | | ds = oCN.RunProcReturn(sql, "h_p_Xs_OutDoorBillReport"); |
| | | |