Exemplo n.º 1
0
        protected override void GetReceiptNotes(Resolver resolver)
        {
            string[]   orderTypes = new string[] { BusinessConstants.CODE_MASTER_ORDER_TYPE_VALUE_PRODUCTION };
            string[]   row        = resolver.Code.Split('|');
            int        firstRow   = int.Parse(row[0]);
            int        maxRows    = int.Parse(row[1]);
            IList <Hu> huList     = huMgr.GetHuList(resolver.UserCode, firstRow, maxRows, orderTypes);

            resolver.ReceiptNotes = this.ConvertHusToReceiptNotes(huList);
        }