create table `tf_merchant_money_log` (
`id` int(11) not null auto_increment comment 'id',
`merchant_uid` int(11) not null comment '商家uid',
`type` tinyint(2) not null default 1 comment '1增加 2減少',
`money` decimal(15, 2) not null comment '變動金額',
`left_money` decimal(15, 2) not null comment '變動後金額',
`remark` varchar(255) not null comment '備註',
`create_time` int(11) not null comment '建立時間',
primary key (`id`)
) engine = innodb character set utf8 collate utf8_general_ci comment = '進出賬日誌';
create table `tf_merchant_withdraw_log` (
`id` int(11) not null auto_increment comment 'id',
`merchant_uid` int(11) not null comment '商家uid',
`money` decimal(15, 2) not null comment '變動金額',
`left_money` decimal(15, 2) not null comment '變動後金額',
`status` tinyint(2) not null default 1 comment '0待審核 1審核通過 2審核未通過',
`check_time` int(11) not null default 0 comment '審核時間',
`check_remark` varchar(50) not null comment '審核備註',
`create_time` int(11) not null comment '建立時間',
primary key (`id`)
) engine = innodb character set utf8 collate utf8_general_ci comment = '提現日誌表';
感覺提現,跟明細應該分開,雖然有相同之後,但是還是不同的。明細就是純粹一點。 數字金額轉為大寫金額
金額轉大寫 public class moneyconvertchinese string strlower null string strupart null string strupper null int itemp 0 保留兩位小數 123.489 123.49 123.4 123.4 lo...
數字金額轉化大寫金額
數字金額轉化大寫金額 param val string number 字串可包含 和多餘的0 returns 原生方法 如下所示 function convertcurrency money if typeof money string if money maxnum if money 0 轉換為字...
銷售金額與應收金額
1,返款470元是在訂單中作為備註說明的作用,銷售金額及應收是17700元,財務要先收客戶17700元,業務員再以費用形式報470元返款付給中間人。而不是客戶 2,應收金額應大於或等於銷售金額,銷售金額 數量 單價 應收金額 銷售金額 運費 折扣 使用e幣,返款不在應收款中扣減只作備註說明。3,你理...