예제 #1
0
 public PayReceiptForm getSellRefundBillForm()
 {
     if (sellRefundBillForm == null || sellRefundBillForm.IsDisposed)
     {
         sellRefundBillForm = new PayReceiptForm(PayReceipt.PayReceiptTypeConf_SellRefund, ProductStainlessCirculationDao.getInstance());
         appendEvent(sellRefundBillForm);
     }
     return(sellRefundBillForm);
 }
예제 #2
0
 public PayReceiptForm getOtherReceiptBillForm()
 {
     if (otherReceiptBillForm == null || otherReceiptBillForm.IsDisposed)
     {
         otherReceiptBillForm = new PayReceiptOtherForm(PayReceipt.PayReceiptTypeConf_OtherReceipt);
         appendEvent(otherReceiptBillForm);
     }
     return(otherReceiptBillForm);
 }
예제 #3
0
 public PayReceiptForm getBuyPayBillForm()
 {
     if (buyPayBillForm == null || buyPayBillForm.IsDisposed)
     {
         //等进一步改造,把全部stainless、clothesDao的调用都放在一个地方
         buyPayBillForm = new PayReceiptForm(PayReceipt.PayReceiptTypeConf_BuyPay, ProductStainlessCirculationDao.getInstance());
         appendEvent(buyPayBillForm);
     }
     return(buyPayBillForm);
 }