1234567891011121314151617181920212223242526272829303132333435363738394041 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- using MySystem;
- using MySystem.Models.Main;
- namespace MySystem
- {
-
-
-
- public class OrderDivideAccountsUtil
- {
-
-
-
-
-
-
-
- public static OrderDivideAccounts SetValue(string mchtNo, string orderNo, decimal amount)
- {
- OrderDivideAccounts orderDivideAccounts = new OrderDivideAccounts();
- orderDivideAccounts.applyNo = "";
- orderDivideAccounts.mchtNo = mchtNo;
- orderDivideAccounts.orderNo = orderNo;
-
- List<DetailItem> imageList = new List<DetailItem>();
- DetailItem imageItem = new DetailItem();
-
- imageItem.acctNo = "";
- imageItem.acctType = 1;
- imageItem.amount = amount;
- imageList.Add(imageItem);
- orderDivideAccounts.detail = imageList;
- return orderDivideAccounts;
- }
- }
- }
|