MattressHelper.cs 161 KB

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