public string CreatePhieuDK() { string PhieuBanHang, Temp_BH, Number_PC; PhieuBanHang = "DK" + "_000001"; //Trả về số phiếu thu Temp_BH = ""; //Số phiếu tạm Number_PC = ""; // Number phiếu thu Temp_BH = GetMaPhieu(); if (Temp_BH != "") { Number_PC = Temp_BH.Substring(Temp_BH.Length - 6, 6); Number_PC = (long.Parse(Number_PC.ToString()) + 1).ToString(); PhieuBanHang = Number_PC; for (int i = 0; i < 6 - Number_PC.Length; i++) { PhieuBanHang = "0" + PhieuBanHang; } PhieuBanHang = Temp_BH.Substring(0, Temp_BH.Length - 6) + PhieuBanHang; } return(PhieuBanHang); }
public string CreateDonBanHang() { string PhieuNhapHang, Temp_BH, Number_PC; PhieuNhapHang = "IB_" + objuser.UserName + "_000001"; //Trả về số phiếu thu Temp_BH = ""; //Số phiếu tạm Number_PC = ""; // Number phiếu thu string _stockout_PC = new INBOUND_DELIVERYController().INBOUND_DELIVERY_Search(objuser.UserName); Temp_BH = _stockout_PC; if (Temp_BH != "") { Number_PC = Temp_BH.Substring(Temp_BH.Length - 6, 6); Number_PC = (long.Parse(Number_PC.ToString()) + 1).ToString(); PhieuNhapHang = Number_PC; for (int i = 0; i < 6 - Number_PC.Length; i++) { PhieuNhapHang = "0" + PhieuNhapHang; } PhieuNhapHang = Temp_BH.Substring(0, Temp_BH.Length - 6) + PhieuNhapHang; } return(PhieuNhapHang); }