示例#1
0
文件: PO.cs 项目: marioricci/erp-luma
		public string LastTransactionNo()
		{
			try
			{
				string stRetValue = String.Empty;
				
				ERPConfig clsERPConfig = new ERPConfig(base.Connection, base.Transaction);
				stRetValue = clsERPConfig.get_LastPONo();

				return stRetValue;
			}
			catch (Exception ex)
			{
				throw base.ThrowException(ex);
			}	
		}