You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
704 B
32 lines
704 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
using PDAForm.PDABiz;
|
|
|
|
namespace PDAForm.Bill.Check
|
|
{
|
|
public partial class frmCheckNew : PDAForm.Bill.frmBillNewBase
|
|
{
|
|
public frmCheckNew()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void frmCheckNew_Load(object sender, EventArgs e)
|
|
{
|
|
|
|
}
|
|
|
|
public override string BillNew()
|
|
{
|
|
string Memo = this.txtMemo.Text.Trim();
|
|
string Pars = Memo + ";" + UserInfo.UserName + ";" + StockAreaCode;
|
|
return Pars;
|
|
}
|
|
}
|
|
}
|
|
|
|
|