Exemplo n.º 1
0
        /// <summary>
        /// 修改送货单数据
        /// </summary>
        /// <param name="nId"></param>
        /// <param name="decTransportCharges">运费</param>
        /// <param name="listGoods"></param>
        /// <param name="nOpStaffId"></param>
        /// <param name="strOpStaffName"></param>
        /// <param name="strErrText"></param>
        /// <returns></returns>
        public bool UpdateDeliverBill(long nId, decimal decTransportCharges, List <DeliverBillGoods> listGoods, long nOpStaffId, string strOpStaffName, out string strErrText)
        {
            DeliverRule rule = new DeliverRule();

            return(rule.UpdateDeliverBill(nId, decTransportCharges, listGoods, nOpStaffId, strOpStaffName, out strErrText));
        }
Exemplo n.º 2
0
        /// <summary>
        /// 提交打印送货单
        /// </summary>
        /// <param name="nId"></param>
        /// <param name="nOpStaffId"></param>
        /// <param name="strOpStaffName"></param>
        /// <param name="strErrText"></param>
        /// <returns></returns>
        public bool SubmitPrintDeliverBill(long nId, long nOpStaffId, string strOpStaffName, out string strErrText)
        {
            DeliverRule rule = new DeliverRule();

            return(rule.SubmitPrintDeliverBill(nId, nOpStaffId, strOpStaffName, out strErrText));
        }
Exemplo n.º 3
0
        /// <summary>
        /// 取消出仓单
        /// </summary>
        /// <param name="nId"></param>
        /// <param name="nOpStaffId"></param>
        /// <param name="strOpStaffName"></param>
        /// <param name="strErrText"></param>
        /// <returns></returns>
        public bool CancelShipmentBill(long nId, long nOpStaffId, string strOpStaffName, out string strErrText)
        {
            DeliverRule rule = new DeliverRule();

            return(rule.CancelShipmentBill(nId, nOpStaffId, strOpStaffName, out strErrText));
        }