MattressHelper.cs 145 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297
  1. using CSUST.Data.Expr;
  2. using DirectService.Tools;
  3. using JLHHJSvr.BLL;
  4. using JLHHJSvr.Com.Model;
  5. using JLHHJSvr.LJException;
  6. using JLHHJSvr.LJFramework.Tools;
  7. using JLHHJSvr.Tools;
  8. using LJLib.DAL.SQL;
  9. using System;
  10. using System.Collections.Generic;
  11. using System.Data.SqlClient;
  12. using System.Linq;
  13. using System.Text;
  14. using System.Text.RegularExpressions;
  15. using System.Threading.Tasks;
  16. namespace JLHHJSvr.Helper
  17. {
  18. class MattressHelper : HelperBase
  19. {
  20. private Dictionary<string, object> replacements = new Dictionary<string, object>();
  21. /// <summary>
  22. /// 默认展示公式
  23. /// </summary>
  24. private Dictionary<string, string> formula_replacements = new Dictionary<string, string>();
  25. /// <summary>
  26. /// 隐藏公式
  27. /// </summary>
  28. private Dictionary<string, string> formula_replacements_hide = new Dictionary<string, string>();
  29. /// <summary>
  30. /// 床网参数替换
  31. /// </summary>
  32. public List<replacement_bednet> BendetReplace = new List<replacement_bednet>();
  33. public List<replacement> BendetFormulasReplace = new List<replacement>();
  34. public List<replacement> Replacements
  35. {
  36. get
  37. {
  38. var res = new List<replacement>();
  39. foreach (var item in replacements)
  40. {
  41. res.Add(new replacement { label = item.Key, value = item.Value, type = 0 });
  42. }
  43. return res;
  44. }
  45. }
  46. public List<replacement> FormulaReplacements
  47. {
  48. get
  49. {
  50. var res = new List<replacement>();
  51. foreach (var item in formula_replacements)
  52. {
  53. res.Add(new replacement { label = item.Key, value = item.Value, type = 0 });
  54. }
  55. string[] keys = { "车间成本", "总床垫车间成本", "不含税出厂价", "部门不含税价", "税金", "部门含税价", "外币价", "底价", "佣金" };
  56. res = res.OrderBy(r => Array.IndexOf(keys, r.label.Replace("【", "").Replace("】", ""))).ToList();
  57. foreach (var item in formula_replacements_hide)
  58. {
  59. res.Add(new replacement { label = item.Key, value = item.Value, type = 1 });
  60. }
  61. return res;
  62. }
  63. }
  64. /// <summary>
  65. /// 公式计算
  66. /// </summary>
  67. /// <param name="mattress"></param>
  68. /// <param name="mxlist"></param>
  69. /// <param name="isCalBed">是否实时计算</param>
  70. /// <param name="isNewFormula">是否获取新的公式计算</param>
  71. /// <param name="extraProcesses">特殊工艺</param>
  72. /// <param name="extraCosts">额外费用</param>
  73. public void CalCulateFormula(u_mattress mattress, List<u_mattress_mx_mtrl> mxlist, Boolean isCalBed = true, Boolean isNewFormula = true, List<u_mattress_mx_extra> extraProcesses = null, List<u_mattress_mx_extra> extraCosts = null)
  74. {
  75. BendetReplace = new List<replacement_bednet>();
  76. BendetFormulasReplace = new List<replacement>();
  77. InitMattress(mattress);
  78. InitReplaceMents(mattress, isCalBed, isNewFormula, extraProcesses, extraCosts);
  79. if (isCalBed || isNewFormula) CalCulateBedNet(mxlist, isCalBed, isNewFormula, mattress.deptid.Value);
  80. // 实时计算价格
  81. if (isCalBed)
  82. {
  83. InitMattressMx(mattress, mxlist);
  84. //CalCulateBedNet(mxlist);
  85. var diancengList = mxlist.Where(t => t.formulatype == 1).ToList();
  86. var mattersstype = new u_mattress_type() { mattresstypeid = mattress.mattresstypeid };
  87. DbSqlHelper.SelectOne(cmd, mattersstype, "formula_big_side,formula_small_side,formula_v_side");
  88. var thicknessDict = InitMxThicknessReplaceMents(mxlist);
  89. foreach (var mx in mxlist)
  90. {
  91. if (mx.mtrlid == 0 && mx.formulakind != 31) continue;
  92. if (string.IsNullOrEmpty(mx.formula) && string.IsNullOrEmpty(mx.useformula)) continue;
  93. InitMxReplaceMents(mx);
  94. // 顶替分组关键值:內布套、顶布裥棉
  95. if (thicknessDict.ContainsKey(mx.chastr))
  96. {
  97. foreach(var rp in thicknessDict[mx.chastr])
  98. {
  99. AddKeyValue(rp.Key, rp.Value);
  100. }
  101. }
  102. string expression = ConvertToEnglishSymbols(mx.formula), use_expression = ConvertToEnglishSymbols(mx.useformula);
  103. expression = InitMxSideReplaceMents(mattress, mx, diancengList, mattersstype, expression);
  104. use_expression = InitMxSideReplaceMents(mattress, mx, diancengList, mattersstype,use_expression);
  105. #region 替换布料幅宽
  106. //大侧
  107. if (new List<int>() { 2,42,52,62,72,82 }.Contains(mx.formulakind.Value))
  108. {
  109. InitMxClothWidthReplaceMents(mx, mxlist,2);
  110. }
  111. //小侧
  112. if (new List<int>() { 3, 43, 53, 63, 73, 83 }.Contains(mx.formulakind.Value))
  113. {
  114. InitMxClothWidthReplaceMents(mx, mxlist,3);
  115. }
  116. //大侧
  117. if (new List<int>() { 4, 44, 54, 64, 74, 84 }.Contains(mx.formulakind.Value))
  118. {
  119. InitMxClothWidthReplaceMents(mx, mxlist,4);
  120. }
  121. //面裥绵
  122. if (new List<int>() { 0, 40, 50, 60, 70, 80, 203 }.Contains(mx.formulakind.Value))
  123. {
  124. InitMxClothWidthReplaceMents(mx, mxlist,0);
  125. }
  126. //底裥绵
  127. if (new List<int>() { 1, 41, 51, 61, 71, 81 }.Contains(mx.formulakind.Value))
  128. {
  129. InitMxClothWidthReplaceMents(mx, mxlist,1);
  130. }
  131. #endregion
  132. #region 替换布套高
  133. //if(new List<int>() { 101 }.Contains(mx.formulakind.Value))
  134. //{
  135. // if (mx.mattress_width != null && mx.mattress_width > 0) expression = expression.Replace("【规格宽】", $"{mx.mattress_width}");
  136. // if (mx.mattress_length != null && mx.mattress_length > 0) expression = expression.Replace("【规格长】", $"{mx.mattress_length}");
  137. //}
  138. //内布套
  139. if (new List<int>() { 101,102,103,104,105,106 }.Contains(mx.formulakind.Value))
  140. {
  141. expression = InitMxClothHeightReplaceMents(mattress, mx, expression, mxlist, 101);
  142. use_expression = InitMxClothHeightReplaceMents(mattress, mx, use_expression, mxlist, 101);
  143. }
  144. //外布套
  145. if (new List<int>() { 111, 112, 113, 114, 115, 116 }.Contains(mx.formulakind.Value))
  146. {
  147. expression = InitMxClothHeightReplaceMents(mattress, mx, expression, mxlist, 111);
  148. use_expression = InitMxClothHeightReplaceMents(mattress, mx, use_expression, mxlist, 111);
  149. }
  150. #endregion
  151. #region 裥绵收缩率
  152. InitMxShrinkageReplaceMents(mx,mxlist);
  153. #endregion
  154. foreach (var replacement in replacements)
  155. {
  156. expression = expression.Replace(replacement.Key, Convert.ToString(replacement.Value));
  157. use_expression = use_expression.Replace(replacement.Key, Convert.ToString(replacement.Value));
  158. }
  159. #region 计算成本金额
  160. // 判断expression前两个字符是否为@@
  161. bool sqlCal = !string.IsNullOrEmpty(expression) && expression.Length > 2 && expression.Substring(0, 2) == "@@";
  162. expression = expression.Replace("@@", "");
  163. mx.replace_formula = expression;
  164. try
  165. {
  166. if (sqlCal)
  167. {
  168. mx.costamt = Convert.ToDecimal(SqlCalculate(expression, "成本金额"));
  169. }
  170. else
  171. {
  172. mx.costamt = Calculate(expression, "成本金额").DecimalValue;
  173. }
  174. }
  175. catch (Exception e)
  176. {
  177. mx.if_success = 1;
  178. mx.message = e.Message;
  179. }
  180. #endregion
  181. #region 计算清单用量
  182. sqlCal = !string.IsNullOrEmpty(use_expression) && use_expression.Length > 2 &&use_expression.Substring(0, 2) == "@@";
  183. use_expression = use_expression.Replace("@@", "");
  184. mx.replace_useformula = use_expression;
  185. try
  186. {
  187. if (sqlCal)
  188. {
  189. mx.useqty = Convert.ToDecimal(SqlCalculate(use_expression, "清单用量"));
  190. }
  191. else
  192. {
  193. mx.useqty = Calculate(use_expression, "清单用量").DecimalValue;
  194. }
  195. }
  196. catch (Exception e)
  197. {
  198. mx.if_success = 1;
  199. mx.message = e.Message;
  200. }
  201. #endregion
  202. }
  203. }
  204. InitMattressMxListReplaceMents(mattress, mxlist, isNewFormula);
  205. string[] keys = { "车间成本", "不含税出厂价", "部门不含税价", "税金", "部门含税价", "外币价", "底价", "佣金" };
  206. if (formula_replacements_hide.Count > 0)
  207. {
  208. foreach (var replacement in formula_replacements_hide)
  209. {
  210. var _key = replacement.Key.Replace("【", "").Replace("】", "");
  211. var value = CalculateVarFormula(_key).DecimalValue;
  212. AddKeyValue(_key, value);
  213. }
  214. foreach (var replacement in formula_replacements)
  215. {
  216. var _key = replacement.Key.Replace("【", "").Replace("】", "");
  217. if (!keys.Contains(_key) )
  218. {
  219. var value = CalculateVarFormula(_key).DecimalValue;
  220. AddKeyValue(_key, value);
  221. }
  222. }
  223. }
  224. }
  225. /// <summary>
  226. /// 记录明细按分组读取厚度变量
  227. /// </summary>
  228. /// <param name="mxlist"></param>
  229. private Dictionary<string, Dictionary<string, object>> InitMxThicknessReplaceMents(List<u_mattress_mx_mtrl> mxlist)
  230. {
  231. // 明细按分组读取厚度变量
  232. var thicknessDict = new Dictionary<string, Dictionary<string, object>> () { };
  233. foreach (var mx in mxlist)
  234. {
  235. // 只处理 内布套(101,102)、顶布裥棉(103)
  236. if (!new List<int>() { 101, 102, 103 }.Contains(mx.formulatype.Value)) continue;
  237. if (mx.chastr.Contains("顶布裥棉") || mx.chastr.Contains("内布套"))
  238. {
  239. if(!thicknessDict.ContainsKey(mx.chastr))
  240. {
  241. thicknessDict.Add(mx.chastr, new Dictionary<string, object>() {});
  242. }
  243. var mxDict = thicknessDict[mx.chastr];
  244. setMxThicknessValue(mx, ref mxDict);
  245. thicknessDict[mx.chastr] = mxDict;
  246. }
  247. }
  248. return thicknessDict;
  249. }
  250. private void setMxThicknessValue(u_mattress_mx_mtrl mx, ref Dictionary<string, object> mxDict)
  251. {
  252. var keyStr = "";
  253. if (new List<int>() { 101, 102 }.Contains(mx.formulatype.Value))
  254. {
  255. switch (mx.formulakind.Value)
  256. {
  257. case 0: // 面裥绵-布料
  258. keyStr = "内布套上覆";
  259. break;
  260. case 1: // 底裥绵-布料
  261. keyStr = "内布套下覆";
  262. break;
  263. case 2: // 大侧裥绵-布料
  264. keyStr = "内布套侧覆";
  265. break;
  266. }
  267. if (!string.IsNullOrEmpty(keyStr))
  268. {
  269. mxDict.Add(keyStr, mx.thickness);
  270. }
  271. }
  272. else if (new List<int>() { 103 }.Contains(mx.formulatype.Value))
  273. {
  274. switch (mx.formulakind.Value)
  275. {
  276. case 50: // 面裥绵-裥绵海绵
  277. keyStr = "物料厚度";
  278. break;
  279. }
  280. if (!string.IsNullOrEmpty(keyStr))
  281. {
  282. mxDict.Add(keyStr, mx.thickness.Value);
  283. }
  284. }
  285. }
  286. private void CalCulateBedNet(List<u_mattress_mx_mtrl> mxlist, Boolean isCalBed = true, Boolean isNewFormula = true, int deptid = 0)
  287. {
  288. var bedNetHelper = HelperBase.GetHelper<BedNetHelper>(cmd, new HelperBase.Context() { tokendata = context.tokendata });
  289. var bednetList = mxlist.Where(t => t.formulatype == 99);
  290. decimal dannumRate = 0;
  291. int dannumType = 0;
  292. //if (replacements.TryGetValue("【大小单系数】", out object value2))
  293. //{
  294. // dannumRate = Convert.ToDecimal(value2);
  295. //}
  296. if (replacements.TryGetValue("【大小单类型】", out object value1))
  297. {
  298. dannumType = Convert.ToInt32(value1);
  299. }
  300. List<replacement_bednet> rpBednet = new List<replacement_bednet>();
  301. var bednetSumList = new List<decimal?>();
  302. var index = 0;
  303. foreach (var mx in bednetList)
  304. {
  305. if (mx.mtrlid <= 0) continue;
  306. var bednet = bedNetHelper.GetBedNet(mx.mtrlid.Value);
  307. if (bednet.flag == 1) continue;
  308. if (deptid > 0)
  309. {
  310. bednet.deptid = deptid;
  311. }
  312. var bednetMxlist = bedNetHelper.GetBedNetMxList(bednet.bednetid.Value);
  313. var bednetSpringList = bedNetHelper.GetBedNetSpringList(bednet.bednetid.Value);
  314. //bednet.dannum_rate = dannumRate;
  315. bednet.dannum_type = dannumType;
  316. bedNetHelper.CalCulateFormula(bednet, bednetMxlist, bednetSpringList, true, true);
  317. var rpBednetItem = new replacement_bednet()
  318. {
  319. label = mx.mtrlname,
  320. replace = bedNetHelper.Replacements
  321. };
  322. BendetFormulasReplace = bedNetHelper.FormulaReplacements.Where(itm => new List<int>{ 0, 1 }.Contains(itm.type.Value)).ToList();
  323. rpBednet.Add(rpBednetItem);
  324. //if (isCalBed)
  325. //{
  326. // bedNetHelper.SaveBedNet(bednet, bednetMxlist, bednetSpringList);
  327. //}
  328. if (isNewFormula)
  329. {
  330. mx.price = bednet.total_cost;
  331. AddKeyValue("床网车间成本" + (index + 1), bednet.total_cost);
  332. bednetSumList.Add(bednet.total_cost);
  333. }
  334. else
  335. {
  336. mx.price = bednet.nottax_factory_cost;
  337. }
  338. }
  339. BendetReplace = rpBednet;
  340. #region 总床网车间成本
  341. AddKeyValue("总床网车间成本", bednetSumList.Sum());
  342. #endregion
  343. }
  344. private void InitMattress(u_mattress mattress)
  345. {
  346. var dept = new u_dept() { deptid = mattress.deptid.Value };
  347. DbSqlHelper.SelectOne(cmd, dept, "pricelistid,profitrate,moneyrate,discount");
  348. //var profirate = new u_factory_profitrate() { deptid = mattress.deptid, bednettypeid_mattresstypeid = mattress.mattresstypeid, bednet_or_mattress = 1 };
  349. //DbSqlHelper.SelectOne(cmd, profirate, "profitrate");
  350. decimal profitrate = 0;
  351. cmd.CommandText = @"SELECT profitrate FROM u_factory_profitrate
  352. WHERE deptid = @deptid
  353. AND bednettypeid_mattresstypeid = @bednettypeid_mattresstypeid
  354. AND bednet_or_mattress = 1";
  355. cmd.Parameters.Clear();
  356. cmd.Parameters.AddWithValue("@deptid", mattress.deptid);
  357. cmd.Parameters.AddWithValue("@bednettypeid_mattresstypeid", mattress.mattresstypeid);
  358. using (var reader = cmd.ExecuteReader())
  359. {
  360. if (reader.Read())
  361. {
  362. profitrate = Convert.ToDecimal(reader["profitrate"]);
  363. }
  364. }
  365. mattress.pricelistid = dept.pricelistid;
  366. mattress.dept_profitrate = dept.profitrate;
  367. mattress.profitrate = profitrate;
  368. mattress.moneyrate = mattress.if_moneyrate == 1 ? dept.moneyrate ?? 1 : 1;
  369. mattress.discount = dept.discount ?? 1 ;
  370. mattress.commission = mattress.commission ?? 1;
  371. mattress.taxrate = mattress.taxrate ?? 1;
  372. mattress.other_rate = mattress.other_rate ?? 1;
  373. mattress.dept_profitrate = mattress.dept_profitrate ?? 0;
  374. // 检查佣金是否小于1
  375. if (mattress.commission < 1)
  376. {
  377. throw new LJCommonException("佣金点数不能小于1!");
  378. }
  379. // 检查税率是否小于1
  380. if (mattress.taxrate < 1)
  381. {
  382. throw new LJCommonException("税率不能小于1!");
  383. }
  384. // 检查额外点数是否小于1
  385. if (mattress.other_rate < 1)
  386. {
  387. throw new LJCommonException("税率不能小于1!");
  388. }
  389. // 检查部门利润率是否为0
  390. if (mattress.dept_profitrate == 0)
  391. {
  392. throw new LJCommonException("部门利润率不能为0!");
  393. }
  394. }
  395. private void InitMattressMx(u_mattress mattress,List<u_mattress_mx_mtrl> mxlist)
  396. {
  397. foreach (var mx in mxlist)
  398. {
  399. if (!new List<int>() { 0, 1, 2, 3, 104 }.Contains(mx.formulatype.Value)) continue;
  400. // 垫层 wf_check_dianceng_ifright
  401. if (mx.formulatype.Value == 1)
  402. {
  403. cmd.CommandText = @"SELECT TOP 1 formulaid From u_mattress_formula where formulakind = @ll_formulakind";
  404. cmd.Parameters.Clear();
  405. cmd.Parameters.AddWithValue("@ll_formulakind", mx.formulakind);
  406. using (var reader = cmd.ExecuteReader())
  407. {
  408. if (reader.Read())
  409. {
  410. mx.formulaid = Convert.ToInt32(reader["formulaid"]);
  411. }
  412. else
  413. {
  414. mx.formulaid = 0;
  415. }
  416. }
  417. }
  418. var formula = new u_mattress_formula() { formulaid = mx.formulaid, };
  419. DbSqlHelper.SelectOne(cmd, formula, "formulakind,formulatype,sortcode");
  420. var mtrldef = new u_mtrl_price() { mtrlid = mx.mtrlid };
  421. DbSqlHelper.SelectOne(cmd, mtrldef, "name,gram_weight,cloth_width,if_inputqty,priceunit,shrinkage,if_areaprice");
  422. mx.costamt = 0;
  423. mx.useqty = 0;
  424. mx.if_success = 0;
  425. mx.replace_formula = "";
  426. mx.replace_useformula = "";
  427. mx.formulakind = formula.formulakind;
  428. mx.formulatype = formula.formulatype;
  429. //mx.sortcode = formula.sortcode.Trim();
  430. mx.mtrlname = mtrldef.name ?? "";
  431. var formula2 = new u_mattress_formula();
  432. DbSqlHelper.SelectOne(cmd, "u_mattress_formula","formulakind = @formulakind",
  433. new Dictionary<string, object>() { { "@formulakind",mx.formulakind } },formula2, "formula,useformula,gydscrp");
  434. mx.formula = formula2.formula;
  435. mx.useformula = formula2.useformula;
  436. mx.gydscrp = formula2.gydscrp;
  437. cmd.CommandText = @"SELECT isnull(u_mtrl_price_pricelist.price, 0) AS pricelistprice
  438. ,u_mtrl_price.gram_weight
  439. ,u_mtrl_price.cloth_width
  440. ,u_mtrl_price.if_inputqty
  441. ,u_mtrl_price.priceunit
  442. ,u_mtrl_price.shrinkage
  443. ,isnull(u_mtrl_price_pricelist.price_formula, 0) AS price_formula
  444. ,isnull(u_mtrl_price_pricelist.qty_formula, 0) AS qty_formula
  445. ,u_mtrl_price.if_areaprice
  446. ,u_mtrl_price.thickness
  447. FROM u_mtrl_price
  448. INNER JOIN u_mtrl_price_pricelist ON u_mtrl_price.mtrlid = u_mtrl_price_pricelist.mtrlid
  449. WHERE (u_mtrl_price.mtrlid = @mtrlid)
  450. AND (u_mtrl_price_pricelist.pricelistid = @pricelistid)";
  451. cmd.Parameters.Clear();
  452. cmd.Parameters.AddWithValue("@mtrlid", mx.mtrlid);
  453. cmd.Parameters.AddWithValue("@pricelistid", mattress.pricelistid);
  454. using(var reader = cmd.ExecuteReader())
  455. {
  456. if (reader.Read())
  457. {
  458. mx.price = Convert.ToDecimal(reader["pricelistprice"]);
  459. mx.gram_weight = Convert.ToDecimal(reader["gram_weight"]);
  460. mx.cloth_width = Convert.ToDecimal(reader["cloth_width"]);
  461. mx.if_inputqty = Convert.ToInt32(reader["if_inputqty"]);
  462. mx.priceunit = reader["priceunit"].ToString();
  463. mx.shrinkage = Convert.ToDecimal(reader["shrinkage"]);
  464. mx.if_areaprice = Convert.ToByte(reader["if_areaprice"]);
  465. if(mx.if_inputqty == 1) mx.thickness = Convert.ToDecimal(reader["thickness"]);
  466. string price_formula = Convert.ToString(reader["price_formula"]);
  467. string qty_formula = Convert.ToString(reader["qty_formula"]);
  468. mx.formula = string.IsNullOrEmpty(price_formula) ? mx.formula : price_formula;
  469. mx.useformula = string.IsNullOrEmpty(qty_formula) ? mx.useformula : qty_formula;
  470. }
  471. }
  472. }
  473. }
  474. /// <summary>
  475. /// 其他额外费用tab / 特殊工艺计算
  476. /// </summary>
  477. /// <param name="mattress"></param>
  478. /// <param name="typeid"></param> 1: 特殊工艺。2:其他额外费用
  479. /// <returns></returns>
  480. private decimal GetExtraAmt(u_mattress mattress, int typeid)
  481. {
  482. decimal amt = 0;
  483. cmd.CommandText = @"
  484. SELECT ISNULL(SUM(u_mattress_mx_extra.price * u_mattress_mx_extra.qty), 0) AS amt
  485. From u_mattress_mx_extra
  486. INNER JOIN u_mattress_extra_type On u_mattress_extra_type.extraid = u_mattress_mx_extra.extraid
  487. WHERE u_mattress_extra_type.typeid = @typeid
  488. AND u_mattress_mx_extra.mattressid = @mattressid";
  489. cmd.Parameters.Clear();
  490. cmd.Parameters.AddWithValue("@typeid", typeid);
  491. cmd.Parameters.AddWithValue("@mattressid", mattress.mattressid);
  492. using (var reader = cmd.ExecuteReader())
  493. {
  494. if (reader.Read())
  495. {
  496. amt = Convert.ToDecimal(reader["amt"]);
  497. }
  498. }
  499. return amt;
  500. }
  501. private void InitReplaceMents(u_mattress mattress, Boolean isCalBed = true, Boolean isNewFormula = true, List<u_mattress_mx_extra> extraProcesses = null, List<u_mattress_mx_extra> extraCosts = null)
  502. {
  503. replacements.Clear();
  504. decimal cost = 0;
  505. if (isCalBed)
  506. {
  507. if (extraCosts != null)
  508. {
  509. foreach (var itemCost in extraCosts)
  510. {
  511. cost += itemCost.price.Value * itemCost.qty.Value;
  512. }
  513. }
  514. }
  515. else
  516. {
  517. cost = GetExtraAmt(mattress, 2);
  518. }
  519. AddKeyValue("材料额外费用", cost);
  520. decimal cost1 = 0;
  521. if (isCalBed)
  522. {
  523. if (extraProcesses != null)
  524. {
  525. foreach (var itemPro in extraProcesses)
  526. {
  527. cost1 += itemPro.price.Value * itemPro.qty.Value;
  528. }
  529. }
  530. }
  531. else
  532. {
  533. cost1 = GetExtraAmt(mattress, 1);
  534. }
  535. AddKeyValue("特殊工艺费用", cost1);
  536. AddKeyValue("规格宽", mattress.mattress_width);
  537. AddKeyValue("规格长", mattress.mattress_length);
  538. AddKeyValue("规格高", mattress.mattress_height);
  539. AddKeyValue("压包数量", mattress.packqty);
  540. AddKeyValue("卷包直径", mattress.diameter);
  541. AddKeyValue("顶布裥棉外布套做法", mattress.if_db_wbutao_way);
  542. AddKeyValue("面料外布套做法", mattress.if_m_wbutao_way);
  543. AddKeyValue("内布套上覆", mattress.s_cover_qty);
  544. AddKeyValue("内布套侧覆", mattress.z_cover_qty);
  545. AddKeyValue("内布套下覆", mattress.x_cover_qty);
  546. AddKeyValue("面料上覆", mattress.s_m_cover_qty);
  547. AddKeyValue("面料侧覆", mattress.z_m_cover_qty);
  548. AddKeyValue("面料下覆", mattress.x_m_cover_qty);
  549. AddKeyValue("面拆", mattress.if_m_chai);
  550. AddKeyValue("中拆", mattress.if_z_chai);
  551. AddKeyValue("底拆", mattress.if_d_chai);
  552. AddKeyValue("工厂利润率", mattress.profitrate);
  553. AddKeyValue("部门利润率", mattress.dept_profitrate);
  554. AddKeyValue("部门让利点数", mattress.dept_profitrate_rangli);
  555. AddKeyValue("佣金点数", mattress.commission);
  556. AddKeyValue("额外点数", mattress.other_rate);
  557. AddKeyValue("额外费用", mattress.extras_cost);
  558. AddKeyValue("汇率", mattress.moneyrate);
  559. AddKeyValue("税率", mattress.taxrate);
  560. AddKeyValue("折扣率", mattress.discount);
  561. // 地区FOB费用,如果存在变量表,会替代
  562. AddKeyValue("大柜-普通地区-地区FOB费用", 6500);
  563. AddKeyValue("大柜-特定地区-地区FOB费用", 8500);
  564. AddKeyValue("小柜-普通地区-地区FOB费用", 6000);
  565. AddKeyValue("小柜-特定地区-地区FOB费用", 7000);
  566. // 柜型立方数
  567. AddKeyValue("大柜-柜型立方数", 64);
  568. AddKeyValue("小柜-柜型立方数", 28);
  569. // 柜型米数
  570. AddKeyValue("大柜-柜型米数", 12);
  571. AddKeyValue("小柜-柜型米数", 5.9);
  572. AddKeyValue("柜型", mattress.cabinet_type);
  573. //AddFormulaHideKeyValue("【总材料成本】", "【弹簧材料总成本】+【蛇线材料成本】+【四周口袋弹簧成本】+【四周口袋无纺布成本】+【四周加硬材料成本】+【胶水材料成本】+【入袋无纺布材料成本】+【底面无纺布材料成本】+【边铁材料成本】+【C钉/夹码材料成本】+【海绵包边材料成本】+【填充海绵成本】+【封边材料成本】+【弹叉材料成本】+【胶条/包角材料成本】+【上垫层物料成本】+【下垫层物料成本】+【包装总成本】");
  574. if (mattress.woodpallettype == 0)
  575. {
  576. AddKeyValue("木托方式", "'普通木托'");
  577. }else if (mattress.woodpallettype == 1)
  578. {
  579. AddKeyValue("木托方式", " '夹板木托'");
  580. }else if (mattress.woodpallettype == 2)
  581. {
  582. AddKeyValue("木托方式", "'铁管木托' ");
  583. }
  584. // 公式
  585. AddFormulaKeyValue("车间成本", "【材料成本】*【大小单】+【人工费用】+【边带费用】+【额外费用】+【制造费用】");
  586. AddFormulaKeyValue("不含税出厂价", "【车间成本】*(【工厂利润率】+【工艺点数】+【内布套点数】+【拆装点数】+【海绵扣点】)*【管理费点】");
  587. AddFormulaKeyValue("部门不含税价", "【不含税出厂价】/(【部门利润率】+【部门让利点数】/100)/(1-(【佣金点数】-1))*【额外点数】+【FOB】");
  588. AddFormulaKeyValue("税金", "【部门不含税价】*(【税率】-1)+【佣金】 * 0.05");
  589. AddFormulaKeyValue("部门含税价", "(【部门不含税价】+【佣金】 * 0.06)*【税率】*【折扣率】");
  590. AddFormulaKeyValue("外币价", "【部门含税价】/【汇率】");
  591. AddFormulaKeyValue("底价", "if((【部门利润率】+【部门让利点数】/100)<> 0,【不含税出厂价】/(【部门利润率】+【部门让利点数】/ 100),0)");
  592. AddFormulaKeyValue("佣金", "【底价】/(1-(【佣金点数】-1))-【底价】");
  593. var dept = new u_dept() { deptid = mattress.deptid.Value };
  594. DbSqlHelper.SelectOne(cmd, dept, "pricelistid,taxes_rate");
  595. AddKeyValue("税金补偿", dept.taxes_rate);
  596. var bednetVarList = new List<u_bednet_var>();
  597. var selectStr = @"SELECT u_bednet_varmx.varid AS varid
  598. ,varkind
  599. ,varcode
  600. ,varname
  601. ,varclass
  602. ,vartype
  603. ,varunit
  604. ,u_bednet_varmx.varvalue AS varvalue
  605. ,formula
  606. FROM u_bednet_var
  607. INNER JOIN u_bednet_varmx ON u_bednet_varmx.varid = u_bednet_var.varid
  608. INNER JOIN u_dept ON u_dept.pricelistid = u_bednet_varmx.pricelistid";
  609. var whereList = new List<string>();
  610. whereList.Add("u_bednet_var.varclass < 2");
  611. whereList.Add("u_bednet_var.varkind = @varkind");
  612. whereList.Add("u_dept.deptid = @deptid");
  613. var param = new Dictionary<string, object>();
  614. param.Add("@varkind", 1);
  615. param.Add("@deptid", mattress.deptid);
  616. DbSqlHelper.SelectJoin(cmd, selectStr, ListEx.GetWhereStr(whereList), param, "varid", "varid,varkind,varcode,varname,varclass,vartype,varunit,varvalue", 0, 0, bednetVarList);
  617. foreach (var netvar in bednetVarList)
  618. {
  619. AddKeyValue(netvar.varname, netvar.varvalue);
  620. }
  621. if (isNewFormula)
  622. {
  623. selectStr = @"SELECT varid
  624. ,varkind
  625. ,varcode
  626. ,varname
  627. ,varclass
  628. ,vartype
  629. ,varunit
  630. ,formula
  631. FROM u_bednet_var";
  632. bednetVarList = new List<u_bednet_var>();
  633. whereList = new List<string>();
  634. whereList.Add("u_bednet_var.varkind = @varkind");
  635. whereList.Add("u_bednet_var.varclass = @varclass");
  636. param = new Dictionary<string, object>();
  637. param.Add("@varkind", 1);
  638. param.Add("@varclass", 2);
  639. DbSqlHelper.SelectJoin(cmd, selectStr, ListEx.GetWhereStr(whereList), param, "varid", "varid,varkind,varcode,varname,varclass,vartype,varunit,formula", 0, 0, bednetVarList);
  640. string[] keys = { "车间成本", "不含税出厂价", "部门不含税价", "税金", "部门含税价", "外币价", "底价", "佣金", "总床垫车间成本" };
  641. // 添加替换公式变量
  642. foreach (var netvar in bednetVarList)
  643. {
  644. if (keys.Contains(netvar.varname))
  645. {
  646. AddFormulaKeyValue(netvar.varname, netvar.formula);
  647. }
  648. else
  649. {
  650. AddFormulaHideKeyValue(netvar.varname, netvar.formula);
  651. }
  652. }
  653. }
  654. if (isNewFormula) GetDannumRate(mattress);
  655. }
  656. private void InitMxReplaceMents(u_mattress_mx_mtrl mx)
  657. {
  658. mx.mtrlname = !string.IsNullOrEmpty(mx.mtrlname) ? mx.mtrlname.Trim() : "null";
  659. decimal _shrinkage = mx.shrinkage.Value == 0 ? (decimal)1 : mx.shrinkage.Value;
  660. //取mtrldef.name的前两位
  661. AddKeyValue("名称前2位", mx.mtrlname.Length > 2 ? mx.mtrlname.Substring(0, 2) : mx.mtrlname);
  662. AddKeyValue("物料单价", mx.price);
  663. AddKeyValue("物料克重", mx.gram_weight);
  664. AddKeyValue("幅宽", mx.cloth_width);
  665. AddKeyValue("数量", mx.qty);
  666. AddKeyValue("物料厚度", mx.if_inputqty);
  667. AddKeyValue("固定厚度", mx.if_inputqty);
  668. AddKeyValue("厚度", mx.thickness);
  669. AddKeyValue("按面积单价", mx.if_areaprice);
  670. AddKeyValue("物料名称", mx.mtrlname);
  671. if (_shrinkage > 0) AddKeyValue("物料收缩率", _shrinkage);
  672. }
  673. /// <summary>
  674. /// 添加大侧,小侧,V侧高度公式替换
  675. /// </summary>
  676. /// <param name="mx"></param>
  677. /// <param name="diancengList"></param>
  678. /// <param name="mattersstype"></param>
  679. /// <param name="expression"></param>
  680. /// <returns></returns>
  681. private string InitMxSideReplaceMents(u_mattress mattress, u_mattress_mx_mtrl mx,List<u_mattress_mx_mtrl> diancengList, u_mattress_type mattersstype, string expression)
  682. {
  683. // 获取垫层的数据
  684. decimal bigSum = 0, smallSum = 0, vSum = 0;
  685. string bigChaStr = "大侧";
  686. string smallChaStr = mx.chastr ?? "小侧1";
  687. string vChaStr = mx.chastr ?? "V侧1";
  688. foreach (var dianceng in diancengList)
  689. {
  690. if (dianceng.chastr.IndexOf(bigChaStr) > -1) bigSum += dianceng.qty.Value * dianceng.thickness.Value;
  691. if (dianceng.chastr.IndexOf(smallChaStr) > -1) smallSum += dianceng.qty.Value * dianceng.thickness.Value;
  692. if (dianceng.chastr.IndexOf(vChaStr) > -1) vSum += dianceng.qty.Value * dianceng.thickness.Value;
  693. }
  694. if (bigSum > 0)
  695. {
  696. AddKeyValue("垫层", bigSum);
  697. }
  698. if (smallSum > 0)
  699. {
  700. AddKeyValue("垫层", smallSum);
  701. }
  702. if (vSum > 0)
  703. {
  704. AddKeyValue("垫层", vSum);
  705. }
  706. #region 替换大侧高度
  707. if (expression.IndexOf("【大侧高度】") > -1)
  708. {
  709. if (!string.IsNullOrEmpty(mattersstype.formula_big_side)) expression = expression.Replace("【大侧高度】", $"({mattersstype.formula_big_side})");
  710. expression = expression.Replace("【位置】", $"'{bigChaStr}'");
  711. if (bigSum > 0) expression = expression.Replace("【大侧高度】", $"{bigSum}");
  712. }
  713. #endregion
  714. #region 替换小侧高度
  715. if (expression.IndexOf("【小侧高度】") > -1)
  716. {
  717. if (!string.IsNullOrEmpty(mattersstype.formula_small_side)) expression = expression.Replace("【小侧高度】", $"({mattersstype.formula_small_side})");
  718. expression = expression.Replace("【位置】", $"'{smallChaStr}'");
  719. expression = expression.Replace("【小侧高度】", $"{smallSum}");
  720. }
  721. #endregion
  722. #region 替换V侧高度
  723. if (expression.IndexOf("【V侧高度】") > -1)
  724. {
  725. if(!string.IsNullOrEmpty(mattersstype.formula_v_side)) expression = expression.Replace("【V侧高度】", $"({mattersstype.formula_v_side})");
  726. expression = expression.Replace("【位置】", $"'{vChaStr}'");
  727. expression = expression.Replace("【V侧高度】", $"18");
  728. }
  729. #endregion
  730. #region 若填写则顶替床垫尺寸
  731. if (mx.mattress_width != null && mx.mattress_width > 0) expression = expression.Replace("【规格宽】", $"{mx.mattress_width}");
  732. if (mx.mattress_length != null && mx.mattress_length > 0) expression = expression.Replace("【规格长】", $"{mx.mattress_length}");
  733. #endregion
  734. return expression;
  735. }
  736. /// <summary>
  737. /// 添加布料幅宽公式替换
  738. /// </summary>
  739. /// <param name="mx"></param>
  740. /// <param name="mxlist"></param>
  741. /// <param name="formulakind"></param>
  742. private void InitMxClothWidthReplaceMents(u_mattress_mx_mtrl mx, List<u_mattress_mx_mtrl> mxlist,int formulakind)
  743. {
  744. decimal cloth_width = 0;
  745. if (string.IsNullOrEmpty(mx.chastr))
  746. {
  747. cloth_width = mxlist.First(t => t.formulakind.Value == formulakind).cloth_width.Value;
  748. }
  749. else
  750. {
  751. cloth_width = mxlist.First(t => t.formulakind.Value == formulakind && t.chastr.Equals(mx.chastr)).cloth_width.Value;
  752. }
  753. AddKeyValue("布料幅宽", cloth_width);
  754. }
  755. /// <summary>
  756. /// 添加布套高公式替换
  757. /// </summary>
  758. /// <param name="mxlist"></param>
  759. /// <param name="formulakind"></param>
  760. private string InitMxClothHeightReplaceMents(u_mattress mattress, u_mattress_mx_mtrl mx, string expression, List<u_mattress_mx_mtrl> mxlist, int formulakind)
  761. {
  762. decimal cloth_height = 0;
  763. cloth_height = mxlist.First(t => t.formulakind.Value == formulakind).thickness.Value;
  764. AddKeyValue("布套高", cloth_height);
  765. //if (mx.mattress_width != null && mx.mattress_width > 0) expression = expression.Replace("【规格宽】", $"{mx.mattress_width}");
  766. //if (mx.mattress_length != null && mx.mattress_length > 0) expression = expression.Replace("【规格长】", $"{mx.mattress_length}");
  767. return expression;
  768. }
  769. /// <summary>
  770. /// 添加裥绵收缩率公式替换
  771. /// </summary>
  772. /// <param name="mx"></param>
  773. /// <param name="mxlist"></param>
  774. private void InitMxShrinkageReplaceMents(u_mattress_mx_mtrl mx, List<u_mattress_mx_mtrl> mxlist)
  775. {
  776. decimal thickness = 0, shrinkage = 0;
  777. int[][] formulaKinds = new int[][]
  778. {
  779. new int [] {50, 0, 40, 60, 70, 80},
  780. new int [] {51, 1, 41, 61, 71, 81},
  781. new int [] {52, 2, 42, 62, 72, 82},
  782. new int [] {53, 3, 43, 63, 73, 83},
  783. new int [] {54, 4, 44, 64, 74, 84},
  784. };
  785. foreach (int[] kindGroup in formulaKinds)
  786. {
  787. if (kindGroup.Contains(mx.formulakind.Value))
  788. {
  789. var _mxList = mxlist.Where(o => o.formulatype == mx.formulatype).ToList(); //在同一个tab中计算
  790. foreach (var row in _mxList) // mxList.Rows等价于arg_dw.RowCount()
  791. {
  792. if (row.formulakind.Value == kindGroup[0])
  793. {
  794. thickness += row.thickness.Value * row.qty.Value; // 简化计算
  795. }
  796. }
  797. }
  798. }
  799. if(thickness >= 0)
  800. {
  801. cmd.CommandText = @"SELECT TOP 1 shrinkage
  802. FROM u_shrinkage
  803. WHERE u_shrinkage.minvalue <= @thickness
  804. AND u_shrinkage.maxvalue >= @thickness";
  805. cmd.Parameters.Clear();
  806. cmd.Parameters.AddWithValue("@thickness", thickness);
  807. using(var reader = cmd.ExecuteReader())
  808. {
  809. if (reader.Read())
  810. {
  811. shrinkage = Convert.ToDecimal(reader["shrinkage"]);
  812. }
  813. }
  814. }
  815. if(shrinkage > 0)
  816. {
  817. AddKeyValue("收缩率", shrinkage);
  818. }
  819. }
  820. /// <summary>
  821. /// 添加主表与明细表相关公式替换
  822. /// </summary>
  823. /// <param name="mattress"></param>
  824. /// <param name="mxlist"></param>
  825. /// <param name="isNewFormula">是否获取新的公式计算</param>
  826. private void InitMattressMxListReplaceMents(u_mattress mattress,List<u_mattress_mx_mtrl> mxlist, Boolean isNewFormula = true)
  827. {
  828. string fob_expression = string.Empty,cubage_expression = string.Empty;
  829. cubage_expression = "(【规格长】*【规格宽】* 【规格高】)/100000";
  830. #region 判断装柜方式 是否进箱
  831. if (mattress.packtype == 0)
  832. {
  833. mattress.loading_type = "平压";
  834. fob_expression = "【地区FOB费用】/(【柜型米数】 /(【规格宽】/ 100 +0.1)*(【压包数量】*2))";
  835. //if (mattress.packqty == 0) throw new LJCommonException("请填写压包数量!");
  836. }
  837. else if (mattress.packtype == 1)
  838. {
  839. mattress.loading_type = "卷包(非进箱)";
  840. fob_expression = "【地区FOB费用】 /(【柜型立方数】 /( 3.14*( 【卷包直径】 /100/2+0.03)*( 【卷包直径】 /100/2+0.03)*(【规格宽】/ 100 +0.05)))";
  841. cubage_expression = "( 3.14*( 【卷包直径】 /100/2+0.03)*( 【卷包直径】 /100/2+0.03)*(【规格宽】/ 100 +0.05))";
  842. //if (mattress.diameter == 0) throw new LJCommonException("请填写卷包直径!");
  843. var _bzList = mxlist.Where(t => t.formulatype == 3 && t.formulakind == 19).ToList();
  844. foreach(var bz in _bzList)
  845. {
  846. if (bz.mtrlname.IndexOf("箱") > -1) {
  847. mattress.loading_type = "卷包(进箱)";
  848. fob_expression = "【地区FOB费用】/(【柜型立方数】 / (( 【纸箱宽】 /100+0.03)*(【纸箱宽】/100+0.03)*(【规格宽】/ 100 +0.1)))";
  849. cubage_expression = "( 【纸箱宽】 /100+0.03)*(【纸箱宽】/100+0.03)*(【规格宽】/ 100 +0.1)";
  850. AddKeyValue("纸箱宽", bz.mtrlname.Length > 2 ? bz.mtrlname.Substring(0, 2) : bz.mtrlname);
  851. break;
  852. }
  853. }
  854. }
  855. else if (mattress.packtype == 2)
  856. {
  857. mattress.loading_type = "国内";
  858. fob_expression = "【地区FOB费用】/(【柜型立方数】/((【规格宽】/100+0.03)*(【规格长】/100+0.03)*(【规格高】/100+0.03)))";
  859. }
  860. #endregion
  861. #region 计算FOB
  862. if (!string.IsNullOrEmpty(mattress.area) && !string.IsNullOrEmpty(mattress.cabinet_type) && !string.IsNullOrEmpty(mattress.loading_type))
  863. {
  864. //地区FOB费用
  865. if (new List<string>() { "大柜", "小柜" }.Contains(mattress.cabinet_type) && new List<string>() { "普通地区", "特定地区" }.Contains(mattress.area))
  866. {
  867. fob_expression = fob_expression.Replace("【地区FOB费用】", $"【{mattress.cabinet_type.Trim()}-{mattress.area.Trim()}-地区FOB费用】");
  868. }
  869. //柜型立方数
  870. if (new List<string>() { "大柜", "小柜" }.Contains(mattress.cabinet_type))
  871. {
  872. fob_expression = fob_expression.Replace("【柜型立方数】", $"【{mattress.cabinet_type.Trim()}-柜型立方数】");
  873. }
  874. //纸箱宽 见上面
  875. //柜型米数
  876. if (new List<string>() { "大柜", "小柜" }.Contains(mattress.cabinet_type))
  877. {
  878. fob_expression = fob_expression.Replace("【柜型米数】", $"【{mattress.cabinet_type.Trim()}-柜型米数】");
  879. }
  880. mattress.fob_replace_formula = fob_expression;
  881. mattress.fob = Calculate(fob_expression, "FOB").DecimalValue;
  882. //半成品:如果PE袋物料是含 半成品专用 的编码,FOB需要除以数量
  883. var bzList2 = mxlist.Where(t => t.formulatype == 3).ToList();
  884. foreach (var bz in bzList2)
  885. {
  886. if (bz.qty.Value > 0 && bz.mtrlname.IndexOf("半成品专用") > -1)
  887. {
  888. mattress.fob /= bz.qty.Value;
  889. mattress.fob_replace_formula = $"{mattress.fob_replace_formula} / {bz.qty.Value}";
  890. }
  891. }
  892. }
  893. else {
  894. mattress.fob = 0;
  895. }
  896. AddKeyValue("FOB", mattress.fob);
  897. #endregion
  898. #region 计算体积
  899. if (mattress.fob > 0)
  900. {
  901. mattress.cubage = Calculate(cubage_expression, "体积").DecimalValue;
  902. }
  903. #endregion
  904. #region 计算人工费用
  905. var mattersstype = new u_mattress_type() { mattresstypeid = mattress.mattresstypeid };
  906. DbSqlHelper.SelectOne(cmd, mattersstype, "hrcost_formula,biandaiqty,zhizao_amt,guanli_rate,typerate,dannum1_rate,dannum2_rate,dannum3_rate,dannum4_rate");
  907. if(mattress.biandai_qty == 0 && mattress.if_m_chai == 0 && mattress.if_z_chai == 0 && mattress.if_d_chai == 0)
  908. {
  909. mattress.biandai_qty = mattersstype.biandaiqty;
  910. }
  911. mattress.hrcost_replace_formula = mattersstype.hrcost_formula;
  912. mattress.zhizao_amt = mattersstype.zhizao_amt;
  913. mattress.guanli_rate = mattersstype.guanli_rate;
  914. var diancengList = mxlist.Where(t => t.formulatype == 1).ToList();
  915. int diancengCount = 0;
  916. foreach(var dianceng in diancengList)
  917. {
  918. if (dianceng.formulakind == 32) diancengCount++;
  919. }
  920. AddKeyValue("垫层数量", diancengCount);
  921. AddKeyValue("制造费用", mattress.zhizao_amt);
  922. AddKeyValue("管理费点", mattress.guanli_rate);
  923. mattress.hrcost = Calculate(mattress.hrcost_replace_formula, "人工费用").DecimalValue;
  924. AddKeyValue("人工费用", mattress.hrcost);
  925. #endregion
  926. #region 计算边带费用
  927. if (!isNewFormula || !formula_replacements.ContainsKey("【边带费用】"))
  928. {
  929. mattress.biandaicost_replace_formula = "【边带条数】*【边带单价】*((【规格宽】+【规格长】)*2+30)/100";
  930. }
  931. else
  932. {
  933. mattress.biandaicost_replace_formula = formula_replacements["【边带费用】"];
  934. }
  935. AddKeyValue("边带条数", mattress.biandai_qty);
  936. mattress.biandaicost = Calculate(mattress.biandaicost_replace_formula, "边带费用").DecimalValue;
  937. AddKeyValue("边带费用", mattress.biandaicost);
  938. #endregion
  939. #region 辅料 有打钮纽扣 加0.13 工厂利润率
  940. var fuliaoList = mxlist.Where(t => t.formulatype == 2 && t.mtrlname.IndexOf("打钮") > -1).ToList();
  941. if (fuliaoList.Any()) mattress.profitrate += 0.13M;
  942. #endregion
  943. #region 拼侧 最大金额的侧 和 工厂利润率加点
  944. CalCulatePince(mattress, mxlist, isNewFormula);
  945. #endregion
  946. #region 内布套特殊加点
  947. CalCulateNetBuTao(mattress, mxlist);
  948. #endregion
  949. #region 拆装特殊加点
  950. CalCulateChaiZhuang(mattress);
  951. #endregion
  952. #region 海绵款特殊扣点
  953. CalCulateHaiMian(mattress);
  954. #endregion
  955. #region 计算主表 材料成本
  956. var aa = new List<decimal>();
  957. mxlist.ForEach(t => {
  958. var _costamt = t.costamt.Value;
  959. if (isNewFormula)
  960. {
  961. decimal _dannum_rate = 0;
  962. #region 计算损耗率
  963. switch (mattress.dannum_type.Value)
  964. {
  965. case 1:
  966. if (t.dannum1_rate != null) _dannum_rate = t.dannum1_rate.Value;
  967. break;
  968. case 2:
  969. if (t.dannum2_rate != null) _dannum_rate = t.dannum2_rate.Value;
  970. break;
  971. case 3:
  972. if (t.dannum3_rate != null) _dannum_rate = t.dannum3_rate.Value;
  973. break;
  974. case 4:
  975. if (t.dannum4_rate != null) _dannum_rate = t.dannum4_rate.Value;
  976. break;
  977. }
  978. _costamt = _costamt * (1 + _dannum_rate);
  979. #endregion
  980. // 新公式排除床网计算
  981. if (t.formulatype != 99)
  982. {
  983. if (new List<int> { 101, 102 }.Contains(t.formulatype.Value))
  984. {
  985. /// 內布套 需要勾选了标记才纳入计算
  986. if (mattress.if_n_butao != null && mattress.if_n_butao.Value > 0)
  987. {
  988. aa.Add(_costamt);
  989. }
  990. }
  991. else if (new List<int> { 103 }.Contains(t.formulatype.Value))
  992. {
  993. /// 顶布裥棉 需要勾选了标记才纳入计算
  994. if (mattress.if_w_butao != null && mattress.if_w_butao.Value > 0)
  995. {
  996. aa.Add(_costamt);
  997. }
  998. }
  999. else
  1000. {
  1001. aa.Add(_costamt);
  1002. }
  1003. }
  1004. }
  1005. else
  1006. {
  1007. aa.Add(_costamt);
  1008. }
  1009. });
  1010. mattress.total_material_cost = aa.Sum();
  1011. AddKeyValue("材料成本", mattress.total_material_cost);
  1012. #endregion
  1013. //#region 标准金额
  1014. //if (!isNewFormula)
  1015. //{
  1016. // // 旧公式
  1017. // CalCulateCostNew(mattress, "标准");
  1018. // // 查找点数
  1019. // decimal _rate = GetWorkmanshipRate(mattress, "num_10", "标准");
  1020. // _rate = _rate == 0 ? 1 : _rate;
  1021. // mattress.foreign_cost_bz = mattress.dept_cost / _rate;
  1022. //}
  1023. //else
  1024. //{
  1025. // CalCulateCostNew(mattress, "标准", mattersstype);
  1026. // mattress.foreign_cost_bz = mattress.dept_cost;
  1027. //}
  1028. //AddKeyValue("标准金额", mattress.foreign_cost_bz);
  1029. //#endregion
  1030. //#region 大单金额
  1031. //if (!isNewFormula)
  1032. //{
  1033. // // 旧公式
  1034. // CalCulateCostNew(mattress, "大单");
  1035. // // 查找点数
  1036. // decimal _rate2 = GetWorkmanshipRate(mattress, "num_11", "大单");
  1037. // _rate2 = _rate2 == 0 ? 1 : _rate2;
  1038. // mattress.foreign_cost_dd = mattress.dept_cost / _rate2;
  1039. //}
  1040. //else
  1041. //{
  1042. // CalCulateCostNew(mattress, "大单", mattersstype);
  1043. // mattress.foreign_cost_dd = mattress.dept_cost;
  1044. //}
  1045. //AddKeyValue("大单金额", mattress.foreign_cost_dd);
  1046. //#endregion
  1047. if (!isNewFormula)
  1048. {
  1049. // 旧公式
  1050. CalCulateCostNew(mattress, "散单");
  1051. }
  1052. else
  1053. {
  1054. CalCulateCostNew(mattress, "散单", isNewFormula);
  1055. }
  1056. AddKeyValue("散单金额", mattress.foreign_cost);
  1057. }
  1058. /// <summary>
  1059. /// 计算拼侧最大金额的侧和工厂利润率加点
  1060. /// </summary>
  1061. /// <param name="mattress"></param>
  1062. /// <param name="mxlist"></param>
  1063. private void CalCulatePince(u_mattress mattress, List<u_mattress_mx_mtrl> mxlist, Boolean isNewFormula = true)
  1064. {
  1065. var mianliaoList = mxlist.Where(t => t.formulatype == 0).ToList();
  1066. var costAmounts = new Dictionary<string, decimal>
  1067. {
  1068. { "普通大侧", 0m },
  1069. { "上下拼侧1", 0m },
  1070. { "上下拼侧2", 0m },
  1071. { "上下拼侧3", 0m },
  1072. { "左右拼侧1", 0m },
  1073. { "左右拼侧2", 0m },
  1074. { "左右拼侧3", 0m },
  1075. { "左右拼侧4", 0m }
  1076. };
  1077. var costAmounts2 = new Dictionary<string, decimal>
  1078. {
  1079. { "小侧1-上下拼侧1", 0m },
  1080. { "小侧1-上下拼侧2", 0m },
  1081. { "小侧1-上下拼侧3", 0m }
  1082. };
  1083. foreach (var mianliao in mianliaoList)
  1084. {
  1085. if (costAmounts.ContainsKey(mianliao.sortcode))
  1086. {
  1087. costAmounts[mianliao.sortcode] += mianliao.costamt.Value;
  1088. }else if (costAmounts2.ContainsKey(mianliao.sortcode))
  1089. {
  1090. costAmounts2[mianliao.sortcode] += mianliao.costamt.Value;
  1091. }
  1092. }
  1093. // 找出最大拼侧金额及对应的拼侧名称
  1094. string lsTempMaxStr = null;
  1095. decimal ldeTempMax = decimal.MinValue;
  1096. foreach (var item in costAmounts)
  1097. {
  1098. if (item.Value >= ldeTempMax)
  1099. {
  1100. ldeTempMax = item.Value;
  1101. lsTempMaxStr = item.Key;
  1102. }
  1103. }
  1104. // 清空不是最大金额的拼侧
  1105. foreach (var mianliao in mianliaoList)
  1106. {
  1107. if (mianliao.sortcode != lsTempMaxStr && new List<int>() { 2, 82, 42, 52, 62, 72 }.Contains(mianliao.formulakind.Value))
  1108. {
  1109. mianliao.costamt = 0;
  1110. }
  1111. }
  1112. // 找出最大小侧拼侧金额及对应的拼侧名称
  1113. string lsTempMaxStr2 = null;
  1114. decimal ldeTempMax2 = decimal.MinValue;
  1115. foreach (var item in costAmounts)
  1116. {
  1117. if (item.Value >= ldeTempMax)
  1118. {
  1119. ldeTempMax = item.Value;
  1120. lsTempMaxStr = item.Key;
  1121. }
  1122. }
  1123. if (ldeTempMax2 > 0)
  1124. {
  1125. // 清空不是最大金额的拼侧
  1126. foreach (var mianliao in mianliaoList)
  1127. {
  1128. if (mianliao.sortcode != lsTempMaxStr2 && new List<int>() { 3, 83, 43, 53, 63, 73 }.Contains(mianliao.formulakind.Value))
  1129. {
  1130. mianliao.costamt = 0;
  1131. }
  1132. }
  1133. }
  1134. // 计算拼侧数量
  1135. int pinceCnt = costAmounts.Values.Count(value => value > 0);
  1136. AddKeyValue("拼侧数量", pinceCnt);
  1137. // 判断是否有大侧
  1138. bool hasBigSide = mianliaoList.Any(row => new[] { 7, 8, 9, 10 }.Contains(row.formulakind.Value) && row.mtrlid.Value > 0);
  1139. AddKeyValue("大侧数量", Convert.ToInt32(hasBigSide));
  1140. string field = pinceCnt > 3 || (hasBigSide && (pinceCnt == 2 || pinceCnt == 3)) ? "num_3" : hasBigSide ? "num_1" : pinceCnt == 2 || pinceCnt == 3 ? "num_2" : string.Empty;
  1141. // 查找点数
  1142. mattress.profitrate_point = GetWorkmanshipRate(mattress, field, "工艺点数", isNewFormula);
  1143. AddKeyValue("工艺点数", mattress.profitrate_point);
  1144. //decimal extraProcesses = GetExtraAmt(mattress, 1);
  1145. //AddKeyValue("特殊工艺费用", extraProcesses);
  1146. }
  1147. /// <summary>
  1148. /// 计算内布套特殊加点
  1149. /// </summary>
  1150. /// <param name="mattress"></param>
  1151. /// <param name="mxlist"></param>
  1152. private void CalCulateNetBuTao(u_mattress mattress, List<u_mattress_mx_mtrl> mxlist)
  1153. {
  1154. if(mattress.if_n_butao == 1)
  1155. {
  1156. var butaoList = mxlist.Where(t => t.formulatype == 101 || t.formulatype == 102);
  1157. bool butaoFz = false, butaoJd = false;
  1158. // 检查内布套是否为复杂款
  1159. foreach (var butao in butaoList) {
  1160. if (butao.formulakind == 70 && butao.mtrlid > 0) { butaoFz = true; break; }
  1161. }
  1162. if (butaoFz)
  1163. {
  1164. foreach (var butao in butaoList)
  1165. {
  1166. if (butao.formulakind == 203 && butao.mtrlid > 0) { butaoFz = true; break; }
  1167. }
  1168. }
  1169. else
  1170. {
  1171. butaoJd = true; // 没有找到复杂款即为简单款
  1172. }
  1173. // 根据款式类型判断查询的字段
  1174. string field = butaoJd ? "num_4" : (butaoFz ? "num_5" : "");
  1175. AddKeyValue("内布套简单款", Convert.ToInt32(butaoJd));
  1176. AddKeyValue("内布套复杂款", Convert.ToInt32(butaoFz));
  1177. // 查找点数
  1178. //var workmanship = new u_workmanship_add() { deptid = mattress.deptid, mattresstypeid = mattress.mattresstypeid, workmanshipname = field };
  1179. mattress.butao_point = GetWorkmanshipRate(mattress, field, "内布套点数");
  1180. }
  1181. AddKeyValue("内布套点数", mattress.butao_point);
  1182. }
  1183. /// <summary>
  1184. /// 拆装特殊加点
  1185. /// </summary>
  1186. /// <param name="mattress"></param>
  1187. private void CalCulateChaiZhuang(u_mattress mattress)
  1188. {
  1189. int cnt = 0;
  1190. // 判断 if_m_chai, if_z_chai, if_d_chai 是否为 1
  1191. if (Convert.ToInt32(mattress.if_m_chai) == 1) cnt++;
  1192. if (Convert.ToInt32(mattress.if_z_chai) == 1) cnt++;
  1193. if (Convert.ToInt32(mattress.if_d_chai) == 1) cnt++;
  1194. // 根据款式类型判断查询的字段
  1195. string field = cnt == 1 ? "num_6" : (cnt > 1 ? "num_7" : "");
  1196. AddKeyValue("拆装数量", cnt);
  1197. // 查找点数
  1198. mattress.chaizhuang_point = GetWorkmanshipRate(mattress, field, "拆装点数");
  1199. AddKeyValue("拆装点数", mattress.chaizhuang_point);
  1200. }
  1201. /// <summary>
  1202. /// 计算海绵款特殊扣点
  1203. /// </summary>
  1204. /// <param name="mattress"></param>
  1205. private void CalCulateHaiMian(u_mattress mattress)
  1206. {
  1207. if (mattress.if_haimian_type == 1)
  1208. {
  1209. // 根据款式类型判断查询的字段
  1210. string field = "num_8";
  1211. // 查找点数
  1212. mattress.haimian_point = GetWorkmanshipRate(mattress, field, "海绵扣点");
  1213. }
  1214. AddKeyValue("海绵扣点", mattress.haimian_point);
  1215. }
  1216. /// <summary>
  1217. /// 查询工艺加点设置
  1218. /// </summary>
  1219. /// <param name="label"></param>
  1220. /// <returns></returns>
  1221. public List<u_workmanship_add> GetWorkmanshipAdd(string label)
  1222. {
  1223. var list = new List<u_workmanship_add>();
  1224. var outputFields = @"deptid, mattresstypeid, formula, rate";
  1225. var selectStr = @"SELECT deptid, mattresstypeid, formula, rate FROM u_workmanship_add ";
  1226. var whereList = new List<string>();
  1227. whereList.Add("u_workmanship_add.inuse = 1");
  1228. whereList.Add("workmanshipname = @workmanshipname");
  1229. var param = new Dictionary<string, object>();
  1230. param.Add("@workmanshipname", label);
  1231. DbSqlHelper.SelectJoin(cmd, selectStr, ListEx.GetWhereStr(whereList), param, "mattressid", outputFields, 0, 0, list);
  1232. return list;
  1233. }
  1234. /// <summary>
  1235. /// 获取工厂利润率
  1236. /// </summary>
  1237. /// <param name="mattress"></param>
  1238. /// <param name="field">旧表字段名</paramD>
  1239. /// <param name="label">新表变量名</paramD>
  1240. /// <returns></returns>
  1241. public decimal GetWorkmanshipRate(u_mattress mattress, string field, string label, Boolean isNewFormula = true)
  1242. {
  1243. decimal rate = 0;
  1244. if (field == "") return 0;
  1245. if (isNewFormula)
  1246. {
  1247. var addList = GetWorkmanshipAdd(label);
  1248. var tgList = addList.Where(o => o.deptid == mattress.deptid && o.mattresstypeid == mattress.mattresstypeid).ToList();
  1249. if (tgList.Count <= 0) tgList = addList.Where(o => o.deptid == mattress.deptid).ToList();
  1250. if (tgList.Count <= 0) tgList = addList.Where(o => o.mattresstypeid == mattress.mattresstypeid).ToList();
  1251. if (tgList.Count <= 0) tgList = addList;
  1252. if (tgList.Count > 0)
  1253. {
  1254. var item = tgList[0];
  1255. rate = item.rate == null ? 0 : Convert.ToDecimal(item.rate);
  1256. var _formula = Convert.ToString(item.formula);
  1257. if (!string.IsNullOrEmpty(_formula))
  1258. {
  1259. AddKeyValue(label, rate);
  1260. rate = Calculate(_formula, label).DecimalValue;
  1261. }
  1262. }
  1263. }
  1264. else
  1265. {
  1266. cmd.CommandText = @"SELECT " + field + " FROM u_workmanship_dianshu WHERE deptid = @deptid AND mattresstypeid = @mattresstypeid";
  1267. cmd.Parameters.Clear();
  1268. cmd.Parameters.AddWithValue("@deptid", mattress.deptid);
  1269. cmd.Parameters.AddWithValue("@mattresstypeid", mattress.mattresstypeid);
  1270. using (var reader = cmd.ExecuteReader())
  1271. {
  1272. if (reader.Read())
  1273. {
  1274. rate = reader[field] == null ? 0 : Convert.ToDecimal(reader[field]);
  1275. }
  1276. }
  1277. }
  1278. return rate;
  1279. }
  1280. /// <summary>
  1281. /// 计算大小单加点
  1282. /// </summary>
  1283. /// <param name="mattress"></param>
  1284. /// <param name="typename"></param>
  1285. private void CalCulateDanNum(u_mattress mattress,string typename)
  1286. {
  1287. var _typename = typename;
  1288. if (mattress.dannum_type.Value != 1)
  1289. {
  1290. switch(mattress.dannum_type.Value)
  1291. {
  1292. case 1:
  1293. _typename = "散单";
  1294. break;
  1295. case 2:
  1296. _typename = "标准";
  1297. break;
  1298. case 3:
  1299. _typename = "大单";
  1300. break;
  1301. case 4: // "小单":
  1302. _typename = "";
  1303. break;
  1304. }
  1305. }
  1306. // 根据款式类型判断查询的字段
  1307. string field = "散单".Equals(_typename) ? "num_9" : "标准".Equals(_typename) ? "num_10" : "大单".Equals(_typename) ? "num_11" : "";
  1308. // 查找点数
  1309. decimal _rate = GetWorkmanshipRate(mattress, field, typename);
  1310. mattress.dannum_rate = _rate == 0 ? 1 : _rate;
  1311. AddKeyValue("大小单", mattress.dannum_rate);
  1312. }
  1313. private decimal CalCulateDanNumRate(u_mattress mattress, string typename)
  1314. {
  1315. // 根据款式类型判断查询的字段
  1316. string field = "散单".Equals(typename) ? "num_9" : "标准".Equals(typename) ? "num_10" : "大单".Equals(typename) ? "num_11" : "";
  1317. // 查找点数
  1318. decimal _rate = GetWorkmanshipRate(mattress, field, typename);
  1319. return _rate;
  1320. }
  1321. /// <summary>
  1322. ///
  1323. /// </summary>
  1324. private void GetDannumRate(u_mattress mattress)
  1325. {
  1326. var mattressType = new u_mattress_type() { mattresstypeid = mattress.mattresstypeid };
  1327. DbSqlHelper.SelectOne(cmd, mattressType, "hrcost_formula,biandaiqty,zhizao_amt,guanli_rate,typerate,dannum1_rate,dannum2_rate,dannum3_rate,dannum4_rate");
  1328. var dept = new u_dept() { deptid = mattress.deptid.Value };
  1329. DbSqlHelper.SelectOne(cmd, dept, "pricelistid,managerate,com_profitrate,dannum1_rate,dannum2_rate,dannum3_rate,dannum4_rate");
  1330. decimal? com_profitrate_dannum = 0;
  1331. decimal _rate = 1;
  1332. if (mattress.dannum_type == null)
  1333. {
  1334. mattress.dannum_type = 2;
  1335. }
  1336. switch (mattress.dannum_type.Value)
  1337. {
  1338. case 1: // "散单":
  1339. _rate = mattressType.dannum1_rate.Value;
  1340. com_profitrate_dannum = dept.dannum1_rate;
  1341. break;
  1342. case 3: // "大单":
  1343. _rate = mattressType.dannum3_rate.Value;
  1344. com_profitrate_dannum = dept.dannum3_rate;
  1345. break;
  1346. case 4: // "小单":
  1347. _rate = mattressType.dannum4_rate.Value;
  1348. com_profitrate_dannum = dept.dannum4_rate;
  1349. break;
  1350. default: // "标准":
  1351. _rate = mattressType.dannum2_rate.Value;
  1352. com_profitrate_dannum = dept.dannum2_rate;
  1353. break;
  1354. }
  1355. AddKeyValue("大小单类型", mattress.dannum_type.Value);
  1356. mattress.dannum_rate = _rate;
  1357. AddKeyValue("大小单系数", _rate);
  1358. AddKeyValue("款式系数", mattressType.typerate.Value);
  1359. #region 公式利润点
  1360. AddKeyValue("管理费用点", dept.managerate);
  1361. AddKeyValue("公司利润点(部门)", dept.com_profitrate);
  1362. AddKeyValue("公司利润点", dept.com_profitrate + com_profitrate_dannum);
  1363. #endregion
  1364. }
  1365. /// <summary>
  1366. /// 计算成本
  1367. /// </summary>
  1368. /// <param name="mattress"></param>
  1369. /// <param name="typename"></param>
  1370. private void CalCulateCostNew(u_mattress mattress, string typename, Boolean isNewFormula = false)
  1371. {
  1372. #region 判断大小单
  1373. if (isNewFormula)
  1374. {
  1375. GetDannumRate(mattress);
  1376. }
  1377. #endregion
  1378. #region 总成本-车间成本
  1379. CalCulateDanNum(mattress, typename);
  1380. if (mattress.if_zhedie_type == 1)
  1381. {
  1382. var _formula = formula_replacements["【车间成本】"];
  1383. AddFormulaKeyValue("车间成本", "( " + _formula + " ) * 2");
  1384. mattress.total_cost = CalculateVarFormula("车间成本").DecimalValue;
  1385. }
  1386. else
  1387. {
  1388. mattress.total_cost = CalculateVarFormula("车间成本").DecimalValue;
  1389. }
  1390. AddKeyValue("车间成本", mattress.total_cost);
  1391. #endregion
  1392. #region 不含税出厂价
  1393. mattress.nottax_factory_cost = CalculateVarFormula("不含税出厂价").DecimalValue;
  1394. AddKeyValue("不含税出厂价", mattress.nottax_factory_cost);
  1395. #endregion
  1396. #region 部门不含税价
  1397. mattress.nottax_dept_cost = CalculateVarFormula("部门不含税价").DecimalValue;
  1398. AddKeyValue("部门不含税价", mattress.nottax_dept_cost);
  1399. #endregion
  1400. #region 底价
  1401. decimal _dijia = CalculateVarFormula("底价").DecimalValue;
  1402. AddKeyValue("底价", _dijia);
  1403. #endregion
  1404. #region 佣金
  1405. decimal _yongjin = CalculateVarFormula("佣金").DecimalValue;
  1406. AddKeyValue("佣金", _yongjin);
  1407. #endregion
  1408. #region 税金
  1409. mattress.taxes = CalculateVarFormula("税金").DecimalValue;
  1410. AddKeyValue("税金", mattress.taxes);
  1411. #endregion
  1412. #region 部门含税价=(部门不含税价+佣金*0.06)*税率*折扣率(fob>0)
  1413. if (mattress.fob == 0) {
  1414. mattress.discount = 1;
  1415. AddKeyValue("折扣率", mattress.discount);
  1416. }
  1417. mattress.dept_cost = CalculateVarFormula("部门含税价").DecimalValue;
  1418. AddKeyValue("部门含税价", mattress.dept_cost);
  1419. #endregion
  1420. #region 外币价= 部门含税价/汇率
  1421. //if (mattress.moneyrate > 0)
  1422. //{
  1423. // if ("标准".Equals(typename)) mattress.foreign_cost_bz = mattress.dept_cost / mattress.moneyrate;
  1424. // else if ("大单".Equals(typename)) mattress.foreign_cost_dd = mattress.dept_cost / mattress.moneyrate;
  1425. // else if ("散单".Equals(typename)) mattress.foreign_cost = mattress.dept_cost / mattress.moneyrate;
  1426. //}
  1427. decimal _waibi = 0;
  1428. if (mattress.moneyrate > 0)
  1429. {
  1430. _waibi = CalculateVarFormula("外币价").DecimalValue;
  1431. } else
  1432. {
  1433. _waibi = mattress.dept_cost.Value;
  1434. }
  1435. mattress.foreign_cost = _waibi;
  1436. AddKeyValue("外币价", _waibi);
  1437. #endregion
  1438. }
  1439. /// <summary>
  1440. /// 保存床垫报价
  1441. /// </summary>
  1442. /// <param name="mattress"></param>
  1443. /// <param name="mxlist"></param>
  1444. /// <param name="subspecs">副规格列表</param>
  1445. public void SaveMattress(u_mattress mattress,List<u_mattress_mx_mtrl> mxlist, List<u_mattress_mx_extra> extraProcesses = null, List<u_mattress_mx_extra> extraCosts = null, bool iferpmtrl = false, string createby = "")
  1446. {
  1447. var fields = "mattressname, deptid, mattresscode, mattresstypeid, mattress_width, mattress_length, mattress_height, packtype, packqty, woodpallettype, total_hr_cost, total_material_cost, fees_dscrp, total_fees_cost, total_cost, taxrate, taxes, commissionrate, commission, fob," +
  1448. " profitrate, dept_profitrate, moneyrate, nottax_factory_cost, nottax_dept_cost, foreign_cost, diameter, area, cabinet_type, hrcost, biandaicost, createtime, createby, mattressrelcode, other_rate, flag, dept_profitrate_rangli, profitrate_point, if_moneyrate, discount, if_m_chai," +
  1449. " if_z_chai, if_d_chai, if_n_butao, if_w_butao, if_m_wbutao_way, s_cover_qty, z_cover_qty, x_cover_qty, biandai_qty, s_m_cover_qty, z_m_cover_qty, x_m_cover_qty, chaizhuang_point, haimian_point, if_zhedie_type, qr_auditingrep, qr_auditingdate, if_bcp_type, zhizao_amt, foreign_cost_bz, " +
  1450. "cubage, extras_cost, extras_cost_dscrp, parentid, flag, xd_flag, dannum_type,dannum_cost1,dannum_cost2, dannum_cost3, dannum_cost4, dijia_cost1,dijia_cost2,dijia_cost3,dijia_cost4";
  1451. var fieldsMx = "mattressmxid,mattressid,formulaid,formula,replace_formula,if_success,priceunit,shrinkage,mtrlid,price,gram_weight,cloth_width,if_inputqty,qty ,costamt,if_areaprice,thickness,chastr,xu,useqty,useformula,replace_useformula,gydscrp,mattress_width,mattress_length";
  1452. var fieldsExtra = "mattressmxid,mattressid, extraid, extramxid, extraname, price, qty, dscrp, mtrlid";
  1453. mattress.qr_auditingdate = context.opdate;
  1454. mattress.qr_auditingrep = context.tokendata.username;
  1455. if (iferpmtrl)
  1456. {
  1457. fields += ",erp_mtrlcode,erp_mtrlid";
  1458. }
  1459. if (mattress.mattressid <= 0)
  1460. {
  1461. //新建
  1462. mattress.createtime = context.opdate;
  1463. if (mattress.parentid == null || mattress.parentid == 0) mattress.createby = context.tokendata.username;
  1464. if (!string.IsNullOrEmpty(createby)) mattress.createby = createby;
  1465. mattress.mattressid = BllHelper.GetID(cmd, "u_mattress");
  1466. fields = "mattressid," + fields;
  1467. if (string.IsNullOrEmpty(mattress.mattresscode))
  1468. {
  1469. var mattresstype = new u_mattress_type() { mattresstypeid = mattress.mattresstypeid };
  1470. DbSqlHelper.SelectOne(cmd, mattresstype, "typecode");
  1471. mattress.mattresscode = $"{mattresstype.typecode}-{context.opdate.ToString("yyyyMMdd")}{(mattress.mattressid % 10000).ToString("D4")}";
  1472. }
  1473. DbSqlHelper.Insert(cmd, "u_mattress", null, mattress, fields);
  1474. }
  1475. else
  1476. {
  1477. // 删除所有明细
  1478. cmd.CommandText = @"DELETE u_mattress_mx_mtrl WHERE mattressid = @mattressid";
  1479. cmd.Parameters.Clear();
  1480. cmd.Parameters.AddWithValue("@mattressid", mattress.mattressid);
  1481. cmd.ExecuteNonQuery();
  1482. // 删除所有额外费用明细
  1483. cmd.CommandText = @"DELETE u_mattress_mx_extra WHERE mattressid = @mattressid";
  1484. cmd.Parameters.Clear();
  1485. cmd.Parameters.AddWithValue("@mattressid", mattress.mattressid);
  1486. cmd.ExecuteNonQuery();
  1487. DbSqlHelper.Update(cmd, "u_mattress", null, mattress, "mattressid", fields);
  1488. }
  1489. if (mxlist != null && mxlist.Any())
  1490. {
  1491. foreach (var item in mxlist)
  1492. {
  1493. item.mattressid = mattress.mattressid;
  1494. if (item.mattressmxid == null || item.mattressmxid <= 0)
  1495. {
  1496. item.mattressmxid = BllHelper.GetID(cmd, "u_mattress_mx_mtrl");
  1497. }
  1498. DbSqlHelper.Insert(cmd, "u_mattress_mx_mtrl", null, item, fieldsMx);
  1499. }
  1500. }
  1501. if (extraProcesses != null && extraProcesses.Any())
  1502. {
  1503. foreach (var item in extraProcesses)
  1504. {
  1505. item.mattressid = mattress.mattressid;
  1506. item.mattressmxid = BllHelper.GetID(cmd, "u_mattress_mx_extra");
  1507. DbSqlHelper.Insert(cmd, "u_mattress_mx_extra", null, item, fieldsExtra);
  1508. }
  1509. }
  1510. if (extraCosts != null && extraCosts.Any())
  1511. {
  1512. foreach (var item in extraCosts)
  1513. {
  1514. item.mattressid = mattress.mattressid;
  1515. item.mattressmxid = BllHelper.GetID(cmd, "u_mattress_mx_extra");
  1516. DbSqlHelper.Insert(cmd, "u_mattress_mx_extra", null, item, fieldsExtra);
  1517. }
  1518. }
  1519. // 更新计价历史
  1520. var hisprice = new u_his_price
  1521. {
  1522. bednetid_mattressid = mattress.mattressid,
  1523. typeid = 1,
  1524. cmpdate = context.opdate,
  1525. cmpemp = context.tokendata.username,
  1526. nottax_dept_cost = mattress.nottax_dept_cost,
  1527. dept_cost = mattress.dept_cost,
  1528. foreign_cost = mattress.foreign_cost,
  1529. dannum_cost1 = mattress.dannum_cost1,
  1530. dannum_cost2 = mattress.dannum_cost2,
  1531. dannum_cost3 = mattress.dannum_cost3,
  1532. dannum_cost4 = mattress.dannum_cost4
  1533. };
  1534. var fieldsHs = "bednetid_mattressid, typeid, cmpdate, cmpemp, nottax_dept_cost, dept_cost, foreign_cost, dannum_cost1, dannum_cost2, dannum_cost3, dannum_cost4";
  1535. DbSqlHelper.Insert(cmd, "u_his_price", null, hisprice, fieldsHs);
  1536. }
  1537. public u_mattress GetMattress(int mattressid)
  1538. {
  1539. if(mattressid <= 0)
  1540. {
  1541. throw new LJCommonException("查找床垫报价失败,ID错误!");
  1542. }
  1543. var mattress = new u_mattress() { mattressid = mattressid };
  1544. var fields = @"mattressid,mattressname,deptid,mattresstypeid,mattresscode,mattress_width,mattress_length,mattress_height,packtype,packqty,woodpallettype,old_mtrlname,
  1545. total_hr_cost,total_material_cost,fees_dscrp,total_fees_cost,taxrate,commissionrate,commission,fob,profitrate,profitrate_point,butao_point,chaizhuang_point,
  1546. haimian_point,dannum_rate,hrcost,biandaicost,zhizao_amt,guanli_rate,discount,extras_cost,dept_profitrate,dept_profitrate_rangli,moneyrate,mattressrelcode,
  1547. flag,auditingrep,auditingdate,createtime,createby,total_cost,nottax_factory_cost,nottax_dept_cost,taxes,dept_cost,foreign_cost,foreign_cost_bz,
  1548. nottax_factory_cost/(dept_profitratedept_profitrate_rangli/100)asdijia_cost,xd_flag,xd_auditingrep,xd_auditingdate,qr_flag,qr_auditingrep,
  1549. qr_auditingdate,js1_flag,erp_mtrlcode,erp_cb_updatetime,if_bcp_type,if_zhedie_type,if_w_butao,biandai_qty,other_rate,if_moneyrate,parentid,
  1550. if_m_chai,if_z_chai,if_d_chai,if_n_butao,if_m_wbutao_way,s_cover_qty,z_cover_qty,x_cover_qty,s_m_cover_qty,z_m_cover_qty,x_m_cover_qty,cabinet_type,area,diameter,cubage,erp_mtrlcode,erp_mtrlid,dannum_type";
  1551. DbSqlHelper.SelectOne(cmd, mattress, fields);
  1552. return mattress;
  1553. }
  1554. public List<u_mattress_mx_mtrl> GetMattressMxMtrl(int mattressid,List<string> extraWhere = null)
  1555. {
  1556. var mxList = new List<u_mattress_mx_mtrl>();
  1557. var outputFields = @"mattressmxid, mattressid, formulakind, formula, formulaid, mtrlid, mtrlname, price, gram_weight, cloth_width, if_inputqty, qty , costamt, if_areaprice, formulatype, sortcode, if_mtrl, if_success, replace_formula, priceunit, shrinkage, name, dannum1_rate, dannum2_rate, dannum3_rate, dannum4_rate, thickness, chastr, xu, useqty, useformula, replace_useformula , gydscrp, mattress_width, mattress_length, spring_qty_width, spring_qty_length";
  1558. var selectStr = @"
  1559. SELECT
  1560. u_mattress_mx_mtrl.mattressmxid,
  1561. u_mattress_mx_mtrl.mattressid,
  1562. u_mattress_formula.formulakind as formulakind ,
  1563. u_mattress_mx_mtrl.formula as formula,
  1564. u_mattress_mx_mtrl.formulaid,
  1565. u_mattress_mx_mtrl.mtrlid,
  1566. CASE WHEN u_mattress_formula.formulatype = 99 THEN vv_bednet.bednetname ELSE vv_mtrl_price.mtrlname END AS mtrlname,
  1567. u_mattress_mx_mtrl.price,
  1568. u_mattress_mx_mtrl.gram_weight,
  1569. u_mattress_mx_mtrl.cloth_width,
  1570. u_mattress_mx_mtrl.if_inputqty,
  1571. u_mattress_mx_mtrl.qty ,
  1572. u_mattress_mx_mtrl.costamt,
  1573. u_mattress_mx_mtrl.if_areaprice,
  1574. u_mattress_formula.formulatype,
  1575. case when u_mattress_mx_mtrl.chastr <> '' then u_mattress_mx_mtrl.chastr else u_mattress_formula.sortcode end as sortcode,
  1576. u_mattress_formula.if_mtrl,
  1577. u_mattress_mx_mtrl.if_success,
  1578. u_mattress_mx_mtrl.replace_formula,
  1579. u_mattress_mx_mtrl.priceunit,
  1580. u_mattress_mx_mtrl.shrinkage,
  1581. CASE when u_mattress_formula.if_mtrl > 1 THEN '+' ELSE '' END as addmx,
  1582. CASE when u_mattress_formula.if_mtrl > 1 THEN '-' ELSE '' END as delmx,
  1583. u_mtrl_price.name,
  1584. ISNULL(u_mtrltype.dannum1_rate, 0) AS dannum1_rate,
  1585. ISNULL(u_mtrltype.dannum2_rate, 0) AS dannum2_rate,
  1586. ISNULL(u_mtrltype.dannum3_rate, 0) AS dannum3_rate,
  1587. ISNULL(u_mtrltype.dannum4_rate, 0) AS dannum4_rate,
  1588. u_mattress_mx_mtrl.thickness,
  1589. u_mattress_mx_mtrl.chastr,
  1590. u_mattress_mx_mtrl.xu,
  1591. u_mattress_mx_mtrl.useqty as useqty,
  1592. u_mattress_mx_mtrl.useformula,
  1593. u_mattress_mx_mtrl.replace_useformula ,
  1594. u_mattress_mx_mtrl.gydscrp,
  1595. u_mattress_mx_mtrl.mattress_width,
  1596. u_mattress_mx_mtrl.mattress_length,
  1597. CASE WHEN u_mattress_formula.formulatype = 99 THEN vv_bednetmx.spring_qty_width ELSE 0 END AS spring_qty_width,
  1598. CASE WHEN u_mattress_formula.formulatype = 99 THEN vv_bednetmx.spring_qty_length ELSE 0 END AS spring_qty_length
  1599. From u_mattress_mx_mtrl
  1600. Left join u_mattress_formula On u_mattress_formula.formulaid = u_mattress_mx_mtrl.formulaid
  1601. left outer join u_mtrl_price on u_mattress_mx_mtrl.mtrlid = u_mtrl_price.mtrlid
  1602. left outer join u_mtrltype on u_mtrltype.mtrltypeid = u_mtrl_price.mtrltype
  1603. Left OUTER JOIN (
  1604. select
  1605. mtrlid,
  1606. name as mtrlname
  1607. from u_mtrl_price
  1608. union all
  1609. select top 1
  1610. 0 as mtrlid,
  1611. ' ' as mtrlname
  1612. from u_user_jlhprice
  1613. ) AS vv_mtrl_price on vv_mtrl_price.mtrlid = u_mattress_mx_mtrl.mtrlid
  1614. Left OUTER JOIN (
  1615. SELECT u_bednet.bednetid,
  1616. rtrim(u_bednet_type.typename)+ ' ' + rtrim(u_bednet.bednetcode)+ ' '+cast(u_bednet.mattress_width as char(3))+ '*'
  1617. +cast(u_bednet.mattress_length as char(3))+ '*'+cast(u_bednet.mattress_height as char(3)) as bednetname
  1618. FROM u_bednet
  1619. inner join u_bednet_type ON u_bednet_type.bednettypeid = u_bednet.bednettypeid
  1620. ) as vv_bednet ON vv_bednet.bednetid = u_mattress_mx_mtrl.mtrlid
  1621. Left OUTER JOIN (
  1622. SELECT u_bednetmx.bednetid,
  1623. u_bednetmx.spring_qty_width,
  1624. u_bednetmx.spring_qty_length
  1625. FROM u_bednetmx
  1626. ) AS vv_bednetmx ON vv_bednetmx.bednetid = u_mattress_mx_mtrl.mtrlid ";
  1627. var whereList = new List<string>();
  1628. whereList.Add("u_mattress_mx_mtrl.mattressid = @mattressid");
  1629. if(extraWhere != null && extraWhere.Any())
  1630. {
  1631. whereList = whereList.Concat(extraWhere).ToList();
  1632. }
  1633. DbSqlHelper.SelectJoin(cmd, selectStr, ListEx.GetWhereStr(whereList), new Dictionary<string, object>() { { "@mattressid", mattressid } }, "mattressmxid", outputFields, 0, 0, mxList);
  1634. return mxList;
  1635. }
  1636. /// <summary>
  1637. /// 其他额外费用tab / 特殊工艺列表
  1638. /// </summary>
  1639. /// <param name="mattress"></param>
  1640. /// <param name="typeid"></param> 1: 特殊工艺。2:其他额外费用
  1641. /// <returns></returns>
  1642. public List<u_mattress_mx_extra> GetMattressMxExtra(int mattressid, int typeid)
  1643. {
  1644. var mxList = new List<u_mattress_mx_extra>();
  1645. var outputFields = @"mattressmxid,mattressid,extraid,extramxid,extratypename,extraname,price,dscrp,qty";
  1646. var selectStr = @"
  1647. SELECT
  1648. u_mattress_mx_extra.mattressid,
  1649. u_mattress_mx_extra.mattressmxid,
  1650. u_mattress_mx_extra.extraid,
  1651. u_mattress_mx_extra.extramxid,
  1652. u_mattress_mx_extra.extraname,
  1653. u_mattress_mx_extra.price,
  1654. u_mattress_mx_extra.qty,
  1655. u_mattress_mx_extra.dscrp
  1656. From u_mattress_mx_extra
  1657. Left OUTER JOIN u_mattress_extra_type On u_mattress_extra_type.extraid = u_mattress_mx_extra.extraid
  1658. Left OUTER JOIN u_mattress_extra On u_mattress_extra.extramxid = u_mattress_mx_extra.extramxid
  1659. ";
  1660. var whereList = new List<string>();
  1661. whereList.Add("u_mattress_mx_extra.mattressid = @mattressid");
  1662. whereList.Add("u_mattress_extra_type.typeid = @typeid");
  1663. DbSqlHelper.SelectJoin(cmd, selectStr, ListEx.GetWhereStr(whereList), new Dictionary<string, object>() { { "@mattressid", mattressid }, { "@typeid", typeid } }, "mattressmxid", outputFields, 0, 0, mxList);
  1664. return mxList;
  1665. }
  1666. /// <summary>
  1667. /// 获取副规格列表
  1668. /// </summary>
  1669. /// <param name="mattressid"></param>
  1670. /// <returns></returns>
  1671. public List<u_mattress> GetMattressSubspecs(int mattressid)
  1672. {
  1673. var list = new List<u_mattress>();
  1674. var outputFields = @"mattressid,mattresscode,mattress_width,mattress_length,mattress_height,mattressname,mattressrelcode,parentid,erp_mtrlid,erp_mtrlcode";
  1675. var selectStr = @"SELECT
  1676. mattressid,
  1677. mattresscode,
  1678. mattress_width,
  1679. mattress_length,
  1680. mattress_height,
  1681. mattressname,
  1682. mattressrelcode,
  1683. parentid,
  1684. erp_mtrlid,
  1685. erp_mtrlcode
  1686. FROM u_mattress
  1687. ";
  1688. var whereList = new List<string>();
  1689. whereList.Add(@"u_mattress.parentid = @mattressid OR parentid = (
  1690. SELECT parentid FROM u_mattress WHERE mattressid = @mattressid and parentid > 0
  1691. )");
  1692. DbSqlHelper.SelectJoin(cmd, selectStr, ListEx.GetWhereStr(whereList), new Dictionary<string, object>() { { "@mattressid", mattressid } }, "mattressid", outputFields, 0, 0, list);
  1693. return list;
  1694. }
  1695. /// <summary>
  1696. /// 获取副规格的床网弹簧排列数
  1697. /// </summary>
  1698. /// <param name="mattressid"></param>
  1699. /// <returns></returns>
  1700. public List<u_mattress_mx_mtrl> GetMattressSubspecsBednet(int mattressid)
  1701. {
  1702. var list = new List<u_mattress_mx_mtrl>();
  1703. var outputFields = @"mattressid,mtrlid,spring_qty_width,spring_qty_length,bednet_iffork,bednet_fork_qty";
  1704. var selectStr = @"SELECT
  1705. u_mattress_mx_mtrl.mattressid,
  1706. u_mattress_mx_mtrl.mattressmxid,
  1707. u_mattress_mx_mtrl.mtrlid,
  1708. ISNULL(u_bednetmx.spring_qty_width, 0) AS spring_qty_width,
  1709. ISNULL(u_bednetmx.spring_qty_length, 0) AS spring_qty_length,
  1710. ISNULL(u_bednet.iffork, 0) AS bednet_iffork,
  1711. ISNULL(u_bednet.fork_qty, 0) AS bednet_fork_qty
  1712. FROM u_mattress_mx_mtrl
  1713. LEFT JOIN u_mattress_formula On u_mattress_formula.formulaid = u_mattress_mx_mtrl.formulaid
  1714. LEFT OUTER JOIN u_bednetmx on u_bednetmx.bednetid = u_mattress_mx_mtrl.mtrlid
  1715. LEFT OUTER JOIN u_bednet on u_bednetmx.bednetid = u_bednet.bednetid
  1716. ";
  1717. var whereList = new List<string>();
  1718. whereList.Add("u_mattress_formula.formulatype = 99");
  1719. whereList.Add("u_mattress_mx_mtrl.mattressid = @mattressid");
  1720. DbSqlHelper.SelectJoin(cmd, selectStr, ListEx.GetWhereStr(whereList), new Dictionary<string, object>() { { "@mattressid", mattressid } }, "mattressmxid", outputFields, 0, 0, list);
  1721. return list;
  1722. }
  1723. /// <summary>
  1724. /// 获取床垫明细中,垫层出现的主副规格调整物料
  1725. /// </summary>
  1726. /// <param name="mattressid"></param>
  1727. /// <returns></returns>
  1728. public List<u_mattress_mx_mtrl> GetMattressMxSubspecsMtrl(int mattressid)
  1729. {
  1730. var list = new List<u_mattress_mx_mtrl>();
  1731. var outputFields = @"mattressid,mtrlid,chastr,formulakind,mtrlname";
  1732. var selectStr = @"SELECT
  1733. u_mattress_mx_mtrl.mattressid,
  1734. u_mattress_mx_mtrl.mattressmxid,
  1735. u_mattress_mx_mtrl.mtrlid,
  1736. u_mattress_mx_mtrl.chastr,
  1737. u_mattress_formula.formulakind,
  1738. vv_mtrl_price.mtrlname
  1739. FROM u_mattress_mx_mtrl
  1740. LEFT JOIN u_mattress_formula On u_mattress_formula.formulaid = u_mattress_mx_mtrl.formulaid
  1741. LEFT OUTER JOIN u_mtrl_price on u_mtrl_price.mtrlid = u_mattress_mx_mtrl.mtrlid
  1742. Left OUTER JOIN (
  1743. select
  1744. mtrlid,
  1745. name as mtrlname
  1746. from u_mtrl_price
  1747. union all
  1748. select top 1
  1749. 0 as mtrlid,
  1750. ' ' as mtrlname
  1751. from u_user_jlhprice
  1752. ) AS vv_mtrl_price on vv_mtrl_price.mtrlid = u_mattress_mx_mtrl.mtrlid
  1753. ";
  1754. var whereList = new List<string>();
  1755. whereList.Add("u_mattress_formula.formulatype = 1");
  1756. whereList.Add("u_mtrl_price.if_subspecs = 1");
  1757. whereList.Add("u_mattress_mx_mtrl.mattressid = @mattressid");
  1758. DbSqlHelper.SelectJoin(cmd, selectStr, ListEx.GetWhereStr(whereList), new Dictionary<string, object>() { { "@mattressid", mattressid } }, "mattressmxid", outputFields, 0, 0, list);
  1759. return list;
  1760. }
  1761. /// <summary>
  1762. /// 保存床垫复制清单
  1763. /// </summary>
  1764. /// <param name="mattressid"></param>
  1765. public void CopyMattressInterface(int cpoyid,int mattressid)
  1766. {
  1767. cmd.CommandText = @"DELETE u_mattress_interface WHERE mattressid = @mattressid";
  1768. cmd.Parameters.Clear();
  1769. cmd.Parameters.AddWithValue("@mattressid", mattressid);
  1770. cmd.ExecuteNonQuery();
  1771. cmd.CommandText = @"DELETE u_mattress_interface_qd WHERE mattressid = @mattressid";
  1772. cmd.Parameters.Clear();
  1773. cmd.Parameters.AddWithValue("@mattressid", mattressid);
  1774. cmd.ExecuteNonQuery();
  1775. cmd.CommandText = @"INSERT INTO u_mattress_interface (
  1776. mattressid
  1777. ,printid
  1778. ,itemname
  1779. ,bj_pzname
  1780. ,bj_namemx
  1781. ,bj_inputtype
  1782. ,actual_size
  1783. ,sb_craft
  1784. ,actual_size_sb
  1785. ,erp_pzid
  1786. ,ss_rate
  1787. ,ls_rate
  1788. )
  1789. SELECT @mattressid
  1790. ,printid
  1791. ,itemname
  1792. ,bj_pzname
  1793. ,bj_namemx
  1794. ,bj_inputtype
  1795. ,actual_size
  1796. ,sb_craft
  1797. ,actual_size_sb
  1798. ,erp_pzid
  1799. ,ss_rate
  1800. ,ls_rate
  1801. FROM u_mattress_interface
  1802. WHERE mattressid = @copy_id";
  1803. cmd.Parameters.Clear();
  1804. cmd.Parameters.AddWithValue("@mattressid", mattressid);
  1805. cmd.Parameters.AddWithValue("@copy_id", cpoyid);
  1806. cmd.ExecuteNonQuery();
  1807. cmd.CommandText = @"INSERT INTO u_mattress_interface_qd (
  1808. mattressid
  1809. ,printid
  1810. ,itemname
  1811. ,bj_pzname
  1812. ,bj_pzname_mx
  1813. ,mtrlid
  1814. ,erp_mtrlid
  1815. ,wrkgrpid
  1816. ,useqty
  1817. ,dscrp
  1818. ,actual_useqty
  1819. ,qd_actual_size
  1820. ,qd_pfgroupqty
  1821. ,formulaid
  1822. )
  1823. SELECT @mattressid
  1824. ,printid
  1825. ,itemname
  1826. ,bj_pzname
  1827. ,bj_pzname_mx
  1828. ,mtrlid
  1829. ,erp_mtrlid
  1830. ,wrkgrpid
  1831. ,useqty
  1832. ,dscrp
  1833. ,actual_useqty
  1834. ,qd_actual_size
  1835. ,qd_pfgroupqty
  1836. ,formulaid
  1837. FROM u_mattress_interface_qd
  1838. WHERE mattressid = @copy_id";
  1839. cmd.Parameters.Clear();
  1840. cmd.Parameters.AddWithValue("@mattressid", mattressid);
  1841. cmd.Parameters.AddWithValue("@copy_id", cpoyid);
  1842. cmd.ExecuteNonQuery();
  1843. }
  1844. public void CopyMattress(List<u_mattress> mattressList,int gwidth,int glength)
  1845. {
  1846. var bedNetHelpe = HelperBase.GetHelper<BedNetHelper>(cmd);
  1847. foreach(var mattress in mattressList)
  1848. {
  1849. var mattress_copy = GetMattress(mattress.mattressid);
  1850. var mxlist = new List<u_mattress_mx_mtrl>();
  1851. mattress_copy.deptid = mattress.deptid;
  1852. if (mattress.mattress_length > 0 && mattress.mattress_width > 0)
  1853. {
  1854. cmd.CommandText = @"SELECT u_mattress_mx_mtrl.mtrlid
  1855. FROM u_mattress_mx_mtrl
  1856. INNER JOIN u_mattress_formula ON u_mattress_formula.formulaid = u_mattress_mx_mtrl.formulaid
  1857. WHERE u_mattress_formula.formulakind = 99
  1858. AND u_mattress_mx_mtrl.mattressid = @mattressid
  1859. AND u_mattress_mx_mtrl.mtrlid > 0";
  1860. cmd.Parameters.Clear();
  1861. cmd.Parameters.AddWithValue("@mattressid", mattress.mattressid);
  1862. using(var reader = cmd.ExecuteReader())
  1863. {
  1864. while (reader.Read())
  1865. {
  1866. mxlist.Add(new u_mattress_mx_mtrl() { copty_mtrlid = Convert.ToInt32(reader["mtrlid"]) });
  1867. }
  1868. }
  1869. foreach(var mx in mxlist)
  1870. {
  1871. var bednet = new u_bednet() { bednetid = mx.copty_mtrlid, mattress_width = mattress.mattress_width ,mattress_length = mattress.mattress_length };
  1872. var bednetMx = new u_bednetmx() { spring_qty_width = gwidth, spring_qty_length = glength };
  1873. bedNetHelpe.CopyBedNet(bednet, bednetMx, out int newMtrlid);
  1874. mx.mtrlid = newMtrlid;
  1875. }
  1876. }
  1877. // 判断copy_bedNet.bednetcode是否存在@@字符串,如果存在,则删除@@后面的字符串,包括@@
  1878. if (mattress_copy.mattresscode.IndexOf("@@") > -1)
  1879. {
  1880. mattress_copy.mattresscode = mattress_copy.mattresscode.Substring(mattress_copy.mattresscode.IndexOf("@@"));
  1881. }
  1882. mattress_copy.mattresscode += " @@";
  1883. mattress_copy.mattresscode += DateTime.Now.ToString("yyyMMdd_mmhhss");
  1884. if (mattress_copy.mattressrelcode.IndexOf("@@") > -1)
  1885. {
  1886. mattress_copy.mattressrelcode = mattress_copy.mattressrelcode.Substring(mattress_copy.mattressrelcode.IndexOf("@@"));
  1887. }
  1888. mattress_copy.mattressrelcode += " @@";
  1889. mattress_copy.mattressrelcode += DateTime.Now.ToString("yyyMMdd_mmhhss");
  1890. mattress_copy.mattressid = 0;
  1891. mattress_copy.mattress_width = mattress.mattress_width > 0 ? mattress.mattress_width : mattress_copy.mattress_width;
  1892. mattress_copy.mattress_length = mattress.mattress_length > 0 ? mattress.mattress_length : mattress_copy.mattress_length;
  1893. if (!"维持原状".Equals(mattress.area)) mattress_copy.area = mattress.area;
  1894. if (!"维持原状".Equals(mattress.cabinet_type)) mattress_copy.cabinet_type = mattress.cabinet_type;
  1895. if (mattress.packtype == 0) mattress_copy.packqty = mattress.packqty;
  1896. mattress_copy.js1_flag = 0;
  1897. mattress_copy.js1_auditingrep = string.Empty;
  1898. mattress_copy.js1_auditingdate = null;
  1899. mattress_copy.xd_flag = 0;
  1900. var mattressMxMtrlList = GetMattressMxMtrl(mattress.mattressid);
  1901. foreach(var mx in mattressMxMtrlList)
  1902. {
  1903. mx.mattressid = 0;
  1904. mx.mattressmxid = 0;
  1905. }
  1906. var mattressMxExtra1List = GetMattressMxExtra(mattress.mattressid, 1);
  1907. foreach (var mx in mattressMxExtra1List)
  1908. {
  1909. mx.mattressid = 0;
  1910. mx.mattressmxid = 0;
  1911. }
  1912. var mattressMxExtra2List = GetMattressMxExtra(mattress.mattressid, 2);
  1913. foreach (var mx in mattressMxExtra2List)
  1914. {
  1915. mx.mattressid = 0;
  1916. mx.mattressmxid = 0;
  1917. }
  1918. try
  1919. {
  1920. //CalCulateFormula(mattress_copy, mattressMxMtrlList, true, true, mattressMxExtra1List, mattressMxExtra2List);
  1921. MattressCalculateCost(mattress_copy, mattressMxMtrlList, mattressMxExtra1List, mattressMxExtra2List);
  1922. }
  1923. catch (Exception e)
  1924. {
  1925. throw new LJCommonException(e.Message);
  1926. }
  1927. SaveMattress(mattress_copy, mattressMxMtrlList, mattressMxExtra1List, mattressMxExtra2List, true, mattress.createby);
  1928. var mattressSubspecs = GetMattressSubspecs(mattress.mattressid);
  1929. foreach (var sub in mattressSubspecs)
  1930. {
  1931. sub.parentid = mattress_copy.mattressid;
  1932. sub.mattressid = 0;
  1933. sub.mattresscode = "";
  1934. var mattressMxList = GetMattressMxMtrl(sub.mattressid);
  1935. foreach (var submx in mattressMxList)
  1936. {
  1937. submx.mattressid = 0;
  1938. submx.mattressmxid = 0;
  1939. }
  1940. var mattressMxExtra1 = GetMattressMxExtra(sub.mattressid, 1);
  1941. foreach (var mx in mattressMxExtra1)
  1942. {
  1943. mx.mattressid = 0;
  1944. mx.mattressmxid = 0;
  1945. }
  1946. var mattressMxExtra2 = GetMattressMxExtra(sub.mattressid, 2);
  1947. foreach (var mx in mattressMxExtra2)
  1948. {
  1949. mx.mattressid = 0;
  1950. mx.mattressmxid = 0;
  1951. }
  1952. SaveMattress(sub, mattressMxList, mattressMxExtra1, mattressMxExtra2);
  1953. }
  1954. CopyMattressInterface(mattress_copy.mattressid, mattress.mattressid);
  1955. foreach (var mx in mxlist)
  1956. {
  1957. cmd.CommandText = @"UPDATE u_mattress_mx_mtrl
  1958. SET mtrlid = @new_mtrlid
  1959. FROM u_mattress_mx_mtrl
  1960. INNER JOIN u_mattress_formula ON u_mattress_formula.formulaid = u_mattress_mx_mtrl.formulaid
  1961. WHERE u_mattress_formula.formulakind = 99
  1962. AND u_mattress_mx_mtrl.mattressid = @new_mattressid
  1963. AND u_mattress_mx_mtrl.mtrlid = @old_mtrld";
  1964. cmd.Parameters.Clear();
  1965. cmd.Parameters.AddWithValue("@new_mtrlid", mx.mtrlid);
  1966. cmd.Parameters.AddWithValue("@new_mattressid", mattress_copy.mattressid);
  1967. cmd.Parameters.AddWithValue("@old_mtrld", mx.copty_mtrlid);
  1968. cmd.ExecuteNonQuery();
  1969. }
  1970. }
  1971. }
  1972. public void SaveMattressInterface(int mattressid, List<u_mattress_interface> mxlist,List<u_mattress_interface_qd> qdlist)
  1973. {
  1974. cmd.CommandText = @"DELETE u_mattress_interface WHERE mattressid = @mattressid";
  1975. cmd.Parameters.Clear();
  1976. cmd.Parameters.AddWithValue("@mattressid", mattressid);
  1977. cmd.ExecuteNonQuery();
  1978. cmd.CommandText = @"DELETE u_mattress_interface_qd WHERE mattressid = @mattressid";
  1979. cmd.Parameters.Clear();
  1980. cmd.Parameters.AddWithValue("@mattressid", mattressid);
  1981. cmd.ExecuteNonQuery();
  1982. foreach (var mx in mxlist) {
  1983. mx.mattressid = mattressid;
  1984. mx.actual_size = mx.actual_size ?? "";
  1985. mx.sb_craft = mx.sb_craft ?? "";
  1986. mx.actual_size_sb = mx.actual_size_sb ?? "";
  1987. DbSqlHelper.Insert(cmd, mx, "mattressid,printid,itemname,bj_pzname,bj_namemx,actual_size,sb_craft,actual_size_sb,erp_pzid,bj_inputtype,ss_rate,ls_rate");
  1988. }
  1989. foreach (var mx in qdlist)
  1990. {
  1991. mx.mattressid = mattressid;
  1992. DbSqlHelper.Insert(cmd, mx, "mattressid,printid,itemname,bj_pzname,bj_pzname_mx,bj_pzname_mx_mx,wip_type,mtrlid,erp_mtrlid,wrkgrpid,wrkgrpid2,useqty,dscrp,actual_useqty,qd_actual_size,qd_pfgroupqty,ss_rate,ls_rate,sh_rate,formulaid,wrkgrpcode1,wrkgrpcode2");
  1993. }
  1994. AutoUpdateBcp(mattressid);
  1995. }
  1996. public void MattressCalculateCost(u_mattress mattress, List<u_mattress_mx_mtrl> mattressMx, List<u_mattress_mx_extra> extraProcesses, List<u_mattress_mx_extra> extraCosts)
  1997. {
  1998. // 没有输入默认按标准计算
  1999. //if (mattress.dannum_type == null || mattress.dannum_type == 0)
  2000. // 20250703:默认只保存标准的单据
  2001. mattress.dannum_type = 2;
  2002. // 作为记录不含税出厂价、部门含税价的各个大小单价格的载体
  2003. var _mattressMain = ObjectHelper.DeepCopy(mattress);
  2004. try
  2005. {
  2006. List<u_mattress> sumMattress = new List<u_mattress>();
  2007. for (var i = 1; i < 5; i++)
  2008. {
  2009. var _mattress = ObjectHelper.DeepCopy(mattress);
  2010. if (mattress.dannum_type.Value != i)
  2011. {
  2012. _mattress.dannum_type = i;
  2013. CalCulateFormula(_mattress, mattressMx, true, true, extraProcesses, extraCosts);
  2014. var nottax_factory_cost = Replacements.Where(o => o.label == "【不含税出厂价】").ToList();
  2015. var dept_cost = Replacements.Where(o => o.label == "【部门含税价】").ToList();
  2016. if (nottax_factory_cost.Count > 0)
  2017. {
  2018. decimal nottax_value = Convert.ToDecimal(nottax_factory_cost[0].value);
  2019. if (i == 1)
  2020. {
  2021. _mattress.dijia_cost1 = nottax_value;
  2022. }
  2023. else if (i == 2)
  2024. {
  2025. _mattress.dijia_cost2 = nottax_value;
  2026. }
  2027. else if (i == 3)
  2028. {
  2029. _mattress.dijia_cost3 = nottax_value;
  2030. }
  2031. else if (i == 4)
  2032. {
  2033. _mattress.dijia_cost4 = nottax_value;
  2034. }
  2035. }
  2036. if (dept_cost.Count > 0)
  2037. {
  2038. decimal dept_costValue = Convert.ToDecimal(dept_cost[0].value);
  2039. if (i == 1)
  2040. {
  2041. _mattress.dannum_cost1 = dept_costValue;
  2042. }
  2043. else if (i == 2)
  2044. {
  2045. _mattress.dannum_cost2 = dept_costValue;
  2046. }
  2047. else if (i == 3)
  2048. {
  2049. _mattress.dannum_cost3 = dept_costValue;
  2050. }
  2051. else if (i == 4)
  2052. {
  2053. _mattress.dannum_cost4 = dept_costValue;
  2054. }
  2055. }
  2056. sumMattress.Add(_mattress);
  2057. }
  2058. }
  2059. CalCulateFormula(mattress, mattressMx, true, true, extraProcesses, extraCosts);
  2060. for (var i = 1; i < 5; i++)
  2061. {
  2062. if (mattress.dannum_type.Value == i)
  2063. {
  2064. var nottax_factory_cost = Replacements.Where(o => o.label == "【不含税出厂价】").ToList();
  2065. var dept_cost = Replacements.Where(o => o.label == "【部门含税价】").ToList();
  2066. if (nottax_factory_cost.Count > 0)
  2067. {
  2068. decimal nottax_value = Convert.ToDecimal(nottax_factory_cost[0].value);
  2069. decimal dept_costValue = Convert.ToDecimal(dept_cost[0].value);
  2070. if (i == 1)
  2071. {
  2072. mattress.dijia_cost1 = nottax_value;
  2073. }
  2074. else if (i == 2)
  2075. {
  2076. mattress.dijia_cost2 = nottax_value;
  2077. }
  2078. else if (i == 3)
  2079. {
  2080. mattress.dijia_cost3 = nottax_value;
  2081. }
  2082. else if (i == 4)
  2083. {
  2084. mattress.dijia_cost4 = nottax_value;
  2085. }
  2086. }
  2087. if (dept_cost.Count > 0)
  2088. {
  2089. decimal dept_costValue = Convert.ToDecimal(dept_cost[0].value);
  2090. if (i == 1)
  2091. {
  2092. mattress.dannum_cost1 = dept_costValue;
  2093. }
  2094. else if (i == 2)
  2095. {
  2096. mattress.dannum_cost2 = dept_costValue;
  2097. }
  2098. else if (i == 3)
  2099. {
  2100. mattress.dannum_cost3 = dept_costValue;
  2101. }
  2102. else if (i == 4)
  2103. {
  2104. mattress.dannum_cost4 = dept_costValue;
  2105. }
  2106. }
  2107. }
  2108. else
  2109. {
  2110. var matchMattress = sumMattress.Where(o => o.dannum_type == i).ToList();
  2111. if (matchMattress.Count > 0)
  2112. {
  2113. if (i == 1)
  2114. {
  2115. mattress.dannum_cost1 = matchMattress[0].dannum_cost1;
  2116. mattress.dijia_cost1 = matchMattress[0].dijia_cost1;
  2117. }
  2118. else if (i == 2)
  2119. {
  2120. mattress.dannum_cost2 = matchMattress[0].dannum_cost2;
  2121. mattress.dijia_cost2 = matchMattress[0].dijia_cost2;
  2122. }
  2123. else if (i == 3)
  2124. {
  2125. mattress.dannum_cost3 = matchMattress[0].dannum_cost3;
  2126. mattress.dijia_cost3 = matchMattress[0].dijia_cost3;
  2127. }
  2128. else if (i == 4)
  2129. {
  2130. mattress.dannum_cost4 = matchMattress[0].dannum_cost4;
  2131. mattress.dijia_cost4 = matchMattress[0].dijia_cost4;
  2132. }
  2133. }
  2134. }
  2135. }
  2136. }
  2137. catch (Exception e)
  2138. {
  2139. throw new LJCommonException(e.Message);
  2140. }
  2141. }
  2142. #region 床垫接口相关方法
  2143. /// <summary>
  2144. /// 业务审核
  2145. /// </summary>
  2146. /// <param name="mattressid"></param>
  2147. /// <exception cref="LJCommonException"></exception>
  2148. public void MattressYWAudit(int mattressid)
  2149. {
  2150. var mattress = new u_mattress() { mattressid = mattressid };
  2151. DbSqlHelper.SelectOne(cmd, mattress, "yw_flag");
  2152. if(mattress.yw_flag == 1)
  2153. {
  2154. throw new LJCommonException("床垫已业务审核,不能业务审核!");
  2155. }
  2156. mattress.yw_flag = 1;
  2157. mattress.yw_auditingdate = context.opdate;
  2158. mattress.yw_auditingrep = context.tokendata.username;
  2159. DbSqlHelper.Update(cmd, mattress, "yw_flag,yw_auditingdate,yw_auditingrep");
  2160. }
  2161. /// <summary>
  2162. /// 自动更新半成品部件
  2163. /// </summary>
  2164. /// <param name="mattressid"></param>
  2165. public void AutoUpdateBcp(int mattressid)
  2166. {
  2167. var qdList = new List<u_mattress_interface_qd>();
  2168. var selectStr = @"
  2169. SELECT u_mattress_interface_qd.mattressid
  2170. ,u_mattress_interface_qd.printid
  2171. ,u_mattress_interface_qd.itemname
  2172. ,u_mattress_interface_qd.bj_pzname
  2173. ,u_mattress_interface_qd.bj_pzname_mx
  2174. ,u_mattress_interface_qd.bj_pzname_mx_mx
  2175. ,u_mattress_interface_qd.mtrlid
  2176. ,u_mattress_interface_qd.erp_mtrlid
  2177. ,u_mattress_interface_qd.useqty
  2178. ,u_mattress_interface_qd.dscrp
  2179. ,u_mattress_interface_qd.actual_useqty
  2180. ,u_mattress_interface_qd.qd_actual_size
  2181. ,u_mattress_interface_qd.qd_pfgroupqty
  2182. ,u_mattress_interface_qd.wrkgrpid
  2183. ,u_mattress_interface_qd.ss_rate
  2184. ,u_mattress_interface_qd.ls_rate
  2185. ,u_mattress_interface_qd.sh_rate
  2186. ,u_mattress_interface_qd.formulaid
  2187. FROM u_mattress_interface_qd
  2188. ";
  2189. var whereList = new List<string>();
  2190. whereList.Add("mattressid = @mattressid");
  2191. var param = new Dictionary<string, object>();
  2192. param.Add("@mattressid", mattressid);
  2193. var outFields = "mattressid, printid, itemname, bj_pzname, bj_pzname_mx, bj_pzname_mx_mx, mtrlid, erp_mtrlid, useqty, dscrp, actual_useqty, qd_actual_size, qd_pfgroupqty, wrkgrpid, ss_rate, ls_rate, sh_rate, formulaid";
  2194. DbSqlHelper.SelectJoin(cmd, selectStr, ListEx.GetWhereStr(whereList), param, "printid", outFields, 0, 0, qdList);
  2195. var chastrArr = new List<string>() { "裥面", "裥底", "顶布裥棉", "大侧", "小侧", "V侧" };
  2196. var chastrType = new Dictionary<string, int>();
  2197. Dictionary<string, List<u_mattress_interface_qd>> bcpQdlist = new Dictionary<string, List<u_mattress_interface_qd>>();
  2198. foreach (var mx in qdList)
  2199. {
  2200. if (chastrArr.Contains(mx.itemname) && !string.IsNullOrEmpty(mx.bj_pzname_mx_mx))
  2201. {
  2202. if (!chastrType.ContainsKey(mx.bj_pzname_mx_mx))
  2203. {
  2204. switch (mx.itemname)
  2205. {
  2206. case "裥面":
  2207. chastrType.Add(mx.bj_pzname_mx_mx, 901);
  2208. mx.billtype = 901;
  2209. break;
  2210. case "裥底":
  2211. chastrType.Add(mx.bj_pzname_mx_mx, 902);
  2212. mx.billtype = 902;
  2213. break;
  2214. case "大侧":
  2215. chastrType.Add(mx.bj_pzname_mx_mx, 903);
  2216. mx.billtype = 903;
  2217. break;
  2218. case "小侧":
  2219. chastrType.Add(mx.bj_pzname_mx_mx, 904);
  2220. mx.billtype = 904;
  2221. break;
  2222. case "V侧":
  2223. chastrType.Add(mx.bj_pzname_mx_mx, 905);
  2224. mx.billtype = 905;
  2225. break;
  2226. }
  2227. }
  2228. if (!bcpQdlist.ContainsKey(mx.bj_pzname_mx_mx))
  2229. {
  2230. List<u_mattress_interface_qd> list = new List<u_mattress_interface_qd>();
  2231. list.Add(mx);
  2232. bcpQdlist.Add(mx.bj_pzname_mx_mx, list);
  2233. }
  2234. else
  2235. {
  2236. bcpQdlist[mx.bj_pzname_mx_mx].Add(mx);
  2237. }
  2238. }
  2239. }
  2240. foreach (var mx in bcpQdlist)
  2241. {
  2242. var billid = 0;
  2243. cmd.CommandText = @"SELECT TOP 1 billid
  2244. FROM u_semi_finished_product
  2245. WHERE semi_finished_name = @semi_finished_name";
  2246. cmd.Parameters.Clear();
  2247. cmd.Parameters.AddWithValue("@semi_finished_name", mx.Key);
  2248. using (var reader = cmd.ExecuteReader())
  2249. {
  2250. if (reader.Read())
  2251. {
  2252. billid = Convert.ToInt32(reader["billid"]);
  2253. }
  2254. }
  2255. if (billid == 0)
  2256. {
  2257. //创建
  2258. var bcpMattress = new u_semi_finished_product() { billid = 0 };
  2259. AutoInit.AutoInitS(cmd, bcpMattress);
  2260. bcpMattress.billid = 0;
  2261. bcpMattress.billdate = DateTime.Now;
  2262. bcpMattress.dscrp = "自动生成,来自mattressid:" + mattressid;
  2263. //bcpMattress.production_size = DateTime.Now;
  2264. //bcpMattress.hemming_process = DateTime.Now;
  2265. //bcpMattress.hemmed_size = DateTime.Now;
  2266. //bcpMattress.shrinkage_rate = DateTime.Now;
  2267. //bcpMattress.elongation_rate = DateTime.Now;
  2268. bcpMattress.opemp = context.tokendata.username;
  2269. bcpMattress.opdate = DateTime.Now;
  2270. bcpMattress.semi_finished_type = chastrType[mx.Key];
  2271. bcpMattress.semi_finished_code = mx.Key;
  2272. bcpMattress.semi_finished_name = mx.Key;
  2273. var bcpMxList = new List<u_semi_finished_product_mx>();
  2274. foreach (var qdmx in mx.Value)
  2275. {
  2276. var bcpmx = new u_semi_finished_product_mx()
  2277. {
  2278. mtrlid = qdmx.mtrlid.Value,
  2279. erp_mtrlid = qdmx.erp_mtrlid,
  2280. formulaid = qdmx.formulaid
  2281. };
  2282. bcpMxList.Add(bcpmx);
  2283. }
  2284. bcpMattress.mxlist = bcpMxList;
  2285. SaveMattressBcp(bcpMattress);
  2286. }
  2287. else
  2288. {
  2289. // 判断不一样,就覆盖
  2290. selectStr = @"
  2291. SELECT u_semi_finished_product_mx.billid
  2292. ,u_semi_finished_product_mx.printid
  2293. ,u_semi_finished_product_mx.mtrlid
  2294. ,u_semi_finished_product_mx.formulaid
  2295. ,u_semi_finished_product_mx.chastr
  2296. ,u_semi_finished_product_mx.thickness
  2297. ,u_semi_finished_product_mx.qty
  2298. ,u_semi_finished_product_mx.erp_mtrlid
  2299. ,u_semi_finished_product_mx.usenum
  2300. ,u_semi_finished_product_mx.usedenom
  2301. FROM u_semi_finished_product_mx
  2302. ";
  2303. var bcpMxList = new List<u_semi_finished_product_mx>();
  2304. whereList = new List<string>();
  2305. whereList.Add("u_semi_finished_product_mx.billid = @billid");
  2306. param.Clear();
  2307. param.Add("@billid", billid);
  2308. outFields = "billid, printid, mtrlid, formulaid, chastr, thickness, qty, erp_mtrlid, usenum, usedenom, mtrlname, if_mtrl, formula, formulatype, formulakind";
  2309. DbSqlHelper.SelectJoin(cmd, selectStr, ListEx.GetWhereStr(whereList), param, "formulatype, sortcode", outFields, 0, 0, bcpMxList);
  2310. var ErpMtrlids = "";
  2311. var BcpErpMtrlids = "";
  2312. foreach (var qdmx in mx.Value)
  2313. {
  2314. ErpMtrlids += qdmx.erp_mtrlid + "+";
  2315. }
  2316. foreach (var qdmx in bcpMxList)
  2317. {
  2318. BcpErpMtrlids += qdmx.erp_mtrlid + "+";
  2319. }
  2320. if (ErpMtrlids != BcpErpMtrlids)
  2321. {
  2322. var bcpMattress = new u_semi_finished_product() { billid = billid };
  2323. DbSqlHelper.SelectOne(cmd, bcpMattress, "billid, billdate, flag, semi_finished_type, semi_finished_code, semi_finished_name, dscrp, production_size, hemming_process, hemmed_size, shrinkage_rate, elongation_rate, opemp, opdate, auditemp, auditdate");
  2324. bcpMattress.billid = billid;
  2325. bcpMattress.auditemp = context.tokendata.username;
  2326. bcpMattress.auditdate = DateTime.Now;
  2327. foreach (var qdmx in bcpMxList)
  2328. {
  2329. var mtrlid = 0;
  2330. var formulaid = 0;
  2331. var arr = mx.Value.Where((itm) => itm.mtrlid == qdmx.mtrlid).ToList();
  2332. if (arr.Count > 0)
  2333. {
  2334. mtrlid = arr[0].erp_mtrlid.Value;
  2335. if (arr[0].formulaid != null) formulaid = arr[0].formulaid.Value;
  2336. }
  2337. qdmx.erp_mtrlid = mtrlid;
  2338. qdmx.formulaid = formulaid;
  2339. }
  2340. bcpMattress.mxlist = bcpMxList;
  2341. SaveMattressBcp(bcpMattress);
  2342. }
  2343. }
  2344. }
  2345. }
  2346. /// <summary>
  2347. /// 业务撤审
  2348. /// </summary>
  2349. /// <param name="mattressid"></param>
  2350. /// <exception cref="LJCommonException"></exception>
  2351. public void MattressYWCancelAudit(int mattressid)
  2352. {
  2353. var mattress = new u_mattress() { mattressid = mattressid };
  2354. DbSqlHelper.SelectOne(cmd, mattress, "yw_flag,js1_flag");
  2355. if (mattress.js1_flag == 1)
  2356. {
  2357. throw new LJCommonException("床垫已技术1审核,不能业务撤审!");
  2358. }
  2359. if (mattress.yw_flag == 0)
  2360. {
  2361. throw new LJCommonException("床垫未业务审核,不能业务撤审!");
  2362. }
  2363. mattress.yw_flag = 0;
  2364. mattress.yw_auditingdate = null;
  2365. mattress.yw_auditingrep = string.Empty;
  2366. DbSqlHelper.Update(cmd, mattress, "yw_flag,yw_auditingdate,yw_auditingrep");
  2367. }
  2368. /// <summary>
  2369. /// 产品补充审核
  2370. /// </summary>
  2371. /// <param name="mattressid"></param>
  2372. /// <exception cref="LJCommonException"></exception>
  2373. public void MattressJSAudit(int mattressid)
  2374. {
  2375. var mattress = new u_mattress() { mattressid = mattressid };
  2376. DbSqlHelper.SelectOne(cmd, mattress, "yw_flag,js1_flag");
  2377. if (mattress.js1_flag == 1)
  2378. {
  2379. throw new LJCommonException("床垫已技术1审核,不能技术1审核!");
  2380. }
  2381. if (mattress.yw_flag == 0)
  2382. {
  2383. throw new LJCommonException("床垫未业务审核,不能技术1审核!");
  2384. }
  2385. mattress.js1_flag = 1;
  2386. mattress.js1_auditingdate = context.opdate;
  2387. mattress.js1_auditingrep = context.tokendata.username;
  2388. DbSqlHelper.Update(cmd, mattress, "js1_flag,js1_auditingdate,js1_auditingrep");
  2389. }
  2390. /// <summary>
  2391. /// 产品补充撤审
  2392. /// </summary>
  2393. /// <param name="mattressid"></param>
  2394. /// <exception cref="LJCommonException"></exception>
  2395. public void MattressJSCancelAudit(int mattressid)
  2396. {
  2397. var mattress = new u_mattress() { mattressid = mattressid };
  2398. DbSqlHelper.SelectOne(cmd, mattress, "yw_flag,js1_flag,creatmtrl_flag");
  2399. //if (mattress.creatmtrl_flag == 1)
  2400. //{
  2401. // throw new LJCommonException("床垫已生成产品,不能技术1撤审!");
  2402. //}
  2403. if (mattress.js1_flag == 0)
  2404. {
  2405. throw new LJCommonException("床垫未技术1撤审,不能技术1撤审!");
  2406. }
  2407. mattress.js1_flag = 0;
  2408. mattress.js1_auditingdate = null;
  2409. mattress.js1_auditingrep = string.Empty;
  2410. DbSqlHelper.Update(cmd, mattress, "js1_flag,js1_auditingdate,js1_auditingrep");
  2411. }
  2412. /// <summary>
  2413. /// 清单补充审核
  2414. /// </summary>
  2415. /// <param name="mattressid"></param>
  2416. /// <exception cref="LJCommonException"></exception>
  2417. public void MattressJS2Audit(int mattressid)
  2418. {
  2419. var mattress = new u_mattress() { mattressid = mattressid };
  2420. DbSqlHelper.SelectOne(cmd, mattress, "js2_flag");
  2421. if (mattress.js2_flag == 1)
  2422. {
  2423. throw new LJCommonException("床垫已技术2审核,不能技术2审核!");
  2424. }
  2425. mattress.js2_flag = 1;
  2426. mattress.js2_auditingdate = context.opdate;
  2427. mattress.js2_auditingrep = context.tokendata.username;
  2428. DbSqlHelper.Update(cmd, mattress, "js2_flag,js2_auditingdate,js2_auditingrep");
  2429. }
  2430. /// <summary>
  2431. /// 清单补充撤审
  2432. /// </summary>
  2433. /// <param name="mattressid"></param>
  2434. /// <exception cref="LJCommonException"></exception>
  2435. public void MattressJS2CancelAudit(int mattressid)
  2436. {
  2437. var mattress = new u_mattress() { mattressid = mattressid };
  2438. DbSqlHelper.SelectOne(cmd, mattress, "js2_flag");
  2439. if (mattress.js2_flag == 0)
  2440. {
  2441. throw new LJCommonException("床垫未技术2审核,不能技术2撤审!");
  2442. }
  2443. mattress.js2_flag = 0;
  2444. mattress.js2_auditingdate = null;
  2445. mattress.js2_auditingrep = string.Empty;
  2446. DbSqlHelper.Update(cmd, mattress, "js2_flag,js2_auditingdate,js2_auditingrep");
  2447. }
  2448. /// <summary>
  2449. /// 配对ERP成品
  2450. /// </summary>
  2451. /// <param name="mattress"></param>
  2452. /// <param name="mxlist"></param>
  2453. /// <exception cref="LJCommonException"></exception>
  2454. public void MatchERPMtrldef(u_mattress mattress,List<u_mattress_mx_mtrl> mxlist)
  2455. {
  2456. if(mattress.mattressid <= 0)
  2457. {
  2458. throw new LJCommonException("床垫id有误,请检查!");
  2459. }
  2460. DbSqlHelper.Update(cmd, mattress, "erp_mtrlid,erp_mtrlcode");
  2461. foreach(var mx in mxlist)
  2462. {
  2463. DbSqlHelper.Update(cmd, mx, "erp_mtrlid");
  2464. }
  2465. }
  2466. #endregion
  2467. #region 公式计算通用方法
  2468. private void AddKeyValue(string key, object value, bool isReplace = true)
  2469. {
  2470. key = $"【{key}】";
  2471. if (!replacements.ContainsKey(key))
  2472. {
  2473. replacements.Add(key, value);
  2474. }
  2475. else if (isReplace)
  2476. {
  2477. replacements[key] = value;
  2478. }
  2479. }
  2480. private void AddFormulaKeyValue(string key, string value, bool isReplace = true)
  2481. {
  2482. key = $"【{key}】";
  2483. if (!formula_replacements.ContainsKey(key))
  2484. {
  2485. formula_replacements.Add(key, value);
  2486. }
  2487. else if (isReplace)
  2488. {
  2489. formula_replacements[key] = value;
  2490. }
  2491. }
  2492. /// <summary>
  2493. /// 记录隐藏公式
  2494. /// </summary>
  2495. /// <param name="key"></param>
  2496. /// <param name="value"></param>
  2497. /// <param name="isReplace"></param>
  2498. private void AddFormulaHideKeyValue(string key, string value, bool isReplace = true)
  2499. {
  2500. key = $"【{key}】";
  2501. if (!formula_replacements_hide.ContainsKey(key))
  2502. {
  2503. formula_replacements_hide.Add(key, value);
  2504. }
  2505. else if (isReplace)
  2506. {
  2507. formula_replacements_hide[key] = value;
  2508. }
  2509. }
  2510. private string ConvertToEnglishSymbols(string input)
  2511. {
  2512. input = input.Replace("(", "(")
  2513. .Replace(")", ")")
  2514. .Replace(",", ",")
  2515. .Replace("。", ".")
  2516. .Replace(":", ":")
  2517. .Replace(";", ";")
  2518. .Replace("“", "\"")
  2519. .Replace("”", "\"")
  2520. .Replace("‘", "'")
  2521. .Replace("’", "'");
  2522. return input;
  2523. }
  2524. /// <summary>
  2525. /// 变量公式计算
  2526. /// </summary>
  2527. /// <param name="varname"></param>
  2528. /// <returns></returns>
  2529. private TData CalculateVarFormula(string varname)
  2530. {
  2531. varname = $"【{varname}】";
  2532. if (formula_replacements.ContainsKey(varname)) return Calculate(formula_replacements[varname], varname);
  2533. if (formula_replacements_hide.ContainsKey(varname)) return Calculate(formula_replacements_hide[varname], varname);
  2534. return null;
  2535. }
  2536. private void replaceFormulas(ref string expression)
  2537. {
  2538. bool hasReplace = false;
  2539. foreach (var replacement in formula_replacements)
  2540. {
  2541. if (expression.IndexOf(replacement.Key) > -1)
  2542. {
  2543. expression = expression.Replace(replacement.Key, "(" + replacement.Value + ")");
  2544. hasReplace = true;
  2545. }
  2546. }
  2547. foreach (var replacement in formula_replacements_hide)
  2548. {
  2549. if (expression.IndexOf(replacement.Key) > -1)
  2550. {
  2551. expression = expression.Replace(replacement.Key, "(" + replacement.Value + ")");
  2552. hasReplace = true;
  2553. }
  2554. }
  2555. if (hasReplace)
  2556. {
  2557. replaceFormulas(ref expression);
  2558. }
  2559. }
  2560. private void FormatExpression(ref string expression)
  2561. {
  2562. // 替换相互嵌套的公式
  2563. replaceFormulas(ref expression);
  2564. expression = ConvertToEnglishSymbols(expression);
  2565. // 定义正则表达式模式,匹配包含【】的内容
  2566. string pattern = @"【(.*?)】";
  2567. // 创建正则表达式对象
  2568. Regex regex = new Regex(pattern);
  2569. // 使用正则表达式匹配输入字符串
  2570. MatchCollection matches = regex.Matches(expression);
  2571. var new_replacements = new Dictionary<string, object>();
  2572. foreach (Match match in matches)
  2573. {
  2574. if (replacements.TryGetValue(match.Value, out object value2))
  2575. {
  2576. new_replacements[match.Value] = value2;
  2577. }
  2578. }
  2579. foreach (var replacement in new_replacements)
  2580. {
  2581. expression = expression.Replace(replacement.Key, Convert.ToString(replacement.Value));
  2582. }
  2583. }
  2584. /// <summary>
  2585. /// 公式计算
  2586. /// </summary>
  2587. /// <param name="expression"></param>
  2588. /// <param name="name"></param>
  2589. /// <returns></returns>
  2590. private TData Calculate(string expression, string name = "")
  2591. {
  2592. FormatExpression(ref expression);
  2593. try
  2594. {
  2595. return LJExprParser.Parse(expression).Result;
  2596. }
  2597. catch (Exception ex)
  2598. {
  2599. throw new LJCommonException($"计算{name}公式错误: {ex.Message}");
  2600. }
  2601. }
  2602. /// <summary>
  2603. /// Sql公式计算
  2604. /// </summary>
  2605. /// <param name="expression"></param>
  2606. /// <param name="name"></param>
  2607. /// <returns></returns>
  2608. private object SqlCalculate(string expression, string name = "")
  2609. {
  2610. FormatExpression(ref expression);
  2611. try
  2612. {
  2613. cmd.CommandText = $@"{expression}";
  2614. cmd.Parameters.Clear();
  2615. return cmd.ExecuteScalar();
  2616. }
  2617. catch (Exception ex)
  2618. {
  2619. throw new LJCommonException($"计算{name}公式错误: {ex.Message}");
  2620. }
  2621. }
  2622. #endregion
  2623. #region 导入包装明细
  2624. /// <summary>
  2625. /// 导入 2-按包装方式 的公式
  2626. /// </summary>
  2627. /// <param name="packtype">包装方式</param>
  2628. /// <param name="dw_2">结果导出</param>
  2629. public void wf_import_bz(int packtype, ref List<u_mattress_mx_mtrl> dw_2)
  2630. {
  2631. var selectStr = @"
  2632. SELECT formulaid
  2633. ,formulakind
  2634. ,formulatype
  2635. ,sortcode
  2636. ,if_mtrl
  2637. ,formula
  2638. ,usetype
  2639. ,if_packtype0
  2640. ,if_packtype1
  2641. ,if_packtype2
  2642. ,default_mtrlid
  2643. ,createtime
  2644. ,createby
  2645. ,useformula
  2646. ,gydscrp
  2647. ,mtrltype
  2648. FROM u_mattress_formula";
  2649. var outFields = "formulaid, formulakind, formulatype, sortcode, if_mtrl, formula, usetype, if_packtype0, if_packtype1, if_packtype2, default_mtrlid, createtime, createby, useformula, gydscrp, mtrltype";
  2650. var whereList = new List<string>();
  2651. whereList.Add("u_mattress_formula.formulatype IN (0, 1, 2, 3, 99, 104)");
  2652. whereList.Add("u_mattress_formula.usetype = @usetype");
  2653. var param = new Dictionary<string, object>();
  2654. // 导入 2-按包装方式 的公式
  2655. var mattressFormulaList = new List<u_mattress_formula>();
  2656. param.Clear();
  2657. param.Add("@usetype", 2);
  2658. DbSqlHelper.SelectJoin(cmd, selectStr, ListEx.GetWhereStr(whereList), param, "formulatype, sortcode", outFields, 0, 0, mattressFormulaList);
  2659. foreach (var mx in mattressFormulaList)
  2660. {
  2661. if (packtype == 0 && mx.if_packtype0 != 1) continue;
  2662. if (packtype == 1 && mx.if_packtype1 != 1) continue;
  2663. if (packtype == 2 && mx.if_packtype2 != 1) continue;
  2664. var newDw2 = new u_mattress_mx_mtrl();
  2665. AutoInit.AutoInitS(newDw2);
  2666. if (mx.if_mtrl > 1)
  2667. {
  2668. newDw2.addmx = "+";
  2669. newDw2.delmx = "-";
  2670. }
  2671. newDw2.formulatype = mx.formulatype;
  2672. newDw2.if_mtrl = mx.if_mtrl;
  2673. newDw2.formulaid = mx.formulaid;
  2674. newDw2.sortcode = mx.sortcode;
  2675. newDw2.formulakind = mx.formulakind;
  2676. newDw2.formula = mx.formula;
  2677. newDw2.useformula = mx.useformula;
  2678. newDw2.gydscrp = mx.gydscrp;
  2679. dw_2.Add(newDw2);
  2680. }
  2681. }
  2682. #endregion
  2683. #region 明细排序
  2684. /// <summary>
  2685. /// 明细排序
  2686. /// </summary>
  2687. /// <param name="dw_2"></param>
  2688. public void wf_sort_mx(ref List<u_mattress_mx_mtrl> dw_2)
  2689. {
  2690. // u_mattress_formula_formulatype A xu A u_mattress_formula_sortcode A u_mattress_mx_mtrl_formulaid A
  2691. dw_2.Sort((a, b) =>
  2692. {
  2693. if (a.formulatype != b.formulatype)
  2694. {
  2695. return a.formulatype.Value.CompareTo(b.formulatype.Value);
  2696. }
  2697. if (a.xu != b.xu)
  2698. {
  2699. return a.xu.Value.CompareTo(b.xu.Value);
  2700. }
  2701. if (a.sortcode != b.sortcode)
  2702. {
  2703. return a.sortcode.CompareTo(b.sortcode);
  2704. }
  2705. int result = GetFormulakindOrder(a.formulakind).CompareTo(GetFormulakindOrder(b.formulakind));
  2706. if (result != 0)
  2707. {
  2708. return result;
  2709. }
  2710. return a.formulaid.Value.CompareTo(b.formulaid.Value);
  2711. });
  2712. }
  2713. public List<u_mattress_mx_mtrl> SortMxList(List<u_mattress_mx_mtrl> mxlist)
  2714. {
  2715. return mxlist.OrderBy(x => x.formulatype)
  2716. .ThenBy(x => x.xu)
  2717. .ThenBy(x => x.sortcode)
  2718. .ThenBy(x => GetFormulakindOrder(x.formulakind))
  2719. .ThenBy(x => x.formulaid)
  2720. .ToList();
  2721. }
  2722. #endregion
  2723. // 普通大侧特殊排序
  2724. private int GetFormulakindOrder(int? formulakind)
  2725. {
  2726. switch (formulakind)
  2727. {
  2728. case 2: return 1;
  2729. case 82: return 2;
  2730. case 42: return 3;
  2731. case 52: return 4;
  2732. case 62: return 5;
  2733. case 72: return 6;
  2734. default: return int.MaxValue;
  2735. }
  2736. }
  2737. #region 获取物料信息
  2738. public void wf_mtrl_fine(List<int> arg_mtrlid, int arg_pricelistid, ref List<u_mtrl_price> mtrlList)
  2739. {
  2740. var selectStr = @"
  2741. SELECT
  2742. u_mtrl_price.mtrlid,
  2743. u_mtrl_price.name,
  2744. isnull(u_mtrl_price_pricelist.price,0) as price,
  2745. u_mtrl_price.gram_weight,
  2746. u_mtrl_price.cloth_width,
  2747. u_mtrl_price.if_inputqty,
  2748. u_mtrl_price.priceunit,
  2749. u_mtrl_price.shrinkage,
  2750. isnull(u_mtrl_price_pricelist.price_formula,0) as price_formula,
  2751. isnull(u_mtrl_price_pricelist.qty_formula,0) as qty_formula,
  2752. u_mtrl_price.if_areaprice,
  2753. u_mtrl_price.thickness
  2754. FROM u_mtrl_price inner join u_mtrl_price_pricelist on
  2755. u_mtrl_price.mtrlid = u_mtrl_price_pricelist.mtrlid";
  2756. var outFields = "mtrlid, name, price, gram_weight, cloth_width, if_inputqty, priceunit, shrinkage, price_formula, qty_formula, if_areaprice, thickness";
  2757. var whereList = new List<string>();
  2758. whereList.Add("u_mtrl_price.mtrlid IN (" + string.Join(",", arg_mtrlid) + ")");
  2759. whereList.Add("u_mtrl_price_pricelist.pricelistid = @arg_pricelistid");
  2760. var param = new Dictionary<string, object>();
  2761. param.Clear();
  2762. param.Add("@arg_pricelistid", arg_pricelistid);
  2763. DbSqlHelper.SelectJoin(cmd, selectStr, ListEx.GetWhereStr(whereList), param, "", outFields, 0, 0, mtrlList);
  2764. }
  2765. #endregion
  2766. #region 获取包装默认物料
  2767. /// <summary>
  2768. /// 获取包装默认物料
  2769. /// </summary>
  2770. /// <param name="dw_2"></param>
  2771. public void wf_default_mtrlid(int pricelistid, ref List<u_mattress_mx_mtrl> dw_2)
  2772. {
  2773. // 导入 2-按包装方式 的公式
  2774. var mtrlPriceList = new List<u_mtrl_price>();
  2775. wf_mtrl_fine(new List<int> { 46804, 46809, 46811, 46817, 46872 }, pricelistid, ref mtrlPriceList);
  2776. foreach (var mx in dw_2)
  2777. {
  2778. var _mtrlid = 0;
  2779. if (mx.formulakind == 16)
  2780. {
  2781. //默认 pe kind = 16 默认 10C PE袋 mtrlid 46804
  2782. _mtrlid = 46804;
  2783. }
  2784. else if (mx.formulakind == 17)
  2785. {
  2786. //默认 外层pe kind = 17 默认 20C mtrlid 46809
  2787. _mtrlid = 46809;
  2788. }
  2789. else if (mx.formulakind == 18)
  2790. {
  2791. //默认 pvc kind = 18 默认 15C mtrlid 46811
  2792. _mtrlid = 46811;
  2793. }
  2794. else if (mx.formulakind == 19)
  2795. {
  2796. //默认 卷包外包装 kind = 19 默认 彩箱 32*32 46817
  2797. _mtrlid = 46817;
  2798. }
  2799. else if (mx.formulakind == 27)
  2800. {
  2801. //默认 拉手脚轮 kind = 27 默认 46872
  2802. _mtrlid = 46872;
  2803. }
  2804. var mtrlItm = mtrlPriceList.Where((itm) => itm.mtrlid == _mtrlid).ToList();
  2805. if (mtrlItm.Count > 0)
  2806. {
  2807. mx.mtrlid = mtrlItm[0].mtrlid;
  2808. mx.mtrlname = mtrlItm[0].name;
  2809. mx.price = mtrlItm[0].price;
  2810. mx.gram_weight = mtrlItm[0].gram_weight;
  2811. mx.cloth_width = mtrlItm[0].cloth_width;
  2812. mx.if_inputqty = mtrlItm[0].if_inputqty;
  2813. mx.priceunit = mtrlItm[0].priceunit;
  2814. mx.shrinkage = mtrlItm[0].shrinkage;
  2815. mx.qty = 1;
  2816. if (!string.IsNullOrEmpty(mtrlItm[0].price_formula)) mx.formula = mtrlItm[0].price_formula;
  2817. }
  2818. }
  2819. }
  2820. #endregion
  2821. #region 获取非包装默认物料
  2822. /// <summary>
  2823. /// 获取非包装默认物料
  2824. /// </summary>
  2825. /// <param name="dw_2"></param>
  2826. public void wf_default_mtrlid_notbz(int pricelistid, ref List<u_mattress_mx_mtrl> dw_2)
  2827. {
  2828. foreach (var mx in dw_2)
  2829. {
  2830. var matterssformula = new u_mattress_formula() { formulaid = mx.formulaid };
  2831. if (DbSqlHelper.SelectOne(cmd, matterssformula, "default_mtrlid") != 1 || matterssformula.default_mtrlid.Value == 0) continue;
  2832. // 导入 2-按包装方式 的公式
  2833. var mtrlItm = new List<u_mtrl_price>();
  2834. wf_mtrl_fine(new List<int> { matterssformula.default_mtrlid.Value }, pricelistid, ref mtrlItm);
  2835. if (mtrlItm.Count > 0)
  2836. {
  2837. mx.mtrlid = mtrlItm[0].mtrlid;
  2838. mx.mtrlname = mtrlItm[0].name;
  2839. mx.price = mtrlItm[0].price;
  2840. mx.gram_weight = mtrlItm[0].gram_weight;
  2841. mx.cloth_width = mtrlItm[0].cloth_width;
  2842. mx.if_inputqty = mtrlItm[0].if_inputqty;
  2843. mx.priceunit = mtrlItm[0].priceunit;
  2844. mx.shrinkage = mtrlItm[0].shrinkage;
  2845. mx.qty = 1;
  2846. if (!string.IsNullOrEmpty(mtrlItm[0].price_formula)) mx.formula = mtrlItm[0].price_formula;
  2847. }
  2848. }
  2849. }
  2850. #endregion
  2851. #region 保存半成品部件
  2852. public void SaveMattressBcp(u_semi_finished_product mattress)
  2853. {
  2854. var dtNow = DateTime.Now;
  2855. var fields = @"billdate,semi_finished_type,semi_finished_code,semi_finished_name,dscrp,production_size,hemming_process,
  2856. hemmed_size,shrinkage_rate,elongation_rate,opemp,opdate,auditemp,auditdate";
  2857. var fieldsMx = "billid,printid,mtrlid,formulaid,chastr,thickness,qty,erp_mtrlid,usenum,usedenom";
  2858. if (mattress.billid <= 0)
  2859. {
  2860. //新建
  2861. fields += ",billid,billcode";
  2862. mattress.opdate = dtNow;
  2863. mattress.opemp = context.tokendata.username;
  2864. mattress.billid = BllHelper.GetID(cmd, "u_semi_finished_product");
  2865. switch (mattress.semi_finished_type)
  2866. {
  2867. case 901:
  2868. mattress.billcode = "JM";
  2869. break;
  2870. case 902:
  2871. mattress.billcode = "JD";
  2872. break;
  2873. case 903:
  2874. mattress.billcode = "BC";
  2875. break;
  2876. case 904:
  2877. mattress.billcode = "XC";
  2878. break;
  2879. case 905:
  2880. mattress.billcode = "VC";
  2881. break;
  2882. }
  2883. // 编号-年月日+流水
  2884. mattress.billcode = $"{mattress.billcode}-{dtNow.ToString("yyyyMMdd")}{(mattress.billid.Value % 10000).ToString("D4")}";
  2885. DbSqlHelper.Insert(cmd, "u_semi_finished_product", null, mattress, fields);
  2886. }
  2887. else
  2888. {
  2889. //修改
  2890. cmd.CommandText = @"DELETE FROM u_semi_finished_product_mx WHERE billid = @billid";
  2891. cmd.Parameters.Clear();
  2892. cmd.Parameters.AddWithValue("@billid", mattress.billid);
  2893. cmd.ExecuteNonQuery();
  2894. DbSqlHelper.Update(cmd, "u_semi_finished_product", null, mattress, "billid", fields);
  2895. }
  2896. var cnt = 0;
  2897. foreach (var mx in mattress.mxlist)
  2898. {
  2899. AutoInit.AutoInitS(cmd, mx);
  2900. mx.billid = mattress.billid;
  2901. mx.printid = ++cnt;
  2902. DbSqlHelper.Insert(cmd, "u_semi_finished_product_mx", null, mx, fieldsMx);
  2903. }
  2904. var hisprice = new u_his_price
  2905. {
  2906. bednetid_mattressid = mattress.billid,
  2907. typeid = 2,
  2908. cmpdate = dtNow,
  2909. cmpemp = context.tokendata.username,
  2910. nottax_dept_cost = 0,
  2911. dept_cost = 0,
  2912. foreign_cost = 0
  2913. };
  2914. var fieldsHs = "bednetid_mattressid, typeid, cmpdate, cmpemp, nottax_dept_cost, dept_cost, foreign_cost";
  2915. DbSqlHelper.Insert(cmd, "u_his_price", null, hisprice, fieldsHs);
  2916. }
  2917. #endregion
  2918. #region 大小单类型枚举
  2919. public enum DannumType
  2920. {
  2921. /// <summary>
  2922. /// 散单
  2923. /// </summary>
  2924. Scattered = 1,
  2925. /// <summary>
  2926. /// 标准
  2927. /// </summary>
  2928. Standard = 2,
  2929. /// <summary>
  2930. /// 大单
  2931. /// </summary>
  2932. Large = 3,
  2933. /// <summary>
  2934. /// 小单
  2935. /// </summary>
  2936. Small = 4
  2937. }
  2938. #endregion
  2939. }
  2940. }