コード例 #1
0
        /// <summary>
        /// 创建供应商合同 Pwp 2015-09-23
        /// </summary>
        /// <param name="contractview"></param>
        /// <returns></returns>
        public void AddContract(ContractViewModel contractview)
        {
            string strNameType = "供应商";
            if (contractview.Type == (int)SellerSupplierType.Seller)
                strNameType = "销售商";
            //更新原合同为关闭
            if ( _contractRepository.GetModel()
                .Include(p => p.SellerSupplier)
                .Any(o => o.SpecialId == contractview.SpecialId && o.SellerSupplier.Name == contractview.Name && o.SellerSupplier.Type == (SellerSupplierType)contractview.Type))
                throw new BusinessException(string.Format(BusinessResourceMessage.ItemBeenHade, strNameType+"合同名称"));

            //供应商销售商集合
            SellerSupplier mSellerSupplier = new SellerSupplier();
            mSellerSupplier.Name = contractview.Name;
            mSellerSupplier.Type = (SellerSupplierType)contractview.Type;
            mSellerSupplier.Status = Convert.ToBoolean((int)SellerSupplierStatus.Normal);
            mSellerSupplier.Phone = contractview.Phone;
            mSellerSupplier.ChargeBankNumber = contractview.ChargeBankNumber;
            mSellerSupplier.Bank = contractview.Bank;
            mSellerSupplier.ChargeName = contractview.ChargeName;
            mSellerSupplier.CertificateNum =  contractview.CertificateNum;
            mSellerSupplier.CreaterId = contractview.OperatorID;
            mSellerSupplier.CreateTime = contractview.OptionTime;
            mSellerSupplier.UpdaterId = contractview.OperatorID;
            mSellerSupplier.UpdaterName = contractview.OperatorName;
            mSellerSupplier.UpdateTime = contractview.OptionTime;

            TransactionScopeNoMsdtc.UsingTransactionNoMsdtc(_db, () =>
            {
                _sellersupplierRepository.Insert(mSellerSupplier);
                Contract mNewContract = new Contract();
                mNewContract.Name = contractview.ContractName;
                mNewContract.Code = CommonMethod.GetInstance.GenerateCode("YTHT");

                mNewContract.Type = ContractType.Supplier;
                if (contractview.Type == (int)SellerSupplierType.Seller)
                    mNewContract.Type = ContractType.Seller;
                mNewContract.Status = ContractStatus.Normal;
                //mNewContract.StartDate = DateTime.Parse(_contractview.StartDate);
                mNewContract.EndDate = DateTime.Parse(contractview.EndDate);
                mNewContract.CreaterId = contractview.OperatorID;
                mNewContract.CreateTime = contractview.OptionTime;
                mNewContract.UpdaterId = contractview.OperatorID;
                mNewContract.UpdateTime = contractview.OptionTime;
                mNewContract.SpecialId = contractview.SpecialId;
                mNewContract.SellerSupplierId = mSellerSupplier.ID;

                List<Attachment> lstAttachment = new List<Attachment>();
                foreach (ContractAttachment temp in contractview.Attachments)
                {
                    Attachment mAttachment = new Attachment();
                    mAttachment.Name = temp.Item1;
                    mAttachment.Type = AttachmentType.ContractAttachment;
                    mAttachment.Address = temp.Item2;
                    string suffix = "";
                    string[] arrName = temp.Item1.Split('.');
                    if (arrName.Length > 1)
                    {
                        suffix = "."+arrName[arrName.Length - 1];
                    }
                    mAttachment.Suffix = suffix;
                    mAttachment.CreateTime = contractview.OptionTime;
                    lstAttachment.Add(mAttachment);
                }
                mNewContract.Attachments = lstAttachment;
                _contractRepository.Insert(mNewContract);
            });
        }
コード例 #2
0
        /// <summary>
        /// 续约专线合同 Pwp 2015-09-22
        /// </summary>
        /// <param name="_branchview"></param>
        /// <returns></returns>
        public void RenewalContract(ContractViewModel contractview)
        {
            //更新原合同为关闭
            Contract mOldContract = _contractRepository.GetModelTracking().Where(o => o.ID == contractview.ID).FirstOrDefault();
            if(mOldContract == null)
                throw new BusinessException(string.Format(BusinessResourceMessage.ItemNotFound, "原合同单"));

            //新合同创建
            Contract mNewContract = new Contract();
            mNewContract.Name = contractview.ContractName;
            mNewContract.Code = CommonMethod.GetInstance.GenerateCode("YTHT");
            mNewContract.Type = ContractType.SpecialLine;
            mNewContract.Status = ContractStatus.Renewal;
            //mNewContract.StartDate = mOldContract.StartDate;
            mNewContract.EndDate = DateTime.Parse(contractview.EndDate);
            mNewContract.CreaterId = contractview.OperatorID;
            mNewContract.CreateTime = contractview.OptionTime;
            mNewContract.UpdaterId = contractview.OperatorID;
            mNewContract.UpdateTime = contractview.OptionTime;
            if (mOldContract.BranchId!=null)
            mNewContract.BranchId = mOldContract.BranchId;
            if (mOldContract.SpecialId != null)
            mNewContract.SpecialId = mOldContract.SpecialId;
            if (mOldContract.SellerSupplierId != null)
            mNewContract.SellerSupplierId = mOldContract.SellerSupplierId;

            List<Attachment> lstAttachment = new List<Attachment>();
            foreach (ContractAttachment temp in contractview.Attachments)
            {
                Attachment mAttachment = new Attachment();
                mAttachment.Name = temp.Item1;
                mAttachment.Type = AttachmentType.ContractAttachment;
                mAttachment.Address = temp.Item2;
                string suffix = "";
                string[] arrName = temp.Item1.Split('.');
                if (arrName.Length > 1)
                {
                    suffix = "." + arrName[arrName.Length - 1];
                }
                mAttachment.Suffix = suffix;
                mAttachment.CreateTime = contractview.OptionTime;
                lstAttachment.Add(mAttachment);
            }
            mNewContract.Attachments = lstAttachment;

            TransactionScopeNoMsdtc.UsingTransactionNoMsdtc(_db, () =>
            {
                _contractRepository.Update(x => x.ID == contractview.ID, u => new Contract
                {
                    Status = ContractStatus.Close
                });
                _contractRepository.Insert(mNewContract);
                _specialRepository.Update(x => x.ID == mOldContract.SpecialId, u => new Special
                {
                    EndDate = DateTime.Parse(contractview.EndDate)
                });
            });
        }